accusleepy 0.6.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.
- accusleepy/__init__.py +0 -0
- accusleepy/__main__.py +4 -0
- accusleepy/bouts.py +142 -0
- accusleepy/brain_state_set.py +89 -0
- accusleepy/classification.py +285 -0
- accusleepy/config.json +24 -0
- accusleepy/constants.py +46 -0
- accusleepy/fileio.py +179 -0
- accusleepy/gui/__init__.py +0 -0
- accusleepy/gui/icons/brightness_down.png +0 -0
- accusleepy/gui/icons/brightness_up.png +0 -0
- accusleepy/gui/icons/double_down_arrow.png +0 -0
- accusleepy/gui/icons/double_up_arrow.png +0 -0
- accusleepy/gui/icons/down_arrow.png +0 -0
- accusleepy/gui/icons/home.png +0 -0
- accusleepy/gui/icons/question.png +0 -0
- accusleepy/gui/icons/save.png +0 -0
- accusleepy/gui/icons/up_arrow.png +0 -0
- accusleepy/gui/icons/zoom_in.png +0 -0
- accusleepy/gui/icons/zoom_out.png +0 -0
- accusleepy/gui/images/primary_window.png +0 -0
- accusleepy/gui/images/viewer_window.png +0 -0
- accusleepy/gui/images/viewer_window_annotated.png +0 -0
- accusleepy/gui/main.py +1494 -0
- accusleepy/gui/manual_scoring.py +1096 -0
- accusleepy/gui/mplwidget.py +386 -0
- accusleepy/gui/primary_window.py +2577 -0
- accusleepy/gui/primary_window.ui +3831 -0
- accusleepy/gui/resources.qrc +16 -0
- accusleepy/gui/resources_rc.py +6710 -0
- accusleepy/gui/text/config_guide.txt +27 -0
- accusleepy/gui/text/main_guide.md +167 -0
- accusleepy/gui/text/manual_scoring_guide.md +23 -0
- accusleepy/gui/viewer_window.py +610 -0
- accusleepy/gui/viewer_window.ui +926 -0
- accusleepy/models.py +108 -0
- accusleepy/multitaper.py +661 -0
- accusleepy/signal_processing.py +469 -0
- accusleepy/temperature_scaling.py +157 -0
- accusleepy-0.6.0.dist-info/METADATA +106 -0
- accusleepy-0.6.0.dist-info/RECORD +42 -0
- accusleepy-0.6.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,3831 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<ui version="4.0">
|
|
3
|
+
<class>PrimaryWindow</class>
|
|
4
|
+
<widget class="QMainWindow" name="PrimaryWindow">
|
|
5
|
+
<property name="geometry">
|
|
6
|
+
<rect>
|
|
7
|
+
<x>0</x>
|
|
8
|
+
<y>0</y>
|
|
9
|
+
<width>1034</width>
|
|
10
|
+
<height>660</height>
|
|
11
|
+
</rect>
|
|
12
|
+
</property>
|
|
13
|
+
<property name="sizePolicy">
|
|
14
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
15
|
+
<horstretch>0</horstretch>
|
|
16
|
+
<verstretch>0</verstretch>
|
|
17
|
+
</sizepolicy>
|
|
18
|
+
</property>
|
|
19
|
+
<property name="palette">
|
|
20
|
+
<palette>
|
|
21
|
+
<active>
|
|
22
|
+
<colorrole role="Window">
|
|
23
|
+
<brush brushstyle="SolidPattern">
|
|
24
|
+
<color alpha="255">
|
|
25
|
+
<red>223</red>
|
|
26
|
+
<green>226</green>
|
|
27
|
+
<blue>226</blue>
|
|
28
|
+
</color>
|
|
29
|
+
</brush>
|
|
30
|
+
</colorrole>
|
|
31
|
+
</active>
|
|
32
|
+
<inactive>
|
|
33
|
+
<colorrole role="Window">
|
|
34
|
+
<brush brushstyle="SolidPattern">
|
|
35
|
+
<color alpha="255">
|
|
36
|
+
<red>223</red>
|
|
37
|
+
<green>226</green>
|
|
38
|
+
<blue>226</blue>
|
|
39
|
+
</color>
|
|
40
|
+
</brush>
|
|
41
|
+
</colorrole>
|
|
42
|
+
</inactive>
|
|
43
|
+
<disabled>
|
|
44
|
+
<colorrole role="Base">
|
|
45
|
+
<brush brushstyle="SolidPattern">
|
|
46
|
+
<color alpha="255">
|
|
47
|
+
<red>223</red>
|
|
48
|
+
<green>226</green>
|
|
49
|
+
<blue>226</blue>
|
|
50
|
+
</color>
|
|
51
|
+
</brush>
|
|
52
|
+
</colorrole>
|
|
53
|
+
<colorrole role="Window">
|
|
54
|
+
<brush brushstyle="SolidPattern">
|
|
55
|
+
<color alpha="255">
|
|
56
|
+
<red>223</red>
|
|
57
|
+
<green>226</green>
|
|
58
|
+
<blue>226</blue>
|
|
59
|
+
</color>
|
|
60
|
+
</brush>
|
|
61
|
+
</colorrole>
|
|
62
|
+
</disabled>
|
|
63
|
+
</palette>
|
|
64
|
+
</property>
|
|
65
|
+
<property name="windowTitle">
|
|
66
|
+
<string>MainWindow</string>
|
|
67
|
+
</property>
|
|
68
|
+
<widget class="QWidget" name="centralwidget">
|
|
69
|
+
<property name="sizePolicy">
|
|
70
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
71
|
+
<horstretch>0</horstretch>
|
|
72
|
+
<verstretch>0</verstretch>
|
|
73
|
+
</sizepolicy>
|
|
74
|
+
</property>
|
|
75
|
+
<layout class="QVBoxLayout" name="verticalLayout_5">
|
|
76
|
+
<property name="leftMargin">
|
|
77
|
+
<number>0</number>
|
|
78
|
+
</property>
|
|
79
|
+
<property name="topMargin">
|
|
80
|
+
<number>10</number>
|
|
81
|
+
</property>
|
|
82
|
+
<property name="rightMargin">
|
|
83
|
+
<number>0</number>
|
|
84
|
+
</property>
|
|
85
|
+
<property name="bottomMargin">
|
|
86
|
+
<number>0</number>
|
|
87
|
+
</property>
|
|
88
|
+
<item>
|
|
89
|
+
<widget class="QTabWidget" name="upper_tab_widget">
|
|
90
|
+
<property name="focusPolicy">
|
|
91
|
+
<enum>Qt::FocusPolicy::StrongFocus</enum>
|
|
92
|
+
</property>
|
|
93
|
+
<property name="currentIndex">
|
|
94
|
+
<number>0</number>
|
|
95
|
+
</property>
|
|
96
|
+
<widget class="QWidget" name="scoring_tab">
|
|
97
|
+
<attribute name="title">
|
|
98
|
+
<string>Sleep scoring</string>
|
|
99
|
+
</attribute>
|
|
100
|
+
<layout class="QGridLayout" name="gridLayout_3">
|
|
101
|
+
<property name="leftMargin">
|
|
102
|
+
<number>0</number>
|
|
103
|
+
</property>
|
|
104
|
+
<property name="topMargin">
|
|
105
|
+
<number>0</number>
|
|
106
|
+
</property>
|
|
107
|
+
<property name="rightMargin">
|
|
108
|
+
<number>0</number>
|
|
109
|
+
</property>
|
|
110
|
+
<property name="bottomMargin">
|
|
111
|
+
<number>0</number>
|
|
112
|
+
</property>
|
|
113
|
+
<item row="0" column="0">
|
|
114
|
+
<layout class="QGridLayout" name="scoring_tab_layout" rowstretch="2" columnstretch="1,6">
|
|
115
|
+
<property name="leftMargin">
|
|
116
|
+
<number>10</number>
|
|
117
|
+
</property>
|
|
118
|
+
<property name="topMargin">
|
|
119
|
+
<number>10</number>
|
|
120
|
+
</property>
|
|
121
|
+
<property name="rightMargin">
|
|
122
|
+
<number>10</number>
|
|
123
|
+
</property>
|
|
124
|
+
<property name="bottomMargin">
|
|
125
|
+
<number>10</number>
|
|
126
|
+
</property>
|
|
127
|
+
<property name="spacing">
|
|
128
|
+
<number>20</number>
|
|
129
|
+
</property>
|
|
130
|
+
<item row="0" column="0">
|
|
131
|
+
<layout class="QVBoxLayout" name="left_scoring_vlayout" stretch="0,0,0,0">
|
|
132
|
+
<property name="spacing">
|
|
133
|
+
<number>20</number>
|
|
134
|
+
</property>
|
|
135
|
+
<property name="bottomMargin">
|
|
136
|
+
<number>20</number>
|
|
137
|
+
</property>
|
|
138
|
+
<item>
|
|
139
|
+
<layout class="QVBoxLayout" name="epoch_length_layout">
|
|
140
|
+
<property name="spacing">
|
|
141
|
+
<number>5</number>
|
|
142
|
+
</property>
|
|
143
|
+
<property name="leftMargin">
|
|
144
|
+
<number>5</number>
|
|
145
|
+
</property>
|
|
146
|
+
<item>
|
|
147
|
+
<widget class="QLabel" name="epochlengthlabel">
|
|
148
|
+
<property name="sizePolicy">
|
|
149
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
150
|
+
<horstretch>0</horstretch>
|
|
151
|
+
<verstretch>0</verstretch>
|
|
152
|
+
</sizepolicy>
|
|
153
|
+
</property>
|
|
154
|
+
<property name="text">
|
|
155
|
+
<string>Epoch length (sec):</string>
|
|
156
|
+
</property>
|
|
157
|
+
</widget>
|
|
158
|
+
</item>
|
|
159
|
+
<item>
|
|
160
|
+
<widget class="QDoubleSpinBox" name="epoch_length_input">
|
|
161
|
+
<property name="sizePolicy">
|
|
162
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
163
|
+
<horstretch>0</horstretch>
|
|
164
|
+
<verstretch>0</verstretch>
|
|
165
|
+
</sizepolicy>
|
|
166
|
+
</property>
|
|
167
|
+
<property name="alignment">
|
|
168
|
+
<set>Qt::AlignmentFlag::AlignLeading|Qt::AlignmentFlag::AlignLeft|Qt::AlignmentFlag::AlignVCenter</set>
|
|
169
|
+
</property>
|
|
170
|
+
<property name="maximum">
|
|
171
|
+
<double>100000.000000000000000</double>
|
|
172
|
+
</property>
|
|
173
|
+
<property name="singleStep">
|
|
174
|
+
<double>0.500000000000000</double>
|
|
175
|
+
</property>
|
|
176
|
+
</widget>
|
|
177
|
+
</item>
|
|
178
|
+
</layout>
|
|
179
|
+
</item>
|
|
180
|
+
<item>
|
|
181
|
+
<widget class="QGroupBox" name="recordinglistgroupbox">
|
|
182
|
+
<property name="sizePolicy">
|
|
183
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
184
|
+
<horstretch>0</horstretch>
|
|
185
|
+
<verstretch>0</verstretch>
|
|
186
|
+
</sizepolicy>
|
|
187
|
+
</property>
|
|
188
|
+
<property name="styleSheet">
|
|
189
|
+
<string notr="true"/>
|
|
190
|
+
</property>
|
|
191
|
+
<property name="title">
|
|
192
|
+
<string>Recording list</string>
|
|
193
|
+
</property>
|
|
194
|
+
<layout class="QVBoxLayout" name="verticalLayout" stretch="1,7,1">
|
|
195
|
+
<property name="spacing">
|
|
196
|
+
<number>5</number>
|
|
197
|
+
</property>
|
|
198
|
+
<property name="leftMargin">
|
|
199
|
+
<number>5</number>
|
|
200
|
+
</property>
|
|
201
|
+
<property name="topMargin">
|
|
202
|
+
<number>5</number>
|
|
203
|
+
</property>
|
|
204
|
+
<property name="rightMargin">
|
|
205
|
+
<number>5</number>
|
|
206
|
+
</property>
|
|
207
|
+
<property name="bottomMargin">
|
|
208
|
+
<number>5</number>
|
|
209
|
+
</property>
|
|
210
|
+
<item>
|
|
211
|
+
<layout class="QHBoxLayout" name="add_remove_layout" stretch="1,1">
|
|
212
|
+
<property name="spacing">
|
|
213
|
+
<number>20</number>
|
|
214
|
+
</property>
|
|
215
|
+
<item>
|
|
216
|
+
<widget class="QPushButton" name="add_button">
|
|
217
|
+
<property name="sizePolicy">
|
|
218
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
219
|
+
<horstretch>0</horstretch>
|
|
220
|
+
<verstretch>0</verstretch>
|
|
221
|
+
</sizepolicy>
|
|
222
|
+
</property>
|
|
223
|
+
<property name="text">
|
|
224
|
+
<string>add</string>
|
|
225
|
+
</property>
|
|
226
|
+
</widget>
|
|
227
|
+
</item>
|
|
228
|
+
<item>
|
|
229
|
+
<widget class="QPushButton" name="remove_button">
|
|
230
|
+
<property name="sizePolicy">
|
|
231
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
232
|
+
<horstretch>0</horstretch>
|
|
233
|
+
<verstretch>0</verstretch>
|
|
234
|
+
</sizepolicy>
|
|
235
|
+
</property>
|
|
236
|
+
<property name="text">
|
|
237
|
+
<string>remove</string>
|
|
238
|
+
</property>
|
|
239
|
+
</widget>
|
|
240
|
+
</item>
|
|
241
|
+
</layout>
|
|
242
|
+
</item>
|
|
243
|
+
<item>
|
|
244
|
+
<widget class="QListWidget" name="recording_list_widget">
|
|
245
|
+
<property name="sizePolicy">
|
|
246
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
247
|
+
<horstretch>0</horstretch>
|
|
248
|
+
<verstretch>0</verstretch>
|
|
249
|
+
</sizepolicy>
|
|
250
|
+
</property>
|
|
251
|
+
<property name="styleSheet">
|
|
252
|
+
<string notr="true">background-color: white;</string>
|
|
253
|
+
</property>
|
|
254
|
+
</widget>
|
|
255
|
+
</item>
|
|
256
|
+
<item>
|
|
257
|
+
<layout class="QHBoxLayout" name="horizontalLayout_59">
|
|
258
|
+
<item>
|
|
259
|
+
<widget class="QPushButton" name="export_button">
|
|
260
|
+
<property name="sizePolicy">
|
|
261
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
262
|
+
<horstretch>0</horstretch>
|
|
263
|
+
<verstretch>0</verstretch>
|
|
264
|
+
</sizepolicy>
|
|
265
|
+
</property>
|
|
266
|
+
<property name="toolTip">
|
|
267
|
+
<string>Export recording list to file</string>
|
|
268
|
+
</property>
|
|
269
|
+
<property name="text">
|
|
270
|
+
<string>export</string>
|
|
271
|
+
</property>
|
|
272
|
+
</widget>
|
|
273
|
+
</item>
|
|
274
|
+
<item>
|
|
275
|
+
<widget class="QPushButton" name="import_button">
|
|
276
|
+
<property name="sizePolicy">
|
|
277
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
278
|
+
<horstretch>0</horstretch>
|
|
279
|
+
<verstretch>0</verstretch>
|
|
280
|
+
</sizepolicy>
|
|
281
|
+
</property>
|
|
282
|
+
<property name="toolTip">
|
|
283
|
+
<string>Import recording list from file</string>
|
|
284
|
+
</property>
|
|
285
|
+
<property name="text">
|
|
286
|
+
<string>import</string>
|
|
287
|
+
</property>
|
|
288
|
+
</widget>
|
|
289
|
+
</item>
|
|
290
|
+
</layout>
|
|
291
|
+
</item>
|
|
292
|
+
</layout>
|
|
293
|
+
</widget>
|
|
294
|
+
</item>
|
|
295
|
+
<item>
|
|
296
|
+
<layout class="QVBoxLayout" name="logo_and_version_layout">
|
|
297
|
+
<item>
|
|
298
|
+
<layout class="QVBoxLayout" name="logo_layout">
|
|
299
|
+
<item>
|
|
300
|
+
<widget class="QFrame" name="frame">
|
|
301
|
+
<property name="sizePolicy">
|
|
302
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
303
|
+
<horstretch>0</horstretch>
|
|
304
|
+
<verstretch>0</verstretch>
|
|
305
|
+
</sizepolicy>
|
|
306
|
+
</property>
|
|
307
|
+
<property name="minimumSize">
|
|
308
|
+
<size>
|
|
309
|
+
<width>180</width>
|
|
310
|
+
<height>80</height>
|
|
311
|
+
</size>
|
|
312
|
+
</property>
|
|
313
|
+
<property name="styleSheet">
|
|
314
|
+
<string notr="true">background-color: transparent;</string>
|
|
315
|
+
</property>
|
|
316
|
+
<property name="frameShape">
|
|
317
|
+
<enum>QFrame::Shape::NoFrame</enum>
|
|
318
|
+
</property>
|
|
319
|
+
<property name="frameShadow">
|
|
320
|
+
<enum>QFrame::Shadow::Raised</enum>
|
|
321
|
+
</property>
|
|
322
|
+
<widget class="QLabel" name="accusleepy2">
|
|
323
|
+
<property name="geometry">
|
|
324
|
+
<rect>
|
|
325
|
+
<x>11</x>
|
|
326
|
+
<y>15</y>
|
|
327
|
+
<width>160</width>
|
|
328
|
+
<height>50</height>
|
|
329
|
+
</rect>
|
|
330
|
+
</property>
|
|
331
|
+
<property name="sizePolicy">
|
|
332
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
333
|
+
<horstretch>0</horstretch>
|
|
334
|
+
<verstretch>0</verstretch>
|
|
335
|
+
</sizepolicy>
|
|
336
|
+
</property>
|
|
337
|
+
<property name="font">
|
|
338
|
+
<font>
|
|
339
|
+
<pointsize>21</pointsize>
|
|
340
|
+
<italic>true</italic>
|
|
341
|
+
<bold>true</bold>
|
|
342
|
+
</font>
|
|
343
|
+
</property>
|
|
344
|
+
<property name="styleSheet">
|
|
345
|
+
<string notr="true">background-color: transparent;
|
|
346
|
+
color: rgb(130, 169, 68);</string>
|
|
347
|
+
</property>
|
|
348
|
+
<property name="text">
|
|
349
|
+
<string>AccuSleePy</string>
|
|
350
|
+
</property>
|
|
351
|
+
<property name="alignment">
|
|
352
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
353
|
+
</property>
|
|
354
|
+
</widget>
|
|
355
|
+
<widget class="QLabel" name="accusleepy3">
|
|
356
|
+
<property name="geometry">
|
|
357
|
+
<rect>
|
|
358
|
+
<x>13</x>
|
|
359
|
+
<y>17</y>
|
|
360
|
+
<width>160</width>
|
|
361
|
+
<height>50</height>
|
|
362
|
+
</rect>
|
|
363
|
+
</property>
|
|
364
|
+
<property name="sizePolicy">
|
|
365
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
366
|
+
<horstretch>0</horstretch>
|
|
367
|
+
<verstretch>0</verstretch>
|
|
368
|
+
</sizepolicy>
|
|
369
|
+
</property>
|
|
370
|
+
<property name="font">
|
|
371
|
+
<font>
|
|
372
|
+
<pointsize>21</pointsize>
|
|
373
|
+
<italic>true</italic>
|
|
374
|
+
<bold>true</bold>
|
|
375
|
+
</font>
|
|
376
|
+
</property>
|
|
377
|
+
<property name="styleSheet">
|
|
378
|
+
<string notr="true">background-color: transparent;
|
|
379
|
+
color: rgb(46, 63, 150);</string>
|
|
380
|
+
</property>
|
|
381
|
+
<property name="text">
|
|
382
|
+
<string>AccuSleePy</string>
|
|
383
|
+
</property>
|
|
384
|
+
<property name="alignment">
|
|
385
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
386
|
+
</property>
|
|
387
|
+
</widget>
|
|
388
|
+
<widget class="QLabel" name="accusleepy1">
|
|
389
|
+
<property name="geometry">
|
|
390
|
+
<rect>
|
|
391
|
+
<x>9</x>
|
|
392
|
+
<y>13</y>
|
|
393
|
+
<width>160</width>
|
|
394
|
+
<height>50</height>
|
|
395
|
+
</rect>
|
|
396
|
+
</property>
|
|
397
|
+
<property name="sizePolicy">
|
|
398
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
399
|
+
<horstretch>0</horstretch>
|
|
400
|
+
<verstretch>0</verstretch>
|
|
401
|
+
</sizepolicy>
|
|
402
|
+
</property>
|
|
403
|
+
<property name="font">
|
|
404
|
+
<font>
|
|
405
|
+
<pointsize>21</pointsize>
|
|
406
|
+
<italic>true</italic>
|
|
407
|
+
<bold>true</bold>
|
|
408
|
+
</font>
|
|
409
|
+
</property>
|
|
410
|
+
<property name="styleSheet">
|
|
411
|
+
<string notr="true">background-color: transparent;
|
|
412
|
+
color: rgb(244, 195, 68);</string>
|
|
413
|
+
</property>
|
|
414
|
+
<property name="text">
|
|
415
|
+
<string>AccuSleePy</string>
|
|
416
|
+
</property>
|
|
417
|
+
<property name="alignment">
|
|
418
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
419
|
+
</property>
|
|
420
|
+
</widget>
|
|
421
|
+
<zorder>accusleepy1</zorder>
|
|
422
|
+
<zorder>accusleepy2</zorder>
|
|
423
|
+
<zorder>accusleepy3</zorder>
|
|
424
|
+
</widget>
|
|
425
|
+
</item>
|
|
426
|
+
</layout>
|
|
427
|
+
</item>
|
|
428
|
+
<item>
|
|
429
|
+
<widget class="QLabel" name="version_label">
|
|
430
|
+
<property name="sizePolicy">
|
|
431
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
432
|
+
<horstretch>0</horstretch>
|
|
433
|
+
<verstretch>0</verstretch>
|
|
434
|
+
</sizepolicy>
|
|
435
|
+
</property>
|
|
436
|
+
<property name="text">
|
|
437
|
+
<string>TextLabel</string>
|
|
438
|
+
</property>
|
|
439
|
+
<property name="alignment">
|
|
440
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
441
|
+
</property>
|
|
442
|
+
</widget>
|
|
443
|
+
</item>
|
|
444
|
+
</layout>
|
|
445
|
+
</item>
|
|
446
|
+
<item>
|
|
447
|
+
<layout class="QHBoxLayout" name="user_manual_layout">
|
|
448
|
+
<item>
|
|
449
|
+
<widget class="QPushButton" name="user_manual_button">
|
|
450
|
+
<property name="sizePolicy">
|
|
451
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
452
|
+
<horstretch>0</horstretch>
|
|
453
|
+
<verstretch>0</verstretch>
|
|
454
|
+
</sizepolicy>
|
|
455
|
+
</property>
|
|
456
|
+
<property name="toolTip">
|
|
457
|
+
<string>User manual</string>
|
|
458
|
+
</property>
|
|
459
|
+
<property name="layoutDirection">
|
|
460
|
+
<enum>Qt::LayoutDirection::LeftToRight</enum>
|
|
461
|
+
</property>
|
|
462
|
+
<property name="text">
|
|
463
|
+
<string/>
|
|
464
|
+
</property>
|
|
465
|
+
<property name="icon">
|
|
466
|
+
<iconset resource="resources.qrc">
|
|
467
|
+
<normaloff>:/icons/question.png</normaloff>:/icons/question.png</iconset>
|
|
468
|
+
</property>
|
|
469
|
+
<property name="iconSize">
|
|
470
|
+
<size>
|
|
471
|
+
<width>24</width>
|
|
472
|
+
<height>24</height>
|
|
473
|
+
</size>
|
|
474
|
+
</property>
|
|
475
|
+
</widget>
|
|
476
|
+
</item>
|
|
477
|
+
</layout>
|
|
478
|
+
</item>
|
|
479
|
+
</layout>
|
|
480
|
+
</item>
|
|
481
|
+
<item row="0" column="1">
|
|
482
|
+
<layout class="QVBoxLayout" name="right_scoring_vlayout" stretch="0,0">
|
|
483
|
+
<property name="spacing">
|
|
484
|
+
<number>30</number>
|
|
485
|
+
</property>
|
|
486
|
+
<item>
|
|
487
|
+
<layout class="QVBoxLayout" name="upper_right_layout" stretch="0,0">
|
|
488
|
+
<property name="spacing">
|
|
489
|
+
<number>30</number>
|
|
490
|
+
</property>
|
|
491
|
+
<item>
|
|
492
|
+
<widget class="QGroupBox" name="selected_recording_groupbox">
|
|
493
|
+
<property name="sizePolicy">
|
|
494
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
495
|
+
<horstretch>0</horstretch>
|
|
496
|
+
<verstretch>0</verstretch>
|
|
497
|
+
</sizepolicy>
|
|
498
|
+
</property>
|
|
499
|
+
<property name="title">
|
|
500
|
+
<string>Data / actions for Recording 1</string>
|
|
501
|
+
</property>
|
|
502
|
+
<layout class="QVBoxLayout" name="verticalLayout_2" stretch="1,1,1,1,1">
|
|
503
|
+
<property name="spacing">
|
|
504
|
+
<number>10</number>
|
|
505
|
+
</property>
|
|
506
|
+
<property name="leftMargin">
|
|
507
|
+
<number>5</number>
|
|
508
|
+
</property>
|
|
509
|
+
<property name="topMargin">
|
|
510
|
+
<number>5</number>
|
|
511
|
+
</property>
|
|
512
|
+
<property name="rightMargin">
|
|
513
|
+
<number>5</number>
|
|
514
|
+
</property>
|
|
515
|
+
<property name="bottomMargin">
|
|
516
|
+
<number>5</number>
|
|
517
|
+
</property>
|
|
518
|
+
<item>
|
|
519
|
+
<layout class="QHBoxLayout" name="samplingratelayout" stretch="1,1,7">
|
|
520
|
+
<property name="spacing">
|
|
521
|
+
<number>10</number>
|
|
522
|
+
</property>
|
|
523
|
+
<item>
|
|
524
|
+
<widget class="QLabel" name="samplingratelabel">
|
|
525
|
+
<property name="sizePolicy">
|
|
526
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
527
|
+
<horstretch>0</horstretch>
|
|
528
|
+
<verstretch>0</verstretch>
|
|
529
|
+
</sizepolicy>
|
|
530
|
+
</property>
|
|
531
|
+
<property name="text">
|
|
532
|
+
<string>Sampling rate (Hz):</string>
|
|
533
|
+
</property>
|
|
534
|
+
</widget>
|
|
535
|
+
</item>
|
|
536
|
+
<item>
|
|
537
|
+
<widget class="QDoubleSpinBox" name="sampling_rate_input">
|
|
538
|
+
<property name="sizePolicy">
|
|
539
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
540
|
+
<horstretch>0</horstretch>
|
|
541
|
+
<verstretch>0</verstretch>
|
|
542
|
+
</sizepolicy>
|
|
543
|
+
</property>
|
|
544
|
+
<property name="alignment">
|
|
545
|
+
<set>Qt::AlignmentFlag::AlignLeading|Qt::AlignmentFlag::AlignLeft|Qt::AlignmentFlag::AlignVCenter</set>
|
|
546
|
+
</property>
|
|
547
|
+
<property name="minimum">
|
|
548
|
+
<double>0.000000000000000</double>
|
|
549
|
+
</property>
|
|
550
|
+
<property name="maximum">
|
|
551
|
+
<double>100000.000000000000000</double>
|
|
552
|
+
</property>
|
|
553
|
+
</widget>
|
|
554
|
+
</item>
|
|
555
|
+
<item>
|
|
556
|
+
<spacer name="horizontalSpacer_2">
|
|
557
|
+
<property name="orientation">
|
|
558
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
559
|
+
</property>
|
|
560
|
+
<property name="sizeType">
|
|
561
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
562
|
+
</property>
|
|
563
|
+
<property name="sizeHint" stdset="0">
|
|
564
|
+
<size>
|
|
565
|
+
<width>20</width>
|
|
566
|
+
<height>5</height>
|
|
567
|
+
</size>
|
|
568
|
+
</property>
|
|
569
|
+
</spacer>
|
|
570
|
+
</item>
|
|
571
|
+
</layout>
|
|
572
|
+
</item>
|
|
573
|
+
<item>
|
|
574
|
+
<layout class="QHBoxLayout" name="select_recording_layout" stretch="5,12">
|
|
575
|
+
<property name="spacing">
|
|
576
|
+
<number>10</number>
|
|
577
|
+
</property>
|
|
578
|
+
<item>
|
|
579
|
+
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
580
|
+
<property name="spacing">
|
|
581
|
+
<number>5</number>
|
|
582
|
+
</property>
|
|
583
|
+
<item>
|
|
584
|
+
<widget class="QPushButton" name="recording_file_button">
|
|
585
|
+
<property name="sizePolicy">
|
|
586
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
587
|
+
<horstretch>0</horstretch>
|
|
588
|
+
<verstretch>0</verstretch>
|
|
589
|
+
</sizepolicy>
|
|
590
|
+
</property>
|
|
591
|
+
<property name="toolTip">
|
|
592
|
+
<string>Select EEG+EMG recording</string>
|
|
593
|
+
</property>
|
|
594
|
+
<property name="text">
|
|
595
|
+
<string>Select recording file</string>
|
|
596
|
+
</property>
|
|
597
|
+
</widget>
|
|
598
|
+
</item>
|
|
599
|
+
</layout>
|
|
600
|
+
</item>
|
|
601
|
+
<item>
|
|
602
|
+
<widget class="QLabel" name="recording_file_label">
|
|
603
|
+
<property name="sizePolicy">
|
|
604
|
+
<sizepolicy hsizetype="Ignored" vsizetype="Fixed">
|
|
605
|
+
<horstretch>0</horstretch>
|
|
606
|
+
<verstretch>0</verstretch>
|
|
607
|
+
</sizepolicy>
|
|
608
|
+
</property>
|
|
609
|
+
<property name="acceptDrops">
|
|
610
|
+
<bool>true</bool>
|
|
611
|
+
</property>
|
|
612
|
+
<property name="styleSheet">
|
|
613
|
+
<string notr="true">background-color: rgb(240, 242, 255); border: 1px solid gray;</string>
|
|
614
|
+
</property>
|
|
615
|
+
<property name="text">
|
|
616
|
+
<string/>
|
|
617
|
+
</property>
|
|
618
|
+
<property name="alignment">
|
|
619
|
+
<set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>
|
|
620
|
+
</property>
|
|
621
|
+
<property name="margin">
|
|
622
|
+
<number>4</number>
|
|
623
|
+
</property>
|
|
624
|
+
</widget>
|
|
625
|
+
</item>
|
|
626
|
+
</layout>
|
|
627
|
+
</item>
|
|
628
|
+
<item>
|
|
629
|
+
<layout class="QHBoxLayout" name="label_file_layout" stretch="5,12">
|
|
630
|
+
<property name="spacing">
|
|
631
|
+
<number>10</number>
|
|
632
|
+
</property>
|
|
633
|
+
<item>
|
|
634
|
+
<layout class="QHBoxLayout" name="select_or_create_layout" stretch="3,1,3,3">
|
|
635
|
+
<property name="spacing">
|
|
636
|
+
<number>5</number>
|
|
637
|
+
</property>
|
|
638
|
+
<item>
|
|
639
|
+
<widget class="QPushButton" name="select_label_button">
|
|
640
|
+
<property name="sizePolicy">
|
|
641
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
642
|
+
<horstretch>0</horstretch>
|
|
643
|
+
<verstretch>0</verstretch>
|
|
644
|
+
</sizepolicy>
|
|
645
|
+
</property>
|
|
646
|
+
<property name="baseSize">
|
|
647
|
+
<size>
|
|
648
|
+
<width>0</width>
|
|
649
|
+
<height>0</height>
|
|
650
|
+
</size>
|
|
651
|
+
</property>
|
|
652
|
+
<property name="toolTip">
|
|
653
|
+
<string>Select existing label file</string>
|
|
654
|
+
</property>
|
|
655
|
+
<property name="text">
|
|
656
|
+
<string>Select</string>
|
|
657
|
+
</property>
|
|
658
|
+
</widget>
|
|
659
|
+
</item>
|
|
660
|
+
<item>
|
|
661
|
+
<widget class="QLabel" name="or_label">
|
|
662
|
+
<property name="sizePolicy">
|
|
663
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
664
|
+
<horstretch>0</horstretch>
|
|
665
|
+
<verstretch>0</verstretch>
|
|
666
|
+
</sizepolicy>
|
|
667
|
+
</property>
|
|
668
|
+
<property name="styleSheet">
|
|
669
|
+
<string notr="true">background-color: transparent;</string>
|
|
670
|
+
</property>
|
|
671
|
+
<property name="text">
|
|
672
|
+
<string>or</string>
|
|
673
|
+
</property>
|
|
674
|
+
<property name="alignment">
|
|
675
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
676
|
+
</property>
|
|
677
|
+
</widget>
|
|
678
|
+
</item>
|
|
679
|
+
<item>
|
|
680
|
+
<widget class="QPushButton" name="create_label_button">
|
|
681
|
+
<property name="sizePolicy">
|
|
682
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
683
|
+
<horstretch>0</horstretch>
|
|
684
|
+
<verstretch>0</verstretch>
|
|
685
|
+
</sizepolicy>
|
|
686
|
+
</property>
|
|
687
|
+
<property name="toolTip">
|
|
688
|
+
<string>Choose filename for new label file</string>
|
|
689
|
+
</property>
|
|
690
|
+
<property name="text">
|
|
691
|
+
<string>create</string>
|
|
692
|
+
</property>
|
|
693
|
+
</widget>
|
|
694
|
+
</item>
|
|
695
|
+
<item>
|
|
696
|
+
<widget class="QLabel" name="label_text">
|
|
697
|
+
<property name="sizePolicy">
|
|
698
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
699
|
+
<horstretch>0</horstretch>
|
|
700
|
+
<verstretch>0</verstretch>
|
|
701
|
+
</sizepolicy>
|
|
702
|
+
</property>
|
|
703
|
+
<property name="styleSheet">
|
|
704
|
+
<string notr="true">background-color: transparent;</string>
|
|
705
|
+
</property>
|
|
706
|
+
<property name="text">
|
|
707
|
+
<string>label file</string>
|
|
708
|
+
</property>
|
|
709
|
+
</widget>
|
|
710
|
+
</item>
|
|
711
|
+
</layout>
|
|
712
|
+
</item>
|
|
713
|
+
<item>
|
|
714
|
+
<widget class="QLabel" name="label_file_label">
|
|
715
|
+
<property name="sizePolicy">
|
|
716
|
+
<sizepolicy hsizetype="Ignored" vsizetype="Fixed">
|
|
717
|
+
<horstretch>0</horstretch>
|
|
718
|
+
<verstretch>0</verstretch>
|
|
719
|
+
</sizepolicy>
|
|
720
|
+
</property>
|
|
721
|
+
<property name="acceptDrops">
|
|
722
|
+
<bool>true</bool>
|
|
723
|
+
</property>
|
|
724
|
+
<property name="styleSheet">
|
|
725
|
+
<string notr="true">background-color: rgb(240, 242, 255); border: 1px solid gray;</string>
|
|
726
|
+
</property>
|
|
727
|
+
<property name="text">
|
|
728
|
+
<string/>
|
|
729
|
+
</property>
|
|
730
|
+
<property name="alignment">
|
|
731
|
+
<set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>
|
|
732
|
+
</property>
|
|
733
|
+
<property name="margin">
|
|
734
|
+
<number>4</number>
|
|
735
|
+
</property>
|
|
736
|
+
</widget>
|
|
737
|
+
</item>
|
|
738
|
+
</layout>
|
|
739
|
+
</item>
|
|
740
|
+
<item>
|
|
741
|
+
<layout class="QHBoxLayout" name="manual_scoring_layout" stretch="2,3,2,3,1">
|
|
742
|
+
<item>
|
|
743
|
+
<widget class="QPushButton" name="manual_scoring_button">
|
|
744
|
+
<property name="sizePolicy">
|
|
745
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
746
|
+
<horstretch>0</horstretch>
|
|
747
|
+
<verstretch>0</verstretch>
|
|
748
|
+
</sizepolicy>
|
|
749
|
+
</property>
|
|
750
|
+
<property name="toolTip">
|
|
751
|
+
<string>View and edit brain state labels for this recording</string>
|
|
752
|
+
</property>
|
|
753
|
+
<property name="text">
|
|
754
|
+
<string>Score manually</string>
|
|
755
|
+
</property>
|
|
756
|
+
</widget>
|
|
757
|
+
</item>
|
|
758
|
+
<item>
|
|
759
|
+
<widget class="QLabel" name="manual_scoring_status">
|
|
760
|
+
<property name="sizePolicy">
|
|
761
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
762
|
+
<horstretch>0</horstretch>
|
|
763
|
+
<verstretch>0</verstretch>
|
|
764
|
+
</sizepolicy>
|
|
765
|
+
</property>
|
|
766
|
+
<property name="styleSheet">
|
|
767
|
+
<string notr="true">background-color: transparent;</string>
|
|
768
|
+
</property>
|
|
769
|
+
<property name="text">
|
|
770
|
+
<string/>
|
|
771
|
+
</property>
|
|
772
|
+
<property name="margin">
|
|
773
|
+
<number>4</number>
|
|
774
|
+
</property>
|
|
775
|
+
</widget>
|
|
776
|
+
</item>
|
|
777
|
+
<item>
|
|
778
|
+
<widget class="QPushButton" name="create_calibration_button">
|
|
779
|
+
<property name="sizePolicy">
|
|
780
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
781
|
+
<horstretch>0</horstretch>
|
|
782
|
+
<verstretch>0</verstretch>
|
|
783
|
+
</sizepolicy>
|
|
784
|
+
</property>
|
|
785
|
+
<property name="toolTip">
|
|
786
|
+
<string>Create calibration file for this subject</string>
|
|
787
|
+
</property>
|
|
788
|
+
<property name="text">
|
|
789
|
+
<string>Create calibration file</string>
|
|
790
|
+
</property>
|
|
791
|
+
</widget>
|
|
792
|
+
</item>
|
|
793
|
+
<item>
|
|
794
|
+
<widget class="QLabel" name="calibration_status">
|
|
795
|
+
<property name="sizePolicy">
|
|
796
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
797
|
+
<horstretch>0</horstretch>
|
|
798
|
+
<verstretch>0</verstretch>
|
|
799
|
+
</sizepolicy>
|
|
800
|
+
</property>
|
|
801
|
+
<property name="styleSheet">
|
|
802
|
+
<string notr="true">background-color: transparent;</string>
|
|
803
|
+
</property>
|
|
804
|
+
<property name="text">
|
|
805
|
+
<string/>
|
|
806
|
+
</property>
|
|
807
|
+
<property name="margin">
|
|
808
|
+
<number>4</number>
|
|
809
|
+
</property>
|
|
810
|
+
</widget>
|
|
811
|
+
</item>
|
|
812
|
+
<item>
|
|
813
|
+
<spacer name="horizontalSpacer_4">
|
|
814
|
+
<property name="orientation">
|
|
815
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
816
|
+
</property>
|
|
817
|
+
<property name="sizeType">
|
|
818
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
819
|
+
</property>
|
|
820
|
+
<property name="sizeHint" stdset="0">
|
|
821
|
+
<size>
|
|
822
|
+
<width>10</width>
|
|
823
|
+
<height>5</height>
|
|
824
|
+
</size>
|
|
825
|
+
</property>
|
|
826
|
+
</spacer>
|
|
827
|
+
</item>
|
|
828
|
+
</layout>
|
|
829
|
+
</item>
|
|
830
|
+
<item>
|
|
831
|
+
<layout class="QHBoxLayout" name="load_calibration_layout" stretch="5,12">
|
|
832
|
+
<property name="spacing">
|
|
833
|
+
<number>10</number>
|
|
834
|
+
</property>
|
|
835
|
+
<item>
|
|
836
|
+
<layout class="QHBoxLayout" name="horizontalLayout_10">
|
|
837
|
+
<property name="spacing">
|
|
838
|
+
<number>5</number>
|
|
839
|
+
</property>
|
|
840
|
+
<item>
|
|
841
|
+
<widget class="QPushButton" name="select_calibration_button">
|
|
842
|
+
<property name="sizePolicy">
|
|
843
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
844
|
+
<horstretch>0</horstretch>
|
|
845
|
+
<verstretch>0</verstretch>
|
|
846
|
+
</sizepolicy>
|
|
847
|
+
</property>
|
|
848
|
+
<property name="toolTip">
|
|
849
|
+
<string>Load calibration file for this recording</string>
|
|
850
|
+
</property>
|
|
851
|
+
<property name="text">
|
|
852
|
+
<string>Select calibration file</string>
|
|
853
|
+
</property>
|
|
854
|
+
</widget>
|
|
855
|
+
</item>
|
|
856
|
+
</layout>
|
|
857
|
+
</item>
|
|
858
|
+
<item>
|
|
859
|
+
<widget class="QLabel" name="calibration_file_label">
|
|
860
|
+
<property name="sizePolicy">
|
|
861
|
+
<sizepolicy hsizetype="Ignored" vsizetype="Fixed">
|
|
862
|
+
<horstretch>0</horstretch>
|
|
863
|
+
<verstretch>0</verstretch>
|
|
864
|
+
</sizepolicy>
|
|
865
|
+
</property>
|
|
866
|
+
<property name="acceptDrops">
|
|
867
|
+
<bool>true</bool>
|
|
868
|
+
</property>
|
|
869
|
+
<property name="styleSheet">
|
|
870
|
+
<string notr="true">background-color: rgb(240, 242, 255); border: 1px solid gray;</string>
|
|
871
|
+
</property>
|
|
872
|
+
<property name="text">
|
|
873
|
+
<string/>
|
|
874
|
+
</property>
|
|
875
|
+
<property name="alignment">
|
|
876
|
+
<set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>
|
|
877
|
+
</property>
|
|
878
|
+
<property name="margin">
|
|
879
|
+
<number>4</number>
|
|
880
|
+
</property>
|
|
881
|
+
</widget>
|
|
882
|
+
</item>
|
|
883
|
+
</layout>
|
|
884
|
+
</item>
|
|
885
|
+
</layout>
|
|
886
|
+
</widget>
|
|
887
|
+
</item>
|
|
888
|
+
<item>
|
|
889
|
+
<widget class="QTabWidget" name="lower_tab_widget">
|
|
890
|
+
<property name="sizePolicy">
|
|
891
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
892
|
+
<horstretch>0</horstretch>
|
|
893
|
+
<verstretch>0</verstretch>
|
|
894
|
+
</sizepolicy>
|
|
895
|
+
</property>
|
|
896
|
+
<property name="currentIndex">
|
|
897
|
+
<number>0</number>
|
|
898
|
+
</property>
|
|
899
|
+
<widget class="QWidget" name="classification_tab">
|
|
900
|
+
<property name="styleSheet">
|
|
901
|
+
<string notr="true"/>
|
|
902
|
+
</property>
|
|
903
|
+
<attribute name="title">
|
|
904
|
+
<string>Classification</string>
|
|
905
|
+
</attribute>
|
|
906
|
+
<layout class="QGridLayout" name="gridLayout" columnstretch="2">
|
|
907
|
+
<property name="leftMargin">
|
|
908
|
+
<number>5</number>
|
|
909
|
+
</property>
|
|
910
|
+
<property name="topMargin">
|
|
911
|
+
<number>5</number>
|
|
912
|
+
</property>
|
|
913
|
+
<property name="rightMargin">
|
|
914
|
+
<number>5</number>
|
|
915
|
+
</property>
|
|
916
|
+
<property name="bottomMargin">
|
|
917
|
+
<number>5</number>
|
|
918
|
+
</property>
|
|
919
|
+
<property name="verticalSpacing">
|
|
920
|
+
<number>10</number>
|
|
921
|
+
</property>
|
|
922
|
+
<item row="0" column="0">
|
|
923
|
+
<layout class="QGridLayout" name="gridLayout_4">
|
|
924
|
+
<property name="leftMargin">
|
|
925
|
+
<number>0</number>
|
|
926
|
+
</property>
|
|
927
|
+
<property name="topMargin">
|
|
928
|
+
<number>5</number>
|
|
929
|
+
</property>
|
|
930
|
+
<property name="rightMargin">
|
|
931
|
+
<number>0</number>
|
|
932
|
+
</property>
|
|
933
|
+
<property name="bottomMargin">
|
|
934
|
+
<number>3</number>
|
|
935
|
+
</property>
|
|
936
|
+
<property name="verticalSpacing">
|
|
937
|
+
<number>10</number>
|
|
938
|
+
</property>
|
|
939
|
+
<item row="0" column="0">
|
|
940
|
+
<layout class="QHBoxLayout" name="load_model_layout" stretch="5,12">
|
|
941
|
+
<property name="spacing">
|
|
942
|
+
<number>10</number>
|
|
943
|
+
</property>
|
|
944
|
+
<item>
|
|
945
|
+
<layout class="QHBoxLayout" name="horizontalLayout_11">
|
|
946
|
+
<property name="spacing">
|
|
947
|
+
<number>5</number>
|
|
948
|
+
</property>
|
|
949
|
+
<item>
|
|
950
|
+
<widget class="QPushButton" name="load_model_button">
|
|
951
|
+
<property name="sizePolicy">
|
|
952
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
953
|
+
<horstretch>0</horstretch>
|
|
954
|
+
<verstretch>0</verstretch>
|
|
955
|
+
</sizepolicy>
|
|
956
|
+
</property>
|
|
957
|
+
<property name="toolTip">
|
|
958
|
+
<string>Load a trained sleep scoring classifier</string>
|
|
959
|
+
</property>
|
|
960
|
+
<property name="text">
|
|
961
|
+
<string>Load classification model</string>
|
|
962
|
+
</property>
|
|
963
|
+
</widget>
|
|
964
|
+
</item>
|
|
965
|
+
</layout>
|
|
966
|
+
</item>
|
|
967
|
+
<item>
|
|
968
|
+
<widget class="QLabel" name="model_label">
|
|
969
|
+
<property name="sizePolicy">
|
|
970
|
+
<sizepolicy hsizetype="Ignored" vsizetype="Fixed">
|
|
971
|
+
<horstretch>0</horstretch>
|
|
972
|
+
<verstretch>0</verstretch>
|
|
973
|
+
</sizepolicy>
|
|
974
|
+
</property>
|
|
975
|
+
<property name="acceptDrops">
|
|
976
|
+
<bool>true</bool>
|
|
977
|
+
</property>
|
|
978
|
+
<property name="styleSheet">
|
|
979
|
+
<string notr="true">background-color: rgb(240, 242, 255); border: 1px solid gray;</string>
|
|
980
|
+
</property>
|
|
981
|
+
<property name="text">
|
|
982
|
+
<string/>
|
|
983
|
+
</property>
|
|
984
|
+
<property name="alignment">
|
|
985
|
+
<set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>
|
|
986
|
+
</property>
|
|
987
|
+
<property name="margin">
|
|
988
|
+
<number>4</number>
|
|
989
|
+
</property>
|
|
990
|
+
</widget>
|
|
991
|
+
</item>
|
|
992
|
+
</layout>
|
|
993
|
+
</item>
|
|
994
|
+
<item row="2" column="0">
|
|
995
|
+
<layout class="QHBoxLayout" name="score_all_layout" stretch="3,3,4">
|
|
996
|
+
<item>
|
|
997
|
+
<widget class="QPushButton" name="score_all_button">
|
|
998
|
+
<property name="sizePolicy">
|
|
999
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
1000
|
+
<horstretch>0</horstretch>
|
|
1001
|
+
<verstretch>0</verstretch>
|
|
1002
|
+
</sizepolicy>
|
|
1003
|
+
</property>
|
|
1004
|
+
<property name="toolTip">
|
|
1005
|
+
<string>Use classification model to score all recordings</string>
|
|
1006
|
+
</property>
|
|
1007
|
+
<property name="text">
|
|
1008
|
+
<string>Score all automatically</string>
|
|
1009
|
+
</property>
|
|
1010
|
+
</widget>
|
|
1011
|
+
</item>
|
|
1012
|
+
<item>
|
|
1013
|
+
<widget class="QLabel" name="score_all_status">
|
|
1014
|
+
<property name="sizePolicy">
|
|
1015
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
1016
|
+
<horstretch>0</horstretch>
|
|
1017
|
+
<verstretch>0</verstretch>
|
|
1018
|
+
</sizepolicy>
|
|
1019
|
+
</property>
|
|
1020
|
+
<property name="styleSheet">
|
|
1021
|
+
<string notr="true">background-color: transparent;</string>
|
|
1022
|
+
</property>
|
|
1023
|
+
<property name="text">
|
|
1024
|
+
<string/>
|
|
1025
|
+
</property>
|
|
1026
|
+
<property name="margin">
|
|
1027
|
+
<number>4</number>
|
|
1028
|
+
</property>
|
|
1029
|
+
</widget>
|
|
1030
|
+
</item>
|
|
1031
|
+
<item>
|
|
1032
|
+
<spacer name="horizontalSpacer_5">
|
|
1033
|
+
<property name="orientation">
|
|
1034
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1035
|
+
</property>
|
|
1036
|
+
<property name="sizeType">
|
|
1037
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1038
|
+
</property>
|
|
1039
|
+
<property name="sizeHint" stdset="0">
|
|
1040
|
+
<size>
|
|
1041
|
+
<width>10</width>
|
|
1042
|
+
<height>5</height>
|
|
1043
|
+
</size>
|
|
1044
|
+
</property>
|
|
1045
|
+
</spacer>
|
|
1046
|
+
</item>
|
|
1047
|
+
</layout>
|
|
1048
|
+
</item>
|
|
1049
|
+
<item row="1" column="0">
|
|
1050
|
+
<layout class="QHBoxLayout" name="classification_options_layout" stretch="5,1,5,1,7">
|
|
1051
|
+
<property name="spacing">
|
|
1052
|
+
<number>10</number>
|
|
1053
|
+
</property>
|
|
1054
|
+
<item>
|
|
1055
|
+
<widget class="QCheckBox" name="overwritecheckbox">
|
|
1056
|
+
<property name="sizePolicy">
|
|
1057
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1058
|
+
<horstretch>0</horstretch>
|
|
1059
|
+
<verstretch>0</verstretch>
|
|
1060
|
+
</sizepolicy>
|
|
1061
|
+
</property>
|
|
1062
|
+
<property name="styleSheet">
|
|
1063
|
+
<string notr="true">background-color: transparent;</string>
|
|
1064
|
+
</property>
|
|
1065
|
+
<property name="text">
|
|
1066
|
+
<string>Only overwrite undefined epochs</string>
|
|
1067
|
+
</property>
|
|
1068
|
+
</widget>
|
|
1069
|
+
</item>
|
|
1070
|
+
<item>
|
|
1071
|
+
<spacer name="horizontalSpacer_77">
|
|
1072
|
+
<property name="orientation">
|
|
1073
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1074
|
+
</property>
|
|
1075
|
+
<property name="sizeType">
|
|
1076
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1077
|
+
</property>
|
|
1078
|
+
<property name="sizeHint" stdset="0">
|
|
1079
|
+
<size>
|
|
1080
|
+
<width>10</width>
|
|
1081
|
+
<height>10</height>
|
|
1082
|
+
</size>
|
|
1083
|
+
</property>
|
|
1084
|
+
</spacer>
|
|
1085
|
+
</item>
|
|
1086
|
+
<item>
|
|
1087
|
+
<widget class="QCheckBox" name="save_confidence_checkbox">
|
|
1088
|
+
<property name="sizePolicy">
|
|
1089
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1090
|
+
<horstretch>0</horstretch>
|
|
1091
|
+
<verstretch>0</verstretch>
|
|
1092
|
+
</sizepolicy>
|
|
1093
|
+
</property>
|
|
1094
|
+
<property name="styleSheet">
|
|
1095
|
+
<string notr="true">background-color: transparent;</string>
|
|
1096
|
+
</property>
|
|
1097
|
+
<property name="text">
|
|
1098
|
+
<string>Save confidence scores</string>
|
|
1099
|
+
</property>
|
|
1100
|
+
</widget>
|
|
1101
|
+
</item>
|
|
1102
|
+
<item>
|
|
1103
|
+
<spacer name="horizontalSpacer_76">
|
|
1104
|
+
<property name="orientation">
|
|
1105
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1106
|
+
</property>
|
|
1107
|
+
<property name="sizeType">
|
|
1108
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1109
|
+
</property>
|
|
1110
|
+
<property name="sizeHint" stdset="0">
|
|
1111
|
+
<size>
|
|
1112
|
+
<width>10</width>
|
|
1113
|
+
<height>10</height>
|
|
1114
|
+
</size>
|
|
1115
|
+
</property>
|
|
1116
|
+
</spacer>
|
|
1117
|
+
</item>
|
|
1118
|
+
<item>
|
|
1119
|
+
<layout class="QHBoxLayout" name="boutlengthlayout">
|
|
1120
|
+
<property name="spacing">
|
|
1121
|
+
<number>5</number>
|
|
1122
|
+
</property>
|
|
1123
|
+
<item>
|
|
1124
|
+
<spacer name="horizontalSpacer_74">
|
|
1125
|
+
<property name="orientation">
|
|
1126
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1127
|
+
</property>
|
|
1128
|
+
<property name="sizeType">
|
|
1129
|
+
<enum>QSizePolicy::Policy::Expanding</enum>
|
|
1130
|
+
</property>
|
|
1131
|
+
<property name="sizeHint" stdset="0">
|
|
1132
|
+
<size>
|
|
1133
|
+
<width>10</width>
|
|
1134
|
+
<height>10</height>
|
|
1135
|
+
</size>
|
|
1136
|
+
</property>
|
|
1137
|
+
</spacer>
|
|
1138
|
+
</item>
|
|
1139
|
+
<item>
|
|
1140
|
+
<widget class="QLabel" name="boutlengthlabel">
|
|
1141
|
+
<property name="sizePolicy">
|
|
1142
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1143
|
+
<horstretch>0</horstretch>
|
|
1144
|
+
<verstretch>0</verstretch>
|
|
1145
|
+
</sizepolicy>
|
|
1146
|
+
</property>
|
|
1147
|
+
<property name="styleSheet">
|
|
1148
|
+
<string notr="true">background-color: transparent;</string>
|
|
1149
|
+
</property>
|
|
1150
|
+
<property name="text">
|
|
1151
|
+
<string>Minimum bout length (sec):</string>
|
|
1152
|
+
</property>
|
|
1153
|
+
</widget>
|
|
1154
|
+
</item>
|
|
1155
|
+
<item>
|
|
1156
|
+
<widget class="QDoubleSpinBox" name="bout_length_input">
|
|
1157
|
+
<property name="sizePolicy">
|
|
1158
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1159
|
+
<horstretch>0</horstretch>
|
|
1160
|
+
<verstretch>0</verstretch>
|
|
1161
|
+
</sizepolicy>
|
|
1162
|
+
</property>
|
|
1163
|
+
<property name="alignment">
|
|
1164
|
+
<set>Qt::AlignmentFlag::AlignLeading|Qt::AlignmentFlag::AlignLeft|Qt::AlignmentFlag::AlignVCenter</set>
|
|
1165
|
+
</property>
|
|
1166
|
+
<property name="prefix">
|
|
1167
|
+
<string/>
|
|
1168
|
+
</property>
|
|
1169
|
+
<property name="decimals">
|
|
1170
|
+
<number>2</number>
|
|
1171
|
+
</property>
|
|
1172
|
+
<property name="maximum">
|
|
1173
|
+
<double>1000.000000000000000</double>
|
|
1174
|
+
</property>
|
|
1175
|
+
<property name="value">
|
|
1176
|
+
<double>5.000000000000000</double>
|
|
1177
|
+
</property>
|
|
1178
|
+
</widget>
|
|
1179
|
+
</item>
|
|
1180
|
+
<item>
|
|
1181
|
+
<spacer name="horizontalSpacer_75">
|
|
1182
|
+
<property name="orientation">
|
|
1183
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1184
|
+
</property>
|
|
1185
|
+
<property name="sizeType">
|
|
1186
|
+
<enum>QSizePolicy::Policy::Expanding</enum>
|
|
1187
|
+
</property>
|
|
1188
|
+
<property name="sizeHint" stdset="0">
|
|
1189
|
+
<size>
|
|
1190
|
+
<width>10</width>
|
|
1191
|
+
<height>10</height>
|
|
1192
|
+
</size>
|
|
1193
|
+
</property>
|
|
1194
|
+
</spacer>
|
|
1195
|
+
</item>
|
|
1196
|
+
</layout>
|
|
1197
|
+
</item>
|
|
1198
|
+
</layout>
|
|
1199
|
+
</item>
|
|
1200
|
+
</layout>
|
|
1201
|
+
</item>
|
|
1202
|
+
</layout>
|
|
1203
|
+
</widget>
|
|
1204
|
+
<widget class="QWidget" name="model_training_tab">
|
|
1205
|
+
<attribute name="title">
|
|
1206
|
+
<string>Model training</string>
|
|
1207
|
+
</attribute>
|
|
1208
|
+
<layout class="QGridLayout" name="gridLayout_7">
|
|
1209
|
+
<property name="leftMargin">
|
|
1210
|
+
<number>0</number>
|
|
1211
|
+
</property>
|
|
1212
|
+
<property name="topMargin">
|
|
1213
|
+
<number>0</number>
|
|
1214
|
+
</property>
|
|
1215
|
+
<property name="rightMargin">
|
|
1216
|
+
<number>0</number>
|
|
1217
|
+
</property>
|
|
1218
|
+
<property name="bottomMargin">
|
|
1219
|
+
<number>0</number>
|
|
1220
|
+
</property>
|
|
1221
|
+
<item row="0" column="0">
|
|
1222
|
+
<layout class="QGridLayout" name="model_training_layout" rowstretch="1,1">
|
|
1223
|
+
<property name="leftMargin">
|
|
1224
|
+
<number>5</number>
|
|
1225
|
+
</property>
|
|
1226
|
+
<property name="topMargin">
|
|
1227
|
+
<number>5</number>
|
|
1228
|
+
</property>
|
|
1229
|
+
<property name="rightMargin">
|
|
1230
|
+
<number>5</number>
|
|
1231
|
+
</property>
|
|
1232
|
+
<property name="bottomMargin">
|
|
1233
|
+
<number>25</number>
|
|
1234
|
+
</property>
|
|
1235
|
+
<property name="verticalSpacing">
|
|
1236
|
+
<number>10</number>
|
|
1237
|
+
</property>
|
|
1238
|
+
<item row="0" column="0">
|
|
1239
|
+
<layout class="QHBoxLayout" name="top_training_layout" stretch="2,1,2,1,3,1">
|
|
1240
|
+
<property name="spacing">
|
|
1241
|
+
<number>10</number>
|
|
1242
|
+
</property>
|
|
1243
|
+
<item>
|
|
1244
|
+
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
|
1245
|
+
<property name="spacing">
|
|
1246
|
+
<number>5</number>
|
|
1247
|
+
</property>
|
|
1248
|
+
<item>
|
|
1249
|
+
<widget class="QLabel" name="label">
|
|
1250
|
+
<property name="sizePolicy">
|
|
1251
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1252
|
+
<horstretch>0</horstretch>
|
|
1253
|
+
<verstretch>0</verstretch>
|
|
1254
|
+
</sizepolicy>
|
|
1255
|
+
</property>
|
|
1256
|
+
<property name="text">
|
|
1257
|
+
<string>Epochs per image:</string>
|
|
1258
|
+
</property>
|
|
1259
|
+
</widget>
|
|
1260
|
+
</item>
|
|
1261
|
+
<item>
|
|
1262
|
+
<widget class="QSpinBox" name="image_number_input">
|
|
1263
|
+
<property name="sizePolicy">
|
|
1264
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1265
|
+
<horstretch>0</horstretch>
|
|
1266
|
+
<verstretch>0</verstretch>
|
|
1267
|
+
</sizepolicy>
|
|
1268
|
+
</property>
|
|
1269
|
+
<property name="minimum">
|
|
1270
|
+
<number>9</number>
|
|
1271
|
+
</property>
|
|
1272
|
+
<property name="maximum">
|
|
1273
|
+
<number>999</number>
|
|
1274
|
+
</property>
|
|
1275
|
+
<property name="value">
|
|
1276
|
+
<number>9</number>
|
|
1277
|
+
</property>
|
|
1278
|
+
</widget>
|
|
1279
|
+
</item>
|
|
1280
|
+
</layout>
|
|
1281
|
+
</item>
|
|
1282
|
+
<item>
|
|
1283
|
+
<spacer name="horizontalSpacer">
|
|
1284
|
+
<property name="orientation">
|
|
1285
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1286
|
+
</property>
|
|
1287
|
+
<property name="sizeType">
|
|
1288
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1289
|
+
</property>
|
|
1290
|
+
<property name="sizeHint" stdset="0">
|
|
1291
|
+
<size>
|
|
1292
|
+
<width>10</width>
|
|
1293
|
+
<height>5</height>
|
|
1294
|
+
</size>
|
|
1295
|
+
</property>
|
|
1296
|
+
</spacer>
|
|
1297
|
+
</item>
|
|
1298
|
+
<item>
|
|
1299
|
+
<widget class="QCheckBox" name="delete_image_box">
|
|
1300
|
+
<property name="sizePolicy">
|
|
1301
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1302
|
+
<horstretch>0</horstretch>
|
|
1303
|
+
<verstretch>0</verstretch>
|
|
1304
|
+
</sizepolicy>
|
|
1305
|
+
</property>
|
|
1306
|
+
<property name="text">
|
|
1307
|
+
<string>Delete images after training</string>
|
|
1308
|
+
</property>
|
|
1309
|
+
<property name="checked">
|
|
1310
|
+
<bool>true</bool>
|
|
1311
|
+
</property>
|
|
1312
|
+
</widget>
|
|
1313
|
+
</item>
|
|
1314
|
+
<item>
|
|
1315
|
+
<spacer name="horizontalSpacer_6">
|
|
1316
|
+
<property name="orientation">
|
|
1317
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1318
|
+
</property>
|
|
1319
|
+
<property name="sizeType">
|
|
1320
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1321
|
+
</property>
|
|
1322
|
+
<property name="sizeHint" stdset="0">
|
|
1323
|
+
<size>
|
|
1324
|
+
<width>10</width>
|
|
1325
|
+
<height>5</height>
|
|
1326
|
+
</size>
|
|
1327
|
+
</property>
|
|
1328
|
+
</spacer>
|
|
1329
|
+
</item>
|
|
1330
|
+
<item>
|
|
1331
|
+
<layout class="QHBoxLayout" name="horizontalLayout_6" stretch="2,3,3">
|
|
1332
|
+
<item>
|
|
1333
|
+
<widget class="QLabel" name="label_2">
|
|
1334
|
+
<property name="sizePolicy">
|
|
1335
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1336
|
+
<horstretch>0</horstretch>
|
|
1337
|
+
<verstretch>0</verstretch>
|
|
1338
|
+
</sizepolicy>
|
|
1339
|
+
</property>
|
|
1340
|
+
<property name="text">
|
|
1341
|
+
<string>Model type:</string>
|
|
1342
|
+
</property>
|
|
1343
|
+
</widget>
|
|
1344
|
+
</item>
|
|
1345
|
+
<item>
|
|
1346
|
+
<widget class="QRadioButton" name="default_type_button">
|
|
1347
|
+
<property name="sizePolicy">
|
|
1348
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1349
|
+
<horstretch>0</horstretch>
|
|
1350
|
+
<verstretch>0</verstretch>
|
|
1351
|
+
</sizepolicy>
|
|
1352
|
+
</property>
|
|
1353
|
+
<property name="text">
|
|
1354
|
+
<string>Default</string>
|
|
1355
|
+
</property>
|
|
1356
|
+
<property name="checked">
|
|
1357
|
+
<bool>true</bool>
|
|
1358
|
+
</property>
|
|
1359
|
+
</widget>
|
|
1360
|
+
</item>
|
|
1361
|
+
<item>
|
|
1362
|
+
<widget class="QRadioButton" name="real_time_button">
|
|
1363
|
+
<property name="sizePolicy">
|
|
1364
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1365
|
+
<horstretch>0</horstretch>
|
|
1366
|
+
<verstretch>0</verstretch>
|
|
1367
|
+
</sizepolicy>
|
|
1368
|
+
</property>
|
|
1369
|
+
<property name="text">
|
|
1370
|
+
<string>Real-time</string>
|
|
1371
|
+
</property>
|
|
1372
|
+
</widget>
|
|
1373
|
+
</item>
|
|
1374
|
+
</layout>
|
|
1375
|
+
</item>
|
|
1376
|
+
<item>
|
|
1377
|
+
<spacer name="horizontalSpacer_3">
|
|
1378
|
+
<property name="orientation">
|
|
1379
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1380
|
+
</property>
|
|
1381
|
+
<property name="sizeType">
|
|
1382
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1383
|
+
</property>
|
|
1384
|
+
<property name="sizeHint" stdset="0">
|
|
1385
|
+
<size>
|
|
1386
|
+
<width>10</width>
|
|
1387
|
+
<height>5</height>
|
|
1388
|
+
</size>
|
|
1389
|
+
</property>
|
|
1390
|
+
</spacer>
|
|
1391
|
+
</item>
|
|
1392
|
+
</layout>
|
|
1393
|
+
</item>
|
|
1394
|
+
<item row="1" column="0">
|
|
1395
|
+
<layout class="QHBoxLayout" name="bottom_training_layout" stretch="6,5,3,1,3,1,1">
|
|
1396
|
+
<item>
|
|
1397
|
+
<widget class="QPushButton" name="train_model_button">
|
|
1398
|
+
<property name="sizePolicy">
|
|
1399
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
1400
|
+
<horstretch>0</horstretch>
|
|
1401
|
+
<verstretch>0</verstretch>
|
|
1402
|
+
</sizepolicy>
|
|
1403
|
+
</property>
|
|
1404
|
+
<property name="toolTip">
|
|
1405
|
+
<string>Begin training the classification model</string>
|
|
1406
|
+
</property>
|
|
1407
|
+
<property name="text">
|
|
1408
|
+
<string>Train classification model</string>
|
|
1409
|
+
</property>
|
|
1410
|
+
</widget>
|
|
1411
|
+
</item>
|
|
1412
|
+
<item>
|
|
1413
|
+
<spacer name="horizontalSpacer_8">
|
|
1414
|
+
<property name="orientation">
|
|
1415
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1416
|
+
</property>
|
|
1417
|
+
<property name="sizeType">
|
|
1418
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1419
|
+
</property>
|
|
1420
|
+
<property name="sizeHint" stdset="0">
|
|
1421
|
+
<size>
|
|
1422
|
+
<width>10</width>
|
|
1423
|
+
<height>5</height>
|
|
1424
|
+
</size>
|
|
1425
|
+
</property>
|
|
1426
|
+
</spacer>
|
|
1427
|
+
</item>
|
|
1428
|
+
<item>
|
|
1429
|
+
<widget class="QCheckBox" name="calibrate_checkbox">
|
|
1430
|
+
<property name="sizePolicy">
|
|
1431
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1432
|
+
<horstretch>0</horstretch>
|
|
1433
|
+
<verstretch>0</verstretch>
|
|
1434
|
+
</sizepolicy>
|
|
1435
|
+
</property>
|
|
1436
|
+
<property name="text">
|
|
1437
|
+
<string>Calibrate model</string>
|
|
1438
|
+
</property>
|
|
1439
|
+
<property name="checked">
|
|
1440
|
+
<bool>true</bool>
|
|
1441
|
+
</property>
|
|
1442
|
+
</widget>
|
|
1443
|
+
</item>
|
|
1444
|
+
<item>
|
|
1445
|
+
<spacer name="horizontalSpacer_7">
|
|
1446
|
+
<property name="orientation">
|
|
1447
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1448
|
+
</property>
|
|
1449
|
+
<property name="sizeType">
|
|
1450
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1451
|
+
</property>
|
|
1452
|
+
<property name="sizeHint" stdset="0">
|
|
1453
|
+
<size>
|
|
1454
|
+
<width>10</width>
|
|
1455
|
+
<height>10</height>
|
|
1456
|
+
</size>
|
|
1457
|
+
</property>
|
|
1458
|
+
</spacer>
|
|
1459
|
+
</item>
|
|
1460
|
+
<item>
|
|
1461
|
+
<widget class="QLabel" name="calibrate_label">
|
|
1462
|
+
<property name="sizePolicy">
|
|
1463
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1464
|
+
<horstretch>0</horstretch>
|
|
1465
|
+
<verstretch>0</verstretch>
|
|
1466
|
+
</sizepolicy>
|
|
1467
|
+
</property>
|
|
1468
|
+
<property name="text">
|
|
1469
|
+
<string>Calibration set size:</string>
|
|
1470
|
+
</property>
|
|
1471
|
+
</widget>
|
|
1472
|
+
</item>
|
|
1473
|
+
<item>
|
|
1474
|
+
<widget class="QSpinBox" name="calibration_spinbox">
|
|
1475
|
+
<property name="sizePolicy">
|
|
1476
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1477
|
+
<horstretch>0</horstretch>
|
|
1478
|
+
<verstretch>0</verstretch>
|
|
1479
|
+
</sizepolicy>
|
|
1480
|
+
</property>
|
|
1481
|
+
<property name="suffix">
|
|
1482
|
+
<string>%</string>
|
|
1483
|
+
</property>
|
|
1484
|
+
<property name="minimum">
|
|
1485
|
+
<number>10</number>
|
|
1486
|
+
</property>
|
|
1487
|
+
<property name="maximum">
|
|
1488
|
+
<number>50</number>
|
|
1489
|
+
</property>
|
|
1490
|
+
<property name="value">
|
|
1491
|
+
<number>15</number>
|
|
1492
|
+
</property>
|
|
1493
|
+
</widget>
|
|
1494
|
+
</item>
|
|
1495
|
+
<item>
|
|
1496
|
+
<spacer name="horizontalSpacer_78">
|
|
1497
|
+
<property name="orientation">
|
|
1498
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1499
|
+
</property>
|
|
1500
|
+
<property name="sizeType">
|
|
1501
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1502
|
+
</property>
|
|
1503
|
+
<property name="sizeHint" stdset="0">
|
|
1504
|
+
<size>
|
|
1505
|
+
<width>10</width>
|
|
1506
|
+
<height>10</height>
|
|
1507
|
+
</size>
|
|
1508
|
+
</property>
|
|
1509
|
+
</spacer>
|
|
1510
|
+
</item>
|
|
1511
|
+
</layout>
|
|
1512
|
+
</item>
|
|
1513
|
+
</layout>
|
|
1514
|
+
</item>
|
|
1515
|
+
</layout>
|
|
1516
|
+
</widget>
|
|
1517
|
+
</widget>
|
|
1518
|
+
</item>
|
|
1519
|
+
</layout>
|
|
1520
|
+
</item>
|
|
1521
|
+
<item>
|
|
1522
|
+
<widget class="QGroupBox" name="messagesgroupbox">
|
|
1523
|
+
<property name="sizePolicy">
|
|
1524
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
|
1525
|
+
<horstretch>0</horstretch>
|
|
1526
|
+
<verstretch>0</verstretch>
|
|
1527
|
+
</sizepolicy>
|
|
1528
|
+
</property>
|
|
1529
|
+
<property name="styleSheet">
|
|
1530
|
+
<string notr="true"/>
|
|
1531
|
+
</property>
|
|
1532
|
+
<property name="title">
|
|
1533
|
+
<string>Messages</string>
|
|
1534
|
+
</property>
|
|
1535
|
+
<layout class="QGridLayout" name="gridLayout_2">
|
|
1536
|
+
<property name="leftMargin">
|
|
1537
|
+
<number>5</number>
|
|
1538
|
+
</property>
|
|
1539
|
+
<property name="topMargin">
|
|
1540
|
+
<number>5</number>
|
|
1541
|
+
</property>
|
|
1542
|
+
<property name="rightMargin">
|
|
1543
|
+
<number>5</number>
|
|
1544
|
+
</property>
|
|
1545
|
+
<property name="bottomMargin">
|
|
1546
|
+
<number>5</number>
|
|
1547
|
+
</property>
|
|
1548
|
+
<item row="0" column="0">
|
|
1549
|
+
<widget class="QTextBrowser" name="message_area">
|
|
1550
|
+
<property name="sizePolicy">
|
|
1551
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
|
1552
|
+
<horstretch>0</horstretch>
|
|
1553
|
+
<verstretch>0</verstretch>
|
|
1554
|
+
</sizepolicy>
|
|
1555
|
+
</property>
|
|
1556
|
+
<property name="textInteractionFlags">
|
|
1557
|
+
<set>Qt::TextInteractionFlag::NoTextInteraction</set>
|
|
1558
|
+
</property>
|
|
1559
|
+
</widget>
|
|
1560
|
+
</item>
|
|
1561
|
+
</layout>
|
|
1562
|
+
</widget>
|
|
1563
|
+
</item>
|
|
1564
|
+
</layout>
|
|
1565
|
+
</item>
|
|
1566
|
+
</layout>
|
|
1567
|
+
</item>
|
|
1568
|
+
</layout>
|
|
1569
|
+
</widget>
|
|
1570
|
+
<widget class="QWidget" name="settings_tab">
|
|
1571
|
+
<attribute name="title">
|
|
1572
|
+
<string>Settings</string>
|
|
1573
|
+
</attribute>
|
|
1574
|
+
<layout class="QGridLayout" name="gridLayout_5">
|
|
1575
|
+
<property name="leftMargin">
|
|
1576
|
+
<number>0</number>
|
|
1577
|
+
</property>
|
|
1578
|
+
<property name="topMargin">
|
|
1579
|
+
<number>0</number>
|
|
1580
|
+
</property>
|
|
1581
|
+
<property name="rightMargin">
|
|
1582
|
+
<number>0</number>
|
|
1583
|
+
</property>
|
|
1584
|
+
<property name="bottomMargin">
|
|
1585
|
+
<number>0</number>
|
|
1586
|
+
</property>
|
|
1587
|
+
<item row="0" column="0">
|
|
1588
|
+
<layout class="QGridLayout" name="settings_tab_layout" columnstretch="1,1">
|
|
1589
|
+
<property name="leftMargin">
|
|
1590
|
+
<number>20</number>
|
|
1591
|
+
</property>
|
|
1592
|
+
<property name="topMargin">
|
|
1593
|
+
<number>20</number>
|
|
1594
|
+
</property>
|
|
1595
|
+
<property name="rightMargin">
|
|
1596
|
+
<number>20</number>
|
|
1597
|
+
</property>
|
|
1598
|
+
<property name="horizontalSpacing">
|
|
1599
|
+
<number>20</number>
|
|
1600
|
+
</property>
|
|
1601
|
+
<property name="verticalSpacing">
|
|
1602
|
+
<number>10</number>
|
|
1603
|
+
</property>
|
|
1604
|
+
<item row="0" column="1">
|
|
1605
|
+
<layout class="QVBoxLayout" name="settings_description_layout">
|
|
1606
|
+
<item>
|
|
1607
|
+
<widget class="QLabel" name="settings_text">
|
|
1608
|
+
<property name="styleSheet">
|
|
1609
|
+
<string notr="true">background-color: white;</string>
|
|
1610
|
+
</property>
|
|
1611
|
+
<property name="text">
|
|
1612
|
+
<string/>
|
|
1613
|
+
</property>
|
|
1614
|
+
<property name="margin">
|
|
1615
|
+
<number>16</number>
|
|
1616
|
+
</property>
|
|
1617
|
+
</widget>
|
|
1618
|
+
</item>
|
|
1619
|
+
</layout>
|
|
1620
|
+
</item>
|
|
1621
|
+
<item row="0" column="0">
|
|
1622
|
+
<layout class="QVBoxLayout" name="settings_controls_layout" stretch="2,2,2,2,2,2,2,2,2,2,2,2,0,3">
|
|
1623
|
+
<item>
|
|
1624
|
+
<layout class="QHBoxLayout" name="horizontalLayout_3" stretch="3,3,4,3,4">
|
|
1625
|
+
<property name="spacing">
|
|
1626
|
+
<number>10</number>
|
|
1627
|
+
</property>
|
|
1628
|
+
<item>
|
|
1629
|
+
<widget class="QLabel" name="label_15">
|
|
1630
|
+
<property name="sizePolicy">
|
|
1631
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
1632
|
+
<horstretch>0</horstretch>
|
|
1633
|
+
<verstretch>0</verstretch>
|
|
1634
|
+
</sizepolicy>
|
|
1635
|
+
</property>
|
|
1636
|
+
<property name="text">
|
|
1637
|
+
<string>Digit</string>
|
|
1638
|
+
</property>
|
|
1639
|
+
<property name="alignment">
|
|
1640
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
1641
|
+
</property>
|
|
1642
|
+
</widget>
|
|
1643
|
+
</item>
|
|
1644
|
+
<item>
|
|
1645
|
+
<widget class="QLabel" name="label_14">
|
|
1646
|
+
<property name="sizePolicy">
|
|
1647
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
1648
|
+
<horstretch>0</horstretch>
|
|
1649
|
+
<verstretch>0</verstretch>
|
|
1650
|
+
</sizepolicy>
|
|
1651
|
+
</property>
|
|
1652
|
+
<property name="text">
|
|
1653
|
+
<string>Enabled</string>
|
|
1654
|
+
</property>
|
|
1655
|
+
<property name="alignment">
|
|
1656
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
1657
|
+
</property>
|
|
1658
|
+
</widget>
|
|
1659
|
+
</item>
|
|
1660
|
+
<item>
|
|
1661
|
+
<widget class="QLabel" name="label_16">
|
|
1662
|
+
<property name="sizePolicy">
|
|
1663
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
1664
|
+
<horstretch>0</horstretch>
|
|
1665
|
+
<verstretch>0</verstretch>
|
|
1666
|
+
</sizepolicy>
|
|
1667
|
+
</property>
|
|
1668
|
+
<property name="text">
|
|
1669
|
+
<string>Name</string>
|
|
1670
|
+
</property>
|
|
1671
|
+
<property name="alignment">
|
|
1672
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
1673
|
+
</property>
|
|
1674
|
+
</widget>
|
|
1675
|
+
</item>
|
|
1676
|
+
<item>
|
|
1677
|
+
<widget class="QLabel" name="label_13">
|
|
1678
|
+
<property name="sizePolicy">
|
|
1679
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
1680
|
+
<horstretch>0</horstretch>
|
|
1681
|
+
<verstretch>0</verstretch>
|
|
1682
|
+
</sizepolicy>
|
|
1683
|
+
</property>
|
|
1684
|
+
<property name="text">
|
|
1685
|
+
<string>Scored</string>
|
|
1686
|
+
</property>
|
|
1687
|
+
<property name="alignment">
|
|
1688
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
1689
|
+
</property>
|
|
1690
|
+
</widget>
|
|
1691
|
+
</item>
|
|
1692
|
+
<item>
|
|
1693
|
+
<widget class="QLabel" name="label_18">
|
|
1694
|
+
<property name="sizePolicy">
|
|
1695
|
+
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
|
1696
|
+
<horstretch>0</horstretch>
|
|
1697
|
+
<verstretch>0</verstretch>
|
|
1698
|
+
</sizepolicy>
|
|
1699
|
+
</property>
|
|
1700
|
+
<property name="text">
|
|
1701
|
+
<string>Frequency</string>
|
|
1702
|
+
</property>
|
|
1703
|
+
<property name="alignment">
|
|
1704
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
1705
|
+
</property>
|
|
1706
|
+
</widget>
|
|
1707
|
+
</item>
|
|
1708
|
+
</layout>
|
|
1709
|
+
</item>
|
|
1710
|
+
<item>
|
|
1711
|
+
<layout class="QHBoxLayout" name="horizontalLayout_17" stretch="3,3,4,3,4">
|
|
1712
|
+
<property name="spacing">
|
|
1713
|
+
<number>10</number>
|
|
1714
|
+
</property>
|
|
1715
|
+
<item>
|
|
1716
|
+
<layout class="QHBoxLayout" name="horizontalLayout_19">
|
|
1717
|
+
<item>
|
|
1718
|
+
<widget class="QLabel" name="label_12">
|
|
1719
|
+
<property name="sizePolicy">
|
|
1720
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
1721
|
+
<horstretch>0</horstretch>
|
|
1722
|
+
<verstretch>0</verstretch>
|
|
1723
|
+
</sizepolicy>
|
|
1724
|
+
</property>
|
|
1725
|
+
<property name="font">
|
|
1726
|
+
<font>
|
|
1727
|
+
<pointsize>16</pointsize>
|
|
1728
|
+
</font>
|
|
1729
|
+
</property>
|
|
1730
|
+
<property name="text">
|
|
1731
|
+
<string>1</string>
|
|
1732
|
+
</property>
|
|
1733
|
+
<property name="alignment">
|
|
1734
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
1735
|
+
</property>
|
|
1736
|
+
</widget>
|
|
1737
|
+
</item>
|
|
1738
|
+
</layout>
|
|
1739
|
+
</item>
|
|
1740
|
+
<item>
|
|
1741
|
+
<layout class="QHBoxLayout" name="horizontalLayout_20">
|
|
1742
|
+
<item>
|
|
1743
|
+
<spacer name="horizontalSpacer_12">
|
|
1744
|
+
<property name="orientation">
|
|
1745
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1746
|
+
</property>
|
|
1747
|
+
<property name="sizeType">
|
|
1748
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1749
|
+
</property>
|
|
1750
|
+
<property name="sizeHint" stdset="0">
|
|
1751
|
+
<size>
|
|
1752
|
+
<width>5</width>
|
|
1753
|
+
<height>5</height>
|
|
1754
|
+
</size>
|
|
1755
|
+
</property>
|
|
1756
|
+
</spacer>
|
|
1757
|
+
</item>
|
|
1758
|
+
<item>
|
|
1759
|
+
<widget class="QCheckBox" name="enable_state_1">
|
|
1760
|
+
<property name="sizePolicy">
|
|
1761
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1762
|
+
<horstretch>0</horstretch>
|
|
1763
|
+
<verstretch>0</verstretch>
|
|
1764
|
+
</sizepolicy>
|
|
1765
|
+
</property>
|
|
1766
|
+
<property name="text">
|
|
1767
|
+
<string/>
|
|
1768
|
+
</property>
|
|
1769
|
+
</widget>
|
|
1770
|
+
</item>
|
|
1771
|
+
<item>
|
|
1772
|
+
<spacer name="horizontalSpacer_11">
|
|
1773
|
+
<property name="orientation">
|
|
1774
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1775
|
+
</property>
|
|
1776
|
+
<property name="sizeType">
|
|
1777
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1778
|
+
</property>
|
|
1779
|
+
<property name="sizeHint" stdset="0">
|
|
1780
|
+
<size>
|
|
1781
|
+
<width>5</width>
|
|
1782
|
+
<height>5</height>
|
|
1783
|
+
</size>
|
|
1784
|
+
</property>
|
|
1785
|
+
</spacer>
|
|
1786
|
+
</item>
|
|
1787
|
+
</layout>
|
|
1788
|
+
</item>
|
|
1789
|
+
<item>
|
|
1790
|
+
<widget class="QLineEdit" name="state_name_1">
|
|
1791
|
+
<property name="sizePolicy">
|
|
1792
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
1793
|
+
<horstretch>0</horstretch>
|
|
1794
|
+
<verstretch>0</verstretch>
|
|
1795
|
+
</sizepolicy>
|
|
1796
|
+
</property>
|
|
1797
|
+
<property name="focusPolicy">
|
|
1798
|
+
<enum>Qt::FocusPolicy::StrongFocus</enum>
|
|
1799
|
+
</property>
|
|
1800
|
+
</widget>
|
|
1801
|
+
</item>
|
|
1802
|
+
<item>
|
|
1803
|
+
<layout class="QHBoxLayout" name="horizontalLayout_21">
|
|
1804
|
+
<item>
|
|
1805
|
+
<spacer name="horizontalSpacer_14">
|
|
1806
|
+
<property name="orientation">
|
|
1807
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1808
|
+
</property>
|
|
1809
|
+
<property name="sizeType">
|
|
1810
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1811
|
+
</property>
|
|
1812
|
+
<property name="sizeHint" stdset="0">
|
|
1813
|
+
<size>
|
|
1814
|
+
<width>5</width>
|
|
1815
|
+
<height>5</height>
|
|
1816
|
+
</size>
|
|
1817
|
+
</property>
|
|
1818
|
+
</spacer>
|
|
1819
|
+
</item>
|
|
1820
|
+
<item>
|
|
1821
|
+
<widget class="QCheckBox" name="state_scored_1">
|
|
1822
|
+
<property name="sizePolicy">
|
|
1823
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1824
|
+
<horstretch>0</horstretch>
|
|
1825
|
+
<verstretch>0</verstretch>
|
|
1826
|
+
</sizepolicy>
|
|
1827
|
+
</property>
|
|
1828
|
+
<property name="text">
|
|
1829
|
+
<string/>
|
|
1830
|
+
</property>
|
|
1831
|
+
<property name="checked">
|
|
1832
|
+
<bool>true</bool>
|
|
1833
|
+
</property>
|
|
1834
|
+
</widget>
|
|
1835
|
+
</item>
|
|
1836
|
+
<item>
|
|
1837
|
+
<spacer name="horizontalSpacer_13">
|
|
1838
|
+
<property name="orientation">
|
|
1839
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1840
|
+
</property>
|
|
1841
|
+
<property name="sizeType">
|
|
1842
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1843
|
+
</property>
|
|
1844
|
+
<property name="sizeHint" stdset="0">
|
|
1845
|
+
<size>
|
|
1846
|
+
<width>5</width>
|
|
1847
|
+
<height>5</height>
|
|
1848
|
+
</size>
|
|
1849
|
+
</property>
|
|
1850
|
+
</spacer>
|
|
1851
|
+
</item>
|
|
1852
|
+
</layout>
|
|
1853
|
+
</item>
|
|
1854
|
+
<item>
|
|
1855
|
+
<layout class="QHBoxLayout" name="horizontalLayout_22">
|
|
1856
|
+
<item>
|
|
1857
|
+
<spacer name="horizontalSpacer_10">
|
|
1858
|
+
<property name="orientation">
|
|
1859
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1860
|
+
</property>
|
|
1861
|
+
<property name="sizeType">
|
|
1862
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1863
|
+
</property>
|
|
1864
|
+
<property name="sizeHint" stdset="0">
|
|
1865
|
+
<size>
|
|
1866
|
+
<width>5</width>
|
|
1867
|
+
<height>5</height>
|
|
1868
|
+
</size>
|
|
1869
|
+
</property>
|
|
1870
|
+
</spacer>
|
|
1871
|
+
</item>
|
|
1872
|
+
<item>
|
|
1873
|
+
<widget class="QDoubleSpinBox" name="state_frequency_1">
|
|
1874
|
+
<property name="maximum">
|
|
1875
|
+
<double>1.000000000000000</double>
|
|
1876
|
+
</property>
|
|
1877
|
+
<property name="singleStep">
|
|
1878
|
+
<double>0.010000000000000</double>
|
|
1879
|
+
</property>
|
|
1880
|
+
</widget>
|
|
1881
|
+
</item>
|
|
1882
|
+
<item>
|
|
1883
|
+
<spacer name="horizontalSpacer_51">
|
|
1884
|
+
<property name="orientation">
|
|
1885
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1886
|
+
</property>
|
|
1887
|
+
<property name="sizeType">
|
|
1888
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1889
|
+
</property>
|
|
1890
|
+
<property name="sizeHint" stdset="0">
|
|
1891
|
+
<size>
|
|
1892
|
+
<width>5</width>
|
|
1893
|
+
<height>5</height>
|
|
1894
|
+
</size>
|
|
1895
|
+
</property>
|
|
1896
|
+
</spacer>
|
|
1897
|
+
</item>
|
|
1898
|
+
</layout>
|
|
1899
|
+
</item>
|
|
1900
|
+
</layout>
|
|
1901
|
+
</item>
|
|
1902
|
+
<item>
|
|
1903
|
+
<layout class="QHBoxLayout" name="horizontalLayout_16" stretch="3,3,4,3,4">
|
|
1904
|
+
<property name="spacing">
|
|
1905
|
+
<number>10</number>
|
|
1906
|
+
</property>
|
|
1907
|
+
<item>
|
|
1908
|
+
<layout class="QHBoxLayout" name="horizontalLayout_23">
|
|
1909
|
+
<item>
|
|
1910
|
+
<widget class="QLabel" name="label_11">
|
|
1911
|
+
<property name="sizePolicy">
|
|
1912
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
1913
|
+
<horstretch>0</horstretch>
|
|
1914
|
+
<verstretch>0</verstretch>
|
|
1915
|
+
</sizepolicy>
|
|
1916
|
+
</property>
|
|
1917
|
+
<property name="font">
|
|
1918
|
+
<font>
|
|
1919
|
+
<pointsize>16</pointsize>
|
|
1920
|
+
</font>
|
|
1921
|
+
</property>
|
|
1922
|
+
<property name="text">
|
|
1923
|
+
<string>2</string>
|
|
1924
|
+
</property>
|
|
1925
|
+
<property name="alignment">
|
|
1926
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
1927
|
+
</property>
|
|
1928
|
+
</widget>
|
|
1929
|
+
</item>
|
|
1930
|
+
</layout>
|
|
1931
|
+
</item>
|
|
1932
|
+
<item>
|
|
1933
|
+
<layout class="QHBoxLayout" name="horizontalLayout_24">
|
|
1934
|
+
<item>
|
|
1935
|
+
<spacer name="horizontalSpacer_16">
|
|
1936
|
+
<property name="orientation">
|
|
1937
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1938
|
+
</property>
|
|
1939
|
+
<property name="sizeType">
|
|
1940
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1941
|
+
</property>
|
|
1942
|
+
<property name="sizeHint" stdset="0">
|
|
1943
|
+
<size>
|
|
1944
|
+
<width>5</width>
|
|
1945
|
+
<height>5</height>
|
|
1946
|
+
</size>
|
|
1947
|
+
</property>
|
|
1948
|
+
</spacer>
|
|
1949
|
+
</item>
|
|
1950
|
+
<item>
|
|
1951
|
+
<widget class="QCheckBox" name="enable_state_2">
|
|
1952
|
+
<property name="sizePolicy">
|
|
1953
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
1954
|
+
<horstretch>0</horstretch>
|
|
1955
|
+
<verstretch>0</verstretch>
|
|
1956
|
+
</sizepolicy>
|
|
1957
|
+
</property>
|
|
1958
|
+
<property name="text">
|
|
1959
|
+
<string/>
|
|
1960
|
+
</property>
|
|
1961
|
+
</widget>
|
|
1962
|
+
</item>
|
|
1963
|
+
<item>
|
|
1964
|
+
<spacer name="horizontalSpacer_15">
|
|
1965
|
+
<property name="orientation">
|
|
1966
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1967
|
+
</property>
|
|
1968
|
+
<property name="sizeType">
|
|
1969
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
1970
|
+
</property>
|
|
1971
|
+
<property name="sizeHint" stdset="0">
|
|
1972
|
+
<size>
|
|
1973
|
+
<width>5</width>
|
|
1974
|
+
<height>5</height>
|
|
1975
|
+
</size>
|
|
1976
|
+
</property>
|
|
1977
|
+
</spacer>
|
|
1978
|
+
</item>
|
|
1979
|
+
</layout>
|
|
1980
|
+
</item>
|
|
1981
|
+
<item>
|
|
1982
|
+
<widget class="QLineEdit" name="state_name_2">
|
|
1983
|
+
<property name="sizePolicy">
|
|
1984
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
1985
|
+
<horstretch>0</horstretch>
|
|
1986
|
+
<verstretch>0</verstretch>
|
|
1987
|
+
</sizepolicy>
|
|
1988
|
+
</property>
|
|
1989
|
+
</widget>
|
|
1990
|
+
</item>
|
|
1991
|
+
<item>
|
|
1992
|
+
<layout class="QHBoxLayout" name="horizontalLayout_26">
|
|
1993
|
+
<item>
|
|
1994
|
+
<spacer name="horizontalSpacer_18">
|
|
1995
|
+
<property name="orientation">
|
|
1996
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
1997
|
+
</property>
|
|
1998
|
+
<property name="sizeType">
|
|
1999
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2000
|
+
</property>
|
|
2001
|
+
<property name="sizeHint" stdset="0">
|
|
2002
|
+
<size>
|
|
2003
|
+
<width>5</width>
|
|
2004
|
+
<height>5</height>
|
|
2005
|
+
</size>
|
|
2006
|
+
</property>
|
|
2007
|
+
</spacer>
|
|
2008
|
+
</item>
|
|
2009
|
+
<item>
|
|
2010
|
+
<widget class="QCheckBox" name="state_scored_2">
|
|
2011
|
+
<property name="sizePolicy">
|
|
2012
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
2013
|
+
<horstretch>0</horstretch>
|
|
2014
|
+
<verstretch>0</verstretch>
|
|
2015
|
+
</sizepolicy>
|
|
2016
|
+
</property>
|
|
2017
|
+
<property name="text">
|
|
2018
|
+
<string/>
|
|
2019
|
+
</property>
|
|
2020
|
+
<property name="checked">
|
|
2021
|
+
<bool>true</bool>
|
|
2022
|
+
</property>
|
|
2023
|
+
</widget>
|
|
2024
|
+
</item>
|
|
2025
|
+
<item>
|
|
2026
|
+
<spacer name="horizontalSpacer_17">
|
|
2027
|
+
<property name="orientation">
|
|
2028
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2029
|
+
</property>
|
|
2030
|
+
<property name="sizeType">
|
|
2031
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2032
|
+
</property>
|
|
2033
|
+
<property name="sizeHint" stdset="0">
|
|
2034
|
+
<size>
|
|
2035
|
+
<width>5</width>
|
|
2036
|
+
<height>5</height>
|
|
2037
|
+
</size>
|
|
2038
|
+
</property>
|
|
2039
|
+
</spacer>
|
|
2040
|
+
</item>
|
|
2041
|
+
</layout>
|
|
2042
|
+
</item>
|
|
2043
|
+
<item>
|
|
2044
|
+
<layout class="QHBoxLayout" name="horizontalLayout_25">
|
|
2045
|
+
<item>
|
|
2046
|
+
<spacer name="horizontalSpacer_52">
|
|
2047
|
+
<property name="orientation">
|
|
2048
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2049
|
+
</property>
|
|
2050
|
+
<property name="sizeType">
|
|
2051
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2052
|
+
</property>
|
|
2053
|
+
<property name="sizeHint" stdset="0">
|
|
2054
|
+
<size>
|
|
2055
|
+
<width>5</width>
|
|
2056
|
+
<height>5</height>
|
|
2057
|
+
</size>
|
|
2058
|
+
</property>
|
|
2059
|
+
</spacer>
|
|
2060
|
+
</item>
|
|
2061
|
+
<item>
|
|
2062
|
+
<widget class="QDoubleSpinBox" name="state_frequency_2">
|
|
2063
|
+
<property name="maximum">
|
|
2064
|
+
<double>1.000000000000000</double>
|
|
2065
|
+
</property>
|
|
2066
|
+
<property name="singleStep">
|
|
2067
|
+
<double>0.010000000000000</double>
|
|
2068
|
+
</property>
|
|
2069
|
+
</widget>
|
|
2070
|
+
</item>
|
|
2071
|
+
<item>
|
|
2072
|
+
<spacer name="horizontalSpacer_53">
|
|
2073
|
+
<property name="orientation">
|
|
2074
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2075
|
+
</property>
|
|
2076
|
+
<property name="sizeType">
|
|
2077
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2078
|
+
</property>
|
|
2079
|
+
<property name="sizeHint" stdset="0">
|
|
2080
|
+
<size>
|
|
2081
|
+
<width>5</width>
|
|
2082
|
+
<height>5</height>
|
|
2083
|
+
</size>
|
|
2084
|
+
</property>
|
|
2085
|
+
</spacer>
|
|
2086
|
+
</item>
|
|
2087
|
+
</layout>
|
|
2088
|
+
</item>
|
|
2089
|
+
</layout>
|
|
2090
|
+
</item>
|
|
2091
|
+
<item>
|
|
2092
|
+
<layout class="QHBoxLayout" name="horizontalLayout_15" stretch="3,3,4,3,4">
|
|
2093
|
+
<property name="spacing">
|
|
2094
|
+
<number>10</number>
|
|
2095
|
+
</property>
|
|
2096
|
+
<item>
|
|
2097
|
+
<layout class="QHBoxLayout" name="horizontalLayout_28">
|
|
2098
|
+
<item>
|
|
2099
|
+
<widget class="QLabel" name="label_10">
|
|
2100
|
+
<property name="sizePolicy">
|
|
2101
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
2102
|
+
<horstretch>0</horstretch>
|
|
2103
|
+
<verstretch>0</verstretch>
|
|
2104
|
+
</sizepolicy>
|
|
2105
|
+
</property>
|
|
2106
|
+
<property name="font">
|
|
2107
|
+
<font>
|
|
2108
|
+
<pointsize>16</pointsize>
|
|
2109
|
+
</font>
|
|
2110
|
+
</property>
|
|
2111
|
+
<property name="text">
|
|
2112
|
+
<string>3</string>
|
|
2113
|
+
</property>
|
|
2114
|
+
<property name="alignment">
|
|
2115
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
2116
|
+
</property>
|
|
2117
|
+
</widget>
|
|
2118
|
+
</item>
|
|
2119
|
+
</layout>
|
|
2120
|
+
</item>
|
|
2121
|
+
<item>
|
|
2122
|
+
<layout class="QHBoxLayout" name="horizontalLayout_29">
|
|
2123
|
+
<item>
|
|
2124
|
+
<spacer name="horizontalSpacer_20">
|
|
2125
|
+
<property name="orientation">
|
|
2126
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2127
|
+
</property>
|
|
2128
|
+
<property name="sizeType">
|
|
2129
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2130
|
+
</property>
|
|
2131
|
+
<property name="sizeHint" stdset="0">
|
|
2132
|
+
<size>
|
|
2133
|
+
<width>5</width>
|
|
2134
|
+
<height>5</height>
|
|
2135
|
+
</size>
|
|
2136
|
+
</property>
|
|
2137
|
+
</spacer>
|
|
2138
|
+
</item>
|
|
2139
|
+
<item>
|
|
2140
|
+
<widget class="QCheckBox" name="enable_state_3">
|
|
2141
|
+
<property name="sizePolicy">
|
|
2142
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
2143
|
+
<horstretch>0</horstretch>
|
|
2144
|
+
<verstretch>0</verstretch>
|
|
2145
|
+
</sizepolicy>
|
|
2146
|
+
</property>
|
|
2147
|
+
<property name="text">
|
|
2148
|
+
<string/>
|
|
2149
|
+
</property>
|
|
2150
|
+
</widget>
|
|
2151
|
+
</item>
|
|
2152
|
+
<item>
|
|
2153
|
+
<spacer name="horizontalSpacer_19">
|
|
2154
|
+
<property name="orientation">
|
|
2155
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2156
|
+
</property>
|
|
2157
|
+
<property name="sizeType">
|
|
2158
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2159
|
+
</property>
|
|
2160
|
+
<property name="sizeHint" stdset="0">
|
|
2161
|
+
<size>
|
|
2162
|
+
<width>5</width>
|
|
2163
|
+
<height>5</height>
|
|
2164
|
+
</size>
|
|
2165
|
+
</property>
|
|
2166
|
+
</spacer>
|
|
2167
|
+
</item>
|
|
2168
|
+
</layout>
|
|
2169
|
+
</item>
|
|
2170
|
+
<item>
|
|
2171
|
+
<widget class="QLineEdit" name="state_name_3">
|
|
2172
|
+
<property name="sizePolicy">
|
|
2173
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
2174
|
+
<horstretch>0</horstretch>
|
|
2175
|
+
<verstretch>0</verstretch>
|
|
2176
|
+
</sizepolicy>
|
|
2177
|
+
</property>
|
|
2178
|
+
</widget>
|
|
2179
|
+
</item>
|
|
2180
|
+
<item>
|
|
2181
|
+
<layout class="QHBoxLayout" name="horizontalLayout_30">
|
|
2182
|
+
<item>
|
|
2183
|
+
<spacer name="horizontalSpacer_22">
|
|
2184
|
+
<property name="orientation">
|
|
2185
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2186
|
+
</property>
|
|
2187
|
+
<property name="sizeType">
|
|
2188
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2189
|
+
</property>
|
|
2190
|
+
<property name="sizeHint" stdset="0">
|
|
2191
|
+
<size>
|
|
2192
|
+
<width>5</width>
|
|
2193
|
+
<height>5</height>
|
|
2194
|
+
</size>
|
|
2195
|
+
</property>
|
|
2196
|
+
</spacer>
|
|
2197
|
+
</item>
|
|
2198
|
+
<item>
|
|
2199
|
+
<widget class="QCheckBox" name="state_scored_3">
|
|
2200
|
+
<property name="sizePolicy">
|
|
2201
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
2202
|
+
<horstretch>0</horstretch>
|
|
2203
|
+
<verstretch>0</verstretch>
|
|
2204
|
+
</sizepolicy>
|
|
2205
|
+
</property>
|
|
2206
|
+
<property name="text">
|
|
2207
|
+
<string/>
|
|
2208
|
+
</property>
|
|
2209
|
+
<property name="checked">
|
|
2210
|
+
<bool>true</bool>
|
|
2211
|
+
</property>
|
|
2212
|
+
</widget>
|
|
2213
|
+
</item>
|
|
2214
|
+
<item>
|
|
2215
|
+
<spacer name="horizontalSpacer_21">
|
|
2216
|
+
<property name="orientation">
|
|
2217
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2218
|
+
</property>
|
|
2219
|
+
<property name="sizeType">
|
|
2220
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2221
|
+
</property>
|
|
2222
|
+
<property name="sizeHint" stdset="0">
|
|
2223
|
+
<size>
|
|
2224
|
+
<width>5</width>
|
|
2225
|
+
<height>5</height>
|
|
2226
|
+
</size>
|
|
2227
|
+
</property>
|
|
2228
|
+
</spacer>
|
|
2229
|
+
</item>
|
|
2230
|
+
</layout>
|
|
2231
|
+
</item>
|
|
2232
|
+
<item>
|
|
2233
|
+
<layout class="QHBoxLayout" name="horizontalLayout_27">
|
|
2234
|
+
<item>
|
|
2235
|
+
<spacer name="horizontalSpacer_55">
|
|
2236
|
+
<property name="orientation">
|
|
2237
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2238
|
+
</property>
|
|
2239
|
+
<property name="sizeType">
|
|
2240
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2241
|
+
</property>
|
|
2242
|
+
<property name="sizeHint" stdset="0">
|
|
2243
|
+
<size>
|
|
2244
|
+
<width>5</width>
|
|
2245
|
+
<height>20</height>
|
|
2246
|
+
</size>
|
|
2247
|
+
</property>
|
|
2248
|
+
</spacer>
|
|
2249
|
+
</item>
|
|
2250
|
+
<item>
|
|
2251
|
+
<widget class="QDoubleSpinBox" name="state_frequency_3">
|
|
2252
|
+
<property name="maximum">
|
|
2253
|
+
<double>1.000000000000000</double>
|
|
2254
|
+
</property>
|
|
2255
|
+
<property name="singleStep">
|
|
2256
|
+
<double>0.010000000000000</double>
|
|
2257
|
+
</property>
|
|
2258
|
+
</widget>
|
|
2259
|
+
</item>
|
|
2260
|
+
<item>
|
|
2261
|
+
<spacer name="horizontalSpacer_54">
|
|
2262
|
+
<property name="orientation">
|
|
2263
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2264
|
+
</property>
|
|
2265
|
+
<property name="sizeType">
|
|
2266
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2267
|
+
</property>
|
|
2268
|
+
<property name="sizeHint" stdset="0">
|
|
2269
|
+
<size>
|
|
2270
|
+
<width>5</width>
|
|
2271
|
+
<height>20</height>
|
|
2272
|
+
</size>
|
|
2273
|
+
</property>
|
|
2274
|
+
</spacer>
|
|
2275
|
+
</item>
|
|
2276
|
+
</layout>
|
|
2277
|
+
</item>
|
|
2278
|
+
</layout>
|
|
2279
|
+
</item>
|
|
2280
|
+
<item>
|
|
2281
|
+
<layout class="QHBoxLayout" name="horizontalLayout_14" stretch="3,3,4,3,4">
|
|
2282
|
+
<property name="spacing">
|
|
2283
|
+
<number>10</number>
|
|
2284
|
+
</property>
|
|
2285
|
+
<item>
|
|
2286
|
+
<layout class="QHBoxLayout" name="horizontalLayout_31">
|
|
2287
|
+
<item>
|
|
2288
|
+
<widget class="QLabel" name="label_9">
|
|
2289
|
+
<property name="sizePolicy">
|
|
2290
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
2291
|
+
<horstretch>0</horstretch>
|
|
2292
|
+
<verstretch>0</verstretch>
|
|
2293
|
+
</sizepolicy>
|
|
2294
|
+
</property>
|
|
2295
|
+
<property name="font">
|
|
2296
|
+
<font>
|
|
2297
|
+
<pointsize>16</pointsize>
|
|
2298
|
+
</font>
|
|
2299
|
+
</property>
|
|
2300
|
+
<property name="text">
|
|
2301
|
+
<string>4</string>
|
|
2302
|
+
</property>
|
|
2303
|
+
<property name="alignment">
|
|
2304
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
2305
|
+
</property>
|
|
2306
|
+
</widget>
|
|
2307
|
+
</item>
|
|
2308
|
+
</layout>
|
|
2309
|
+
</item>
|
|
2310
|
+
<item>
|
|
2311
|
+
<layout class="QHBoxLayout" name="horizontalLayout_45">
|
|
2312
|
+
<item>
|
|
2313
|
+
<spacer name="horizontalSpacer_24">
|
|
2314
|
+
<property name="orientation">
|
|
2315
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2316
|
+
</property>
|
|
2317
|
+
<property name="sizeType">
|
|
2318
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2319
|
+
</property>
|
|
2320
|
+
<property name="sizeHint" stdset="0">
|
|
2321
|
+
<size>
|
|
2322
|
+
<width>5</width>
|
|
2323
|
+
<height>5</height>
|
|
2324
|
+
</size>
|
|
2325
|
+
</property>
|
|
2326
|
+
</spacer>
|
|
2327
|
+
</item>
|
|
2328
|
+
<item>
|
|
2329
|
+
<widget class="QCheckBox" name="enable_state_4">
|
|
2330
|
+
<property name="sizePolicy">
|
|
2331
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
2332
|
+
<horstretch>0</horstretch>
|
|
2333
|
+
<verstretch>0</verstretch>
|
|
2334
|
+
</sizepolicy>
|
|
2335
|
+
</property>
|
|
2336
|
+
<property name="text">
|
|
2337
|
+
<string/>
|
|
2338
|
+
</property>
|
|
2339
|
+
</widget>
|
|
2340
|
+
</item>
|
|
2341
|
+
<item>
|
|
2342
|
+
<spacer name="horizontalSpacer_23">
|
|
2343
|
+
<property name="orientation">
|
|
2344
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2345
|
+
</property>
|
|
2346
|
+
<property name="sizeType">
|
|
2347
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2348
|
+
</property>
|
|
2349
|
+
<property name="sizeHint" stdset="0">
|
|
2350
|
+
<size>
|
|
2351
|
+
<width>5</width>
|
|
2352
|
+
<height>5</height>
|
|
2353
|
+
</size>
|
|
2354
|
+
</property>
|
|
2355
|
+
</spacer>
|
|
2356
|
+
</item>
|
|
2357
|
+
</layout>
|
|
2358
|
+
</item>
|
|
2359
|
+
<item>
|
|
2360
|
+
<widget class="QLineEdit" name="state_name_4">
|
|
2361
|
+
<property name="sizePolicy">
|
|
2362
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
2363
|
+
<horstretch>0</horstretch>
|
|
2364
|
+
<verstretch>0</verstretch>
|
|
2365
|
+
</sizepolicy>
|
|
2366
|
+
</property>
|
|
2367
|
+
</widget>
|
|
2368
|
+
</item>
|
|
2369
|
+
<item>
|
|
2370
|
+
<layout class="QHBoxLayout" name="horizontalLayout_52">
|
|
2371
|
+
<item>
|
|
2372
|
+
<spacer name="horizontalSpacer_26">
|
|
2373
|
+
<property name="orientation">
|
|
2374
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2375
|
+
</property>
|
|
2376
|
+
<property name="sizeType">
|
|
2377
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2378
|
+
</property>
|
|
2379
|
+
<property name="sizeHint" stdset="0">
|
|
2380
|
+
<size>
|
|
2381
|
+
<width>5</width>
|
|
2382
|
+
<height>5</height>
|
|
2383
|
+
</size>
|
|
2384
|
+
</property>
|
|
2385
|
+
</spacer>
|
|
2386
|
+
</item>
|
|
2387
|
+
<item>
|
|
2388
|
+
<widget class="QCheckBox" name="state_scored_4">
|
|
2389
|
+
<property name="sizePolicy">
|
|
2390
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
2391
|
+
<horstretch>0</horstretch>
|
|
2392
|
+
<verstretch>0</verstretch>
|
|
2393
|
+
</sizepolicy>
|
|
2394
|
+
</property>
|
|
2395
|
+
<property name="text">
|
|
2396
|
+
<string/>
|
|
2397
|
+
</property>
|
|
2398
|
+
<property name="checked">
|
|
2399
|
+
<bool>true</bool>
|
|
2400
|
+
</property>
|
|
2401
|
+
</widget>
|
|
2402
|
+
</item>
|
|
2403
|
+
<item>
|
|
2404
|
+
<spacer name="horizontalSpacer_25">
|
|
2405
|
+
<property name="orientation">
|
|
2406
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2407
|
+
</property>
|
|
2408
|
+
<property name="sizeType">
|
|
2409
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2410
|
+
</property>
|
|
2411
|
+
<property name="sizeHint" stdset="0">
|
|
2412
|
+
<size>
|
|
2413
|
+
<width>5</width>
|
|
2414
|
+
<height>5</height>
|
|
2415
|
+
</size>
|
|
2416
|
+
</property>
|
|
2417
|
+
</spacer>
|
|
2418
|
+
</item>
|
|
2419
|
+
</layout>
|
|
2420
|
+
</item>
|
|
2421
|
+
<item>
|
|
2422
|
+
<layout class="QHBoxLayout" name="horizontalLayout_38">
|
|
2423
|
+
<item>
|
|
2424
|
+
<spacer name="horizontalSpacer_57">
|
|
2425
|
+
<property name="orientation">
|
|
2426
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2427
|
+
</property>
|
|
2428
|
+
<property name="sizeType">
|
|
2429
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2430
|
+
</property>
|
|
2431
|
+
<property name="sizeHint" stdset="0">
|
|
2432
|
+
<size>
|
|
2433
|
+
<width>5</width>
|
|
2434
|
+
<height>5</height>
|
|
2435
|
+
</size>
|
|
2436
|
+
</property>
|
|
2437
|
+
</spacer>
|
|
2438
|
+
</item>
|
|
2439
|
+
<item>
|
|
2440
|
+
<widget class="QDoubleSpinBox" name="state_frequency_4">
|
|
2441
|
+
<property name="maximum">
|
|
2442
|
+
<double>1.000000000000000</double>
|
|
2443
|
+
</property>
|
|
2444
|
+
<property name="singleStep">
|
|
2445
|
+
<double>0.010000000000000</double>
|
|
2446
|
+
</property>
|
|
2447
|
+
</widget>
|
|
2448
|
+
</item>
|
|
2449
|
+
<item>
|
|
2450
|
+
<spacer name="horizontalSpacer_56">
|
|
2451
|
+
<property name="orientation">
|
|
2452
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2453
|
+
</property>
|
|
2454
|
+
<property name="sizeType">
|
|
2455
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2456
|
+
</property>
|
|
2457
|
+
<property name="sizeHint" stdset="0">
|
|
2458
|
+
<size>
|
|
2459
|
+
<width>5</width>
|
|
2460
|
+
<height>5</height>
|
|
2461
|
+
</size>
|
|
2462
|
+
</property>
|
|
2463
|
+
</spacer>
|
|
2464
|
+
</item>
|
|
2465
|
+
</layout>
|
|
2466
|
+
</item>
|
|
2467
|
+
</layout>
|
|
2468
|
+
</item>
|
|
2469
|
+
<item>
|
|
2470
|
+
<layout class="QHBoxLayout" name="horizontalLayout_13" stretch="3,3,4,3,4">
|
|
2471
|
+
<property name="spacing">
|
|
2472
|
+
<number>10</number>
|
|
2473
|
+
</property>
|
|
2474
|
+
<item>
|
|
2475
|
+
<layout class="QHBoxLayout" name="horizontalLayout_32">
|
|
2476
|
+
<item>
|
|
2477
|
+
<widget class="QLabel" name="label_8">
|
|
2478
|
+
<property name="sizePolicy">
|
|
2479
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
2480
|
+
<horstretch>0</horstretch>
|
|
2481
|
+
<verstretch>0</verstretch>
|
|
2482
|
+
</sizepolicy>
|
|
2483
|
+
</property>
|
|
2484
|
+
<property name="font">
|
|
2485
|
+
<font>
|
|
2486
|
+
<pointsize>16</pointsize>
|
|
2487
|
+
</font>
|
|
2488
|
+
</property>
|
|
2489
|
+
<property name="text">
|
|
2490
|
+
<string>5</string>
|
|
2491
|
+
</property>
|
|
2492
|
+
<property name="alignment">
|
|
2493
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
2494
|
+
</property>
|
|
2495
|
+
</widget>
|
|
2496
|
+
</item>
|
|
2497
|
+
</layout>
|
|
2498
|
+
</item>
|
|
2499
|
+
<item>
|
|
2500
|
+
<layout class="QHBoxLayout" name="horizontalLayout_46">
|
|
2501
|
+
<item>
|
|
2502
|
+
<spacer name="horizontalSpacer_29">
|
|
2503
|
+
<property name="orientation">
|
|
2504
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2505
|
+
</property>
|
|
2506
|
+
<property name="sizeType">
|
|
2507
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2508
|
+
</property>
|
|
2509
|
+
<property name="sizeHint" stdset="0">
|
|
2510
|
+
<size>
|
|
2511
|
+
<width>5</width>
|
|
2512
|
+
<height>5</height>
|
|
2513
|
+
</size>
|
|
2514
|
+
</property>
|
|
2515
|
+
</spacer>
|
|
2516
|
+
</item>
|
|
2517
|
+
<item>
|
|
2518
|
+
<widget class="QCheckBox" name="enable_state_5">
|
|
2519
|
+
<property name="sizePolicy">
|
|
2520
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
2521
|
+
<horstretch>0</horstretch>
|
|
2522
|
+
<verstretch>0</verstretch>
|
|
2523
|
+
</sizepolicy>
|
|
2524
|
+
</property>
|
|
2525
|
+
<property name="text">
|
|
2526
|
+
<string/>
|
|
2527
|
+
</property>
|
|
2528
|
+
</widget>
|
|
2529
|
+
</item>
|
|
2530
|
+
<item>
|
|
2531
|
+
<spacer name="horizontalSpacer_30">
|
|
2532
|
+
<property name="orientation">
|
|
2533
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2534
|
+
</property>
|
|
2535
|
+
<property name="sizeType">
|
|
2536
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2537
|
+
</property>
|
|
2538
|
+
<property name="sizeHint" stdset="0">
|
|
2539
|
+
<size>
|
|
2540
|
+
<width>5</width>
|
|
2541
|
+
<height>5</height>
|
|
2542
|
+
</size>
|
|
2543
|
+
</property>
|
|
2544
|
+
</spacer>
|
|
2545
|
+
</item>
|
|
2546
|
+
</layout>
|
|
2547
|
+
</item>
|
|
2548
|
+
<item>
|
|
2549
|
+
<widget class="QLineEdit" name="state_name_5">
|
|
2550
|
+
<property name="sizePolicy">
|
|
2551
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
2552
|
+
<horstretch>0</horstretch>
|
|
2553
|
+
<verstretch>0</verstretch>
|
|
2554
|
+
</sizepolicy>
|
|
2555
|
+
</property>
|
|
2556
|
+
</widget>
|
|
2557
|
+
</item>
|
|
2558
|
+
<item>
|
|
2559
|
+
<layout class="QHBoxLayout" name="horizontalLayout_53">
|
|
2560
|
+
<item>
|
|
2561
|
+
<spacer name="horizontalSpacer_27">
|
|
2562
|
+
<property name="orientation">
|
|
2563
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2564
|
+
</property>
|
|
2565
|
+
<property name="sizeType">
|
|
2566
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2567
|
+
</property>
|
|
2568
|
+
<property name="sizeHint" stdset="0">
|
|
2569
|
+
<size>
|
|
2570
|
+
<width>5</width>
|
|
2571
|
+
<height>5</height>
|
|
2572
|
+
</size>
|
|
2573
|
+
</property>
|
|
2574
|
+
</spacer>
|
|
2575
|
+
</item>
|
|
2576
|
+
<item>
|
|
2577
|
+
<widget class="QCheckBox" name="state_scored_5">
|
|
2578
|
+
<property name="sizePolicy">
|
|
2579
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
2580
|
+
<horstretch>0</horstretch>
|
|
2581
|
+
<verstretch>0</verstretch>
|
|
2582
|
+
</sizepolicy>
|
|
2583
|
+
</property>
|
|
2584
|
+
<property name="text">
|
|
2585
|
+
<string/>
|
|
2586
|
+
</property>
|
|
2587
|
+
<property name="checked">
|
|
2588
|
+
<bool>true</bool>
|
|
2589
|
+
</property>
|
|
2590
|
+
</widget>
|
|
2591
|
+
</item>
|
|
2592
|
+
<item>
|
|
2593
|
+
<spacer name="horizontalSpacer_28">
|
|
2594
|
+
<property name="orientation">
|
|
2595
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2596
|
+
</property>
|
|
2597
|
+
<property name="sizeType">
|
|
2598
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2599
|
+
</property>
|
|
2600
|
+
<property name="sizeHint" stdset="0">
|
|
2601
|
+
<size>
|
|
2602
|
+
<width>5</width>
|
|
2603
|
+
<height>5</height>
|
|
2604
|
+
</size>
|
|
2605
|
+
</property>
|
|
2606
|
+
</spacer>
|
|
2607
|
+
</item>
|
|
2608
|
+
</layout>
|
|
2609
|
+
</item>
|
|
2610
|
+
<item>
|
|
2611
|
+
<layout class="QHBoxLayout" name="horizontalLayout_39">
|
|
2612
|
+
<item>
|
|
2613
|
+
<spacer name="horizontalSpacer_59">
|
|
2614
|
+
<property name="orientation">
|
|
2615
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2616
|
+
</property>
|
|
2617
|
+
<property name="sizeType">
|
|
2618
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2619
|
+
</property>
|
|
2620
|
+
<property name="sizeHint" stdset="0">
|
|
2621
|
+
<size>
|
|
2622
|
+
<width>5</width>
|
|
2623
|
+
<height>5</height>
|
|
2624
|
+
</size>
|
|
2625
|
+
</property>
|
|
2626
|
+
</spacer>
|
|
2627
|
+
</item>
|
|
2628
|
+
<item>
|
|
2629
|
+
<widget class="QDoubleSpinBox" name="state_frequency_5">
|
|
2630
|
+
<property name="maximum">
|
|
2631
|
+
<double>1.000000000000000</double>
|
|
2632
|
+
</property>
|
|
2633
|
+
<property name="singleStep">
|
|
2634
|
+
<double>0.010000000000000</double>
|
|
2635
|
+
</property>
|
|
2636
|
+
</widget>
|
|
2637
|
+
</item>
|
|
2638
|
+
<item>
|
|
2639
|
+
<spacer name="horizontalSpacer_58">
|
|
2640
|
+
<property name="orientation">
|
|
2641
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2642
|
+
</property>
|
|
2643
|
+
<property name="sizeType">
|
|
2644
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2645
|
+
</property>
|
|
2646
|
+
<property name="sizeHint" stdset="0">
|
|
2647
|
+
<size>
|
|
2648
|
+
<width>5</width>
|
|
2649
|
+
<height>5</height>
|
|
2650
|
+
</size>
|
|
2651
|
+
</property>
|
|
2652
|
+
</spacer>
|
|
2653
|
+
</item>
|
|
2654
|
+
</layout>
|
|
2655
|
+
</item>
|
|
2656
|
+
</layout>
|
|
2657
|
+
</item>
|
|
2658
|
+
<item>
|
|
2659
|
+
<layout class="QHBoxLayout" name="horizontalLayout_12" stretch="3,3,4,3,4">
|
|
2660
|
+
<property name="spacing">
|
|
2661
|
+
<number>10</number>
|
|
2662
|
+
</property>
|
|
2663
|
+
<item>
|
|
2664
|
+
<layout class="QHBoxLayout" name="horizontalLayout_33">
|
|
2665
|
+
<item>
|
|
2666
|
+
<widget class="QLabel" name="label_7">
|
|
2667
|
+
<property name="sizePolicy">
|
|
2668
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
2669
|
+
<horstretch>0</horstretch>
|
|
2670
|
+
<verstretch>0</verstretch>
|
|
2671
|
+
</sizepolicy>
|
|
2672
|
+
</property>
|
|
2673
|
+
<property name="font">
|
|
2674
|
+
<font>
|
|
2675
|
+
<pointsize>16</pointsize>
|
|
2676
|
+
</font>
|
|
2677
|
+
</property>
|
|
2678
|
+
<property name="text">
|
|
2679
|
+
<string>6</string>
|
|
2680
|
+
</property>
|
|
2681
|
+
<property name="alignment">
|
|
2682
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
2683
|
+
</property>
|
|
2684
|
+
</widget>
|
|
2685
|
+
</item>
|
|
2686
|
+
</layout>
|
|
2687
|
+
</item>
|
|
2688
|
+
<item>
|
|
2689
|
+
<layout class="QHBoxLayout" name="horizontalLayout_47">
|
|
2690
|
+
<item>
|
|
2691
|
+
<spacer name="horizontalSpacer_32">
|
|
2692
|
+
<property name="orientation">
|
|
2693
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2694
|
+
</property>
|
|
2695
|
+
<property name="sizeType">
|
|
2696
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2697
|
+
</property>
|
|
2698
|
+
<property name="sizeHint" stdset="0">
|
|
2699
|
+
<size>
|
|
2700
|
+
<width>5</width>
|
|
2701
|
+
<height>5</height>
|
|
2702
|
+
</size>
|
|
2703
|
+
</property>
|
|
2704
|
+
</spacer>
|
|
2705
|
+
</item>
|
|
2706
|
+
<item>
|
|
2707
|
+
<widget class="QCheckBox" name="enable_state_6">
|
|
2708
|
+
<property name="sizePolicy">
|
|
2709
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
2710
|
+
<horstretch>0</horstretch>
|
|
2711
|
+
<verstretch>0</verstretch>
|
|
2712
|
+
</sizepolicy>
|
|
2713
|
+
</property>
|
|
2714
|
+
<property name="text">
|
|
2715
|
+
<string/>
|
|
2716
|
+
</property>
|
|
2717
|
+
</widget>
|
|
2718
|
+
</item>
|
|
2719
|
+
<item>
|
|
2720
|
+
<spacer name="horizontalSpacer_31">
|
|
2721
|
+
<property name="orientation">
|
|
2722
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2723
|
+
</property>
|
|
2724
|
+
<property name="sizeType">
|
|
2725
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2726
|
+
</property>
|
|
2727
|
+
<property name="sizeHint" stdset="0">
|
|
2728
|
+
<size>
|
|
2729
|
+
<width>5</width>
|
|
2730
|
+
<height>5</height>
|
|
2731
|
+
</size>
|
|
2732
|
+
</property>
|
|
2733
|
+
</spacer>
|
|
2734
|
+
</item>
|
|
2735
|
+
</layout>
|
|
2736
|
+
</item>
|
|
2737
|
+
<item>
|
|
2738
|
+
<widget class="QLineEdit" name="state_name_6">
|
|
2739
|
+
<property name="sizePolicy">
|
|
2740
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
2741
|
+
<horstretch>0</horstretch>
|
|
2742
|
+
<verstretch>0</verstretch>
|
|
2743
|
+
</sizepolicy>
|
|
2744
|
+
</property>
|
|
2745
|
+
</widget>
|
|
2746
|
+
</item>
|
|
2747
|
+
<item>
|
|
2748
|
+
<layout class="QHBoxLayout" name="horizontalLayout_54">
|
|
2749
|
+
<item>
|
|
2750
|
+
<spacer name="horizontalSpacer_34">
|
|
2751
|
+
<property name="orientation">
|
|
2752
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2753
|
+
</property>
|
|
2754
|
+
<property name="sizeType">
|
|
2755
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2756
|
+
</property>
|
|
2757
|
+
<property name="sizeHint" stdset="0">
|
|
2758
|
+
<size>
|
|
2759
|
+
<width>5</width>
|
|
2760
|
+
<height>5</height>
|
|
2761
|
+
</size>
|
|
2762
|
+
</property>
|
|
2763
|
+
</spacer>
|
|
2764
|
+
</item>
|
|
2765
|
+
<item>
|
|
2766
|
+
<widget class="QCheckBox" name="state_scored_6">
|
|
2767
|
+
<property name="sizePolicy">
|
|
2768
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
2769
|
+
<horstretch>0</horstretch>
|
|
2770
|
+
<verstretch>0</verstretch>
|
|
2771
|
+
</sizepolicy>
|
|
2772
|
+
</property>
|
|
2773
|
+
<property name="text">
|
|
2774
|
+
<string/>
|
|
2775
|
+
</property>
|
|
2776
|
+
<property name="checked">
|
|
2777
|
+
<bool>true</bool>
|
|
2778
|
+
</property>
|
|
2779
|
+
</widget>
|
|
2780
|
+
</item>
|
|
2781
|
+
<item>
|
|
2782
|
+
<spacer name="horizontalSpacer_33">
|
|
2783
|
+
<property name="orientation">
|
|
2784
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2785
|
+
</property>
|
|
2786
|
+
<property name="sizeType">
|
|
2787
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2788
|
+
</property>
|
|
2789
|
+
<property name="sizeHint" stdset="0">
|
|
2790
|
+
<size>
|
|
2791
|
+
<width>5</width>
|
|
2792
|
+
<height>5</height>
|
|
2793
|
+
</size>
|
|
2794
|
+
</property>
|
|
2795
|
+
</spacer>
|
|
2796
|
+
</item>
|
|
2797
|
+
</layout>
|
|
2798
|
+
</item>
|
|
2799
|
+
<item>
|
|
2800
|
+
<layout class="QHBoxLayout" name="horizontalLayout_40">
|
|
2801
|
+
<item>
|
|
2802
|
+
<spacer name="horizontalSpacer_61">
|
|
2803
|
+
<property name="orientation">
|
|
2804
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2805
|
+
</property>
|
|
2806
|
+
<property name="sizeType">
|
|
2807
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2808
|
+
</property>
|
|
2809
|
+
<property name="sizeHint" stdset="0">
|
|
2810
|
+
<size>
|
|
2811
|
+
<width>5</width>
|
|
2812
|
+
<height>5</height>
|
|
2813
|
+
</size>
|
|
2814
|
+
</property>
|
|
2815
|
+
</spacer>
|
|
2816
|
+
</item>
|
|
2817
|
+
<item>
|
|
2818
|
+
<widget class="QDoubleSpinBox" name="state_frequency_6">
|
|
2819
|
+
<property name="maximum">
|
|
2820
|
+
<double>1.000000000000000</double>
|
|
2821
|
+
</property>
|
|
2822
|
+
<property name="singleStep">
|
|
2823
|
+
<double>0.010000000000000</double>
|
|
2824
|
+
</property>
|
|
2825
|
+
</widget>
|
|
2826
|
+
</item>
|
|
2827
|
+
<item>
|
|
2828
|
+
<spacer name="horizontalSpacer_60">
|
|
2829
|
+
<property name="orientation">
|
|
2830
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2831
|
+
</property>
|
|
2832
|
+
<property name="sizeType">
|
|
2833
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2834
|
+
</property>
|
|
2835
|
+
<property name="sizeHint" stdset="0">
|
|
2836
|
+
<size>
|
|
2837
|
+
<width>5</width>
|
|
2838
|
+
<height>5</height>
|
|
2839
|
+
</size>
|
|
2840
|
+
</property>
|
|
2841
|
+
</spacer>
|
|
2842
|
+
</item>
|
|
2843
|
+
</layout>
|
|
2844
|
+
</item>
|
|
2845
|
+
</layout>
|
|
2846
|
+
</item>
|
|
2847
|
+
<item>
|
|
2848
|
+
<layout class="QHBoxLayout" name="horizontalLayout_9" stretch="3,3,4,3,4">
|
|
2849
|
+
<property name="spacing">
|
|
2850
|
+
<number>10</number>
|
|
2851
|
+
</property>
|
|
2852
|
+
<item>
|
|
2853
|
+
<layout class="QHBoxLayout" name="horizontalLayout_34">
|
|
2854
|
+
<item>
|
|
2855
|
+
<widget class="QLabel" name="label_6">
|
|
2856
|
+
<property name="sizePolicy">
|
|
2857
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
2858
|
+
<horstretch>0</horstretch>
|
|
2859
|
+
<verstretch>0</verstretch>
|
|
2860
|
+
</sizepolicy>
|
|
2861
|
+
</property>
|
|
2862
|
+
<property name="font">
|
|
2863
|
+
<font>
|
|
2864
|
+
<pointsize>16</pointsize>
|
|
2865
|
+
</font>
|
|
2866
|
+
</property>
|
|
2867
|
+
<property name="text">
|
|
2868
|
+
<string>7</string>
|
|
2869
|
+
</property>
|
|
2870
|
+
<property name="alignment">
|
|
2871
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
2872
|
+
</property>
|
|
2873
|
+
</widget>
|
|
2874
|
+
</item>
|
|
2875
|
+
</layout>
|
|
2876
|
+
</item>
|
|
2877
|
+
<item>
|
|
2878
|
+
<layout class="QHBoxLayout" name="horizontalLayout_48">
|
|
2879
|
+
<item>
|
|
2880
|
+
<spacer name="horizontalSpacer_36">
|
|
2881
|
+
<property name="orientation">
|
|
2882
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2883
|
+
</property>
|
|
2884
|
+
<property name="sizeType">
|
|
2885
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2886
|
+
</property>
|
|
2887
|
+
<property name="sizeHint" stdset="0">
|
|
2888
|
+
<size>
|
|
2889
|
+
<width>5</width>
|
|
2890
|
+
<height>5</height>
|
|
2891
|
+
</size>
|
|
2892
|
+
</property>
|
|
2893
|
+
</spacer>
|
|
2894
|
+
</item>
|
|
2895
|
+
<item>
|
|
2896
|
+
<widget class="QCheckBox" name="enable_state_7">
|
|
2897
|
+
<property name="sizePolicy">
|
|
2898
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
2899
|
+
<horstretch>0</horstretch>
|
|
2900
|
+
<verstretch>0</verstretch>
|
|
2901
|
+
</sizepolicy>
|
|
2902
|
+
</property>
|
|
2903
|
+
<property name="text">
|
|
2904
|
+
<string/>
|
|
2905
|
+
</property>
|
|
2906
|
+
</widget>
|
|
2907
|
+
</item>
|
|
2908
|
+
<item>
|
|
2909
|
+
<spacer name="horizontalSpacer_35">
|
|
2910
|
+
<property name="orientation">
|
|
2911
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2912
|
+
</property>
|
|
2913
|
+
<property name="sizeType">
|
|
2914
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2915
|
+
</property>
|
|
2916
|
+
<property name="sizeHint" stdset="0">
|
|
2917
|
+
<size>
|
|
2918
|
+
<width>5</width>
|
|
2919
|
+
<height>5</height>
|
|
2920
|
+
</size>
|
|
2921
|
+
</property>
|
|
2922
|
+
</spacer>
|
|
2923
|
+
</item>
|
|
2924
|
+
</layout>
|
|
2925
|
+
</item>
|
|
2926
|
+
<item>
|
|
2927
|
+
<widget class="QLineEdit" name="state_name_7">
|
|
2928
|
+
<property name="sizePolicy">
|
|
2929
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
2930
|
+
<horstretch>0</horstretch>
|
|
2931
|
+
<verstretch>0</verstretch>
|
|
2932
|
+
</sizepolicy>
|
|
2933
|
+
</property>
|
|
2934
|
+
</widget>
|
|
2935
|
+
</item>
|
|
2936
|
+
<item>
|
|
2937
|
+
<layout class="QHBoxLayout" name="horizontalLayout_55">
|
|
2938
|
+
<item>
|
|
2939
|
+
<spacer name="horizontalSpacer_38">
|
|
2940
|
+
<property name="orientation">
|
|
2941
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2942
|
+
</property>
|
|
2943
|
+
<property name="sizeType">
|
|
2944
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2945
|
+
</property>
|
|
2946
|
+
<property name="sizeHint" stdset="0">
|
|
2947
|
+
<size>
|
|
2948
|
+
<width>5</width>
|
|
2949
|
+
<height>5</height>
|
|
2950
|
+
</size>
|
|
2951
|
+
</property>
|
|
2952
|
+
</spacer>
|
|
2953
|
+
</item>
|
|
2954
|
+
<item>
|
|
2955
|
+
<widget class="QCheckBox" name="state_scored_7">
|
|
2956
|
+
<property name="sizePolicy">
|
|
2957
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
2958
|
+
<horstretch>0</horstretch>
|
|
2959
|
+
<verstretch>0</verstretch>
|
|
2960
|
+
</sizepolicy>
|
|
2961
|
+
</property>
|
|
2962
|
+
<property name="text">
|
|
2963
|
+
<string/>
|
|
2964
|
+
</property>
|
|
2965
|
+
<property name="checked">
|
|
2966
|
+
<bool>true</bool>
|
|
2967
|
+
</property>
|
|
2968
|
+
</widget>
|
|
2969
|
+
</item>
|
|
2970
|
+
<item>
|
|
2971
|
+
<spacer name="horizontalSpacer_37">
|
|
2972
|
+
<property name="orientation">
|
|
2973
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2974
|
+
</property>
|
|
2975
|
+
<property name="sizeType">
|
|
2976
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2977
|
+
</property>
|
|
2978
|
+
<property name="sizeHint" stdset="0">
|
|
2979
|
+
<size>
|
|
2980
|
+
<width>5</width>
|
|
2981
|
+
<height>5</height>
|
|
2982
|
+
</size>
|
|
2983
|
+
</property>
|
|
2984
|
+
</spacer>
|
|
2985
|
+
</item>
|
|
2986
|
+
</layout>
|
|
2987
|
+
</item>
|
|
2988
|
+
<item>
|
|
2989
|
+
<layout class="QHBoxLayout" name="horizontalLayout_41">
|
|
2990
|
+
<item>
|
|
2991
|
+
<spacer name="horizontalSpacer_63">
|
|
2992
|
+
<property name="orientation">
|
|
2993
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
2994
|
+
</property>
|
|
2995
|
+
<property name="sizeType">
|
|
2996
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
2997
|
+
</property>
|
|
2998
|
+
<property name="sizeHint" stdset="0">
|
|
2999
|
+
<size>
|
|
3000
|
+
<width>5</width>
|
|
3001
|
+
<height>5</height>
|
|
3002
|
+
</size>
|
|
3003
|
+
</property>
|
|
3004
|
+
</spacer>
|
|
3005
|
+
</item>
|
|
3006
|
+
<item>
|
|
3007
|
+
<widget class="QDoubleSpinBox" name="state_frequency_7">
|
|
3008
|
+
<property name="maximum">
|
|
3009
|
+
<double>1.000000000000000</double>
|
|
3010
|
+
</property>
|
|
3011
|
+
<property name="singleStep">
|
|
3012
|
+
<double>0.010000000000000</double>
|
|
3013
|
+
</property>
|
|
3014
|
+
</widget>
|
|
3015
|
+
</item>
|
|
3016
|
+
<item>
|
|
3017
|
+
<spacer name="horizontalSpacer_62">
|
|
3018
|
+
<property name="orientation">
|
|
3019
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3020
|
+
</property>
|
|
3021
|
+
<property name="sizeType">
|
|
3022
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3023
|
+
</property>
|
|
3024
|
+
<property name="sizeHint" stdset="0">
|
|
3025
|
+
<size>
|
|
3026
|
+
<width>5</width>
|
|
3027
|
+
<height>5</height>
|
|
3028
|
+
</size>
|
|
3029
|
+
</property>
|
|
3030
|
+
</spacer>
|
|
3031
|
+
</item>
|
|
3032
|
+
</layout>
|
|
3033
|
+
</item>
|
|
3034
|
+
</layout>
|
|
3035
|
+
</item>
|
|
3036
|
+
<item>
|
|
3037
|
+
<layout class="QHBoxLayout" name="horizontalLayout_8" stretch="3,3,4,3,4">
|
|
3038
|
+
<property name="spacing">
|
|
3039
|
+
<number>10</number>
|
|
3040
|
+
</property>
|
|
3041
|
+
<item>
|
|
3042
|
+
<layout class="QHBoxLayout" name="horizontalLayout_35">
|
|
3043
|
+
<item>
|
|
3044
|
+
<widget class="QLabel" name="label_5">
|
|
3045
|
+
<property name="sizePolicy">
|
|
3046
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
3047
|
+
<horstretch>0</horstretch>
|
|
3048
|
+
<verstretch>0</verstretch>
|
|
3049
|
+
</sizepolicy>
|
|
3050
|
+
</property>
|
|
3051
|
+
<property name="font">
|
|
3052
|
+
<font>
|
|
3053
|
+
<pointsize>16</pointsize>
|
|
3054
|
+
</font>
|
|
3055
|
+
</property>
|
|
3056
|
+
<property name="text">
|
|
3057
|
+
<string>8</string>
|
|
3058
|
+
</property>
|
|
3059
|
+
<property name="alignment">
|
|
3060
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
3061
|
+
</property>
|
|
3062
|
+
</widget>
|
|
3063
|
+
</item>
|
|
3064
|
+
</layout>
|
|
3065
|
+
</item>
|
|
3066
|
+
<item>
|
|
3067
|
+
<layout class="QHBoxLayout" name="horizontalLayout_49">
|
|
3068
|
+
<item>
|
|
3069
|
+
<spacer name="horizontalSpacer_40">
|
|
3070
|
+
<property name="orientation">
|
|
3071
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3072
|
+
</property>
|
|
3073
|
+
<property name="sizeType">
|
|
3074
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3075
|
+
</property>
|
|
3076
|
+
<property name="sizeHint" stdset="0">
|
|
3077
|
+
<size>
|
|
3078
|
+
<width>5</width>
|
|
3079
|
+
<height>5</height>
|
|
3080
|
+
</size>
|
|
3081
|
+
</property>
|
|
3082
|
+
</spacer>
|
|
3083
|
+
</item>
|
|
3084
|
+
<item>
|
|
3085
|
+
<widget class="QCheckBox" name="enable_state_8">
|
|
3086
|
+
<property name="sizePolicy">
|
|
3087
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
3088
|
+
<horstretch>0</horstretch>
|
|
3089
|
+
<verstretch>0</verstretch>
|
|
3090
|
+
</sizepolicy>
|
|
3091
|
+
</property>
|
|
3092
|
+
<property name="text">
|
|
3093
|
+
<string/>
|
|
3094
|
+
</property>
|
|
3095
|
+
</widget>
|
|
3096
|
+
</item>
|
|
3097
|
+
<item>
|
|
3098
|
+
<spacer name="horizontalSpacer_39">
|
|
3099
|
+
<property name="orientation">
|
|
3100
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3101
|
+
</property>
|
|
3102
|
+
<property name="sizeType">
|
|
3103
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3104
|
+
</property>
|
|
3105
|
+
<property name="sizeHint" stdset="0">
|
|
3106
|
+
<size>
|
|
3107
|
+
<width>5</width>
|
|
3108
|
+
<height>5</height>
|
|
3109
|
+
</size>
|
|
3110
|
+
</property>
|
|
3111
|
+
</spacer>
|
|
3112
|
+
</item>
|
|
3113
|
+
</layout>
|
|
3114
|
+
</item>
|
|
3115
|
+
<item>
|
|
3116
|
+
<widget class="QLineEdit" name="state_name_8">
|
|
3117
|
+
<property name="sizePolicy">
|
|
3118
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
3119
|
+
<horstretch>0</horstretch>
|
|
3120
|
+
<verstretch>0</verstretch>
|
|
3121
|
+
</sizepolicy>
|
|
3122
|
+
</property>
|
|
3123
|
+
</widget>
|
|
3124
|
+
</item>
|
|
3125
|
+
<item>
|
|
3126
|
+
<layout class="QHBoxLayout" name="horizontalLayout_56">
|
|
3127
|
+
<item>
|
|
3128
|
+
<spacer name="horizontalSpacer_42">
|
|
3129
|
+
<property name="orientation">
|
|
3130
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3131
|
+
</property>
|
|
3132
|
+
<property name="sizeType">
|
|
3133
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3134
|
+
</property>
|
|
3135
|
+
<property name="sizeHint" stdset="0">
|
|
3136
|
+
<size>
|
|
3137
|
+
<width>5</width>
|
|
3138
|
+
<height>5</height>
|
|
3139
|
+
</size>
|
|
3140
|
+
</property>
|
|
3141
|
+
</spacer>
|
|
3142
|
+
</item>
|
|
3143
|
+
<item>
|
|
3144
|
+
<widget class="QCheckBox" name="state_scored_8">
|
|
3145
|
+
<property name="sizePolicy">
|
|
3146
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
3147
|
+
<horstretch>0</horstretch>
|
|
3148
|
+
<verstretch>0</verstretch>
|
|
3149
|
+
</sizepolicy>
|
|
3150
|
+
</property>
|
|
3151
|
+
<property name="text">
|
|
3152
|
+
<string/>
|
|
3153
|
+
</property>
|
|
3154
|
+
<property name="checked">
|
|
3155
|
+
<bool>true</bool>
|
|
3156
|
+
</property>
|
|
3157
|
+
</widget>
|
|
3158
|
+
</item>
|
|
3159
|
+
<item>
|
|
3160
|
+
<spacer name="horizontalSpacer_41">
|
|
3161
|
+
<property name="orientation">
|
|
3162
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3163
|
+
</property>
|
|
3164
|
+
<property name="sizeType">
|
|
3165
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3166
|
+
</property>
|
|
3167
|
+
<property name="sizeHint" stdset="0">
|
|
3168
|
+
<size>
|
|
3169
|
+
<width>5</width>
|
|
3170
|
+
<height>5</height>
|
|
3171
|
+
</size>
|
|
3172
|
+
</property>
|
|
3173
|
+
</spacer>
|
|
3174
|
+
</item>
|
|
3175
|
+
</layout>
|
|
3176
|
+
</item>
|
|
3177
|
+
<item>
|
|
3178
|
+
<layout class="QHBoxLayout" name="horizontalLayout_42">
|
|
3179
|
+
<item>
|
|
3180
|
+
<spacer name="horizontalSpacer_65">
|
|
3181
|
+
<property name="orientation">
|
|
3182
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3183
|
+
</property>
|
|
3184
|
+
<property name="sizeType">
|
|
3185
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3186
|
+
</property>
|
|
3187
|
+
<property name="sizeHint" stdset="0">
|
|
3188
|
+
<size>
|
|
3189
|
+
<width>5</width>
|
|
3190
|
+
<height>5</height>
|
|
3191
|
+
</size>
|
|
3192
|
+
</property>
|
|
3193
|
+
</spacer>
|
|
3194
|
+
</item>
|
|
3195
|
+
<item>
|
|
3196
|
+
<widget class="QDoubleSpinBox" name="state_frequency_8">
|
|
3197
|
+
<property name="maximum">
|
|
3198
|
+
<double>1.000000000000000</double>
|
|
3199
|
+
</property>
|
|
3200
|
+
<property name="singleStep">
|
|
3201
|
+
<double>0.010000000000000</double>
|
|
3202
|
+
</property>
|
|
3203
|
+
</widget>
|
|
3204
|
+
</item>
|
|
3205
|
+
<item>
|
|
3206
|
+
<spacer name="horizontalSpacer_64">
|
|
3207
|
+
<property name="orientation">
|
|
3208
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3209
|
+
</property>
|
|
3210
|
+
<property name="sizeType">
|
|
3211
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3212
|
+
</property>
|
|
3213
|
+
<property name="sizeHint" stdset="0">
|
|
3214
|
+
<size>
|
|
3215
|
+
<width>5</width>
|
|
3216
|
+
<height>5</height>
|
|
3217
|
+
</size>
|
|
3218
|
+
</property>
|
|
3219
|
+
</spacer>
|
|
3220
|
+
</item>
|
|
3221
|
+
</layout>
|
|
3222
|
+
</item>
|
|
3223
|
+
</layout>
|
|
3224
|
+
</item>
|
|
3225
|
+
<item>
|
|
3226
|
+
<layout class="QHBoxLayout" name="horizontalLayout_7" stretch="3,3,4,3,4">
|
|
3227
|
+
<property name="spacing">
|
|
3228
|
+
<number>10</number>
|
|
3229
|
+
</property>
|
|
3230
|
+
<item>
|
|
3231
|
+
<layout class="QHBoxLayout" name="horizontalLayout_36">
|
|
3232
|
+
<item>
|
|
3233
|
+
<widget class="QLabel" name="label_4">
|
|
3234
|
+
<property name="sizePolicy">
|
|
3235
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
3236
|
+
<horstretch>0</horstretch>
|
|
3237
|
+
<verstretch>0</verstretch>
|
|
3238
|
+
</sizepolicy>
|
|
3239
|
+
</property>
|
|
3240
|
+
<property name="font">
|
|
3241
|
+
<font>
|
|
3242
|
+
<pointsize>16</pointsize>
|
|
3243
|
+
</font>
|
|
3244
|
+
</property>
|
|
3245
|
+
<property name="text">
|
|
3246
|
+
<string>9</string>
|
|
3247
|
+
</property>
|
|
3248
|
+
<property name="alignment">
|
|
3249
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
3250
|
+
</property>
|
|
3251
|
+
</widget>
|
|
3252
|
+
</item>
|
|
3253
|
+
</layout>
|
|
3254
|
+
</item>
|
|
3255
|
+
<item>
|
|
3256
|
+
<layout class="QHBoxLayout" name="horizontalLayout_50">
|
|
3257
|
+
<item>
|
|
3258
|
+
<spacer name="horizontalSpacer_44">
|
|
3259
|
+
<property name="orientation">
|
|
3260
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3261
|
+
</property>
|
|
3262
|
+
<property name="sizeType">
|
|
3263
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3264
|
+
</property>
|
|
3265
|
+
<property name="sizeHint" stdset="0">
|
|
3266
|
+
<size>
|
|
3267
|
+
<width>5</width>
|
|
3268
|
+
<height>5</height>
|
|
3269
|
+
</size>
|
|
3270
|
+
</property>
|
|
3271
|
+
</spacer>
|
|
3272
|
+
</item>
|
|
3273
|
+
<item>
|
|
3274
|
+
<widget class="QCheckBox" name="enable_state_9">
|
|
3275
|
+
<property name="sizePolicy">
|
|
3276
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
3277
|
+
<horstretch>0</horstretch>
|
|
3278
|
+
<verstretch>0</verstretch>
|
|
3279
|
+
</sizepolicy>
|
|
3280
|
+
</property>
|
|
3281
|
+
<property name="text">
|
|
3282
|
+
<string/>
|
|
3283
|
+
</property>
|
|
3284
|
+
</widget>
|
|
3285
|
+
</item>
|
|
3286
|
+
<item>
|
|
3287
|
+
<spacer name="horizontalSpacer_43">
|
|
3288
|
+
<property name="orientation">
|
|
3289
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3290
|
+
</property>
|
|
3291
|
+
<property name="sizeType">
|
|
3292
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3293
|
+
</property>
|
|
3294
|
+
<property name="sizeHint" stdset="0">
|
|
3295
|
+
<size>
|
|
3296
|
+
<width>5</width>
|
|
3297
|
+
<height>5</height>
|
|
3298
|
+
</size>
|
|
3299
|
+
</property>
|
|
3300
|
+
</spacer>
|
|
3301
|
+
</item>
|
|
3302
|
+
</layout>
|
|
3303
|
+
</item>
|
|
3304
|
+
<item>
|
|
3305
|
+
<widget class="QLineEdit" name="state_name_9">
|
|
3306
|
+
<property name="sizePolicy">
|
|
3307
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
3308
|
+
<horstretch>0</horstretch>
|
|
3309
|
+
<verstretch>0</verstretch>
|
|
3310
|
+
</sizepolicy>
|
|
3311
|
+
</property>
|
|
3312
|
+
</widget>
|
|
3313
|
+
</item>
|
|
3314
|
+
<item>
|
|
3315
|
+
<layout class="QHBoxLayout" name="horizontalLayout_57">
|
|
3316
|
+
<item>
|
|
3317
|
+
<spacer name="horizontalSpacer_46">
|
|
3318
|
+
<property name="orientation">
|
|
3319
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3320
|
+
</property>
|
|
3321
|
+
<property name="sizeType">
|
|
3322
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3323
|
+
</property>
|
|
3324
|
+
<property name="sizeHint" stdset="0">
|
|
3325
|
+
<size>
|
|
3326
|
+
<width>5</width>
|
|
3327
|
+
<height>5</height>
|
|
3328
|
+
</size>
|
|
3329
|
+
</property>
|
|
3330
|
+
</spacer>
|
|
3331
|
+
</item>
|
|
3332
|
+
<item>
|
|
3333
|
+
<widget class="QCheckBox" name="state_scored_9">
|
|
3334
|
+
<property name="sizePolicy">
|
|
3335
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
3336
|
+
<horstretch>0</horstretch>
|
|
3337
|
+
<verstretch>0</verstretch>
|
|
3338
|
+
</sizepolicy>
|
|
3339
|
+
</property>
|
|
3340
|
+
<property name="text">
|
|
3341
|
+
<string/>
|
|
3342
|
+
</property>
|
|
3343
|
+
<property name="checked">
|
|
3344
|
+
<bool>true</bool>
|
|
3345
|
+
</property>
|
|
3346
|
+
</widget>
|
|
3347
|
+
</item>
|
|
3348
|
+
<item>
|
|
3349
|
+
<spacer name="horizontalSpacer_45">
|
|
3350
|
+
<property name="orientation">
|
|
3351
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3352
|
+
</property>
|
|
3353
|
+
<property name="sizeType">
|
|
3354
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3355
|
+
</property>
|
|
3356
|
+
<property name="sizeHint" stdset="0">
|
|
3357
|
+
<size>
|
|
3358
|
+
<width>5</width>
|
|
3359
|
+
<height>5</height>
|
|
3360
|
+
</size>
|
|
3361
|
+
</property>
|
|
3362
|
+
</spacer>
|
|
3363
|
+
</item>
|
|
3364
|
+
</layout>
|
|
3365
|
+
</item>
|
|
3366
|
+
<item>
|
|
3367
|
+
<layout class="QHBoxLayout" name="horizontalLayout_43">
|
|
3368
|
+
<item>
|
|
3369
|
+
<spacer name="horizontalSpacer_67">
|
|
3370
|
+
<property name="orientation">
|
|
3371
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3372
|
+
</property>
|
|
3373
|
+
<property name="sizeType">
|
|
3374
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3375
|
+
</property>
|
|
3376
|
+
<property name="sizeHint" stdset="0">
|
|
3377
|
+
<size>
|
|
3378
|
+
<width>5</width>
|
|
3379
|
+
<height>5</height>
|
|
3380
|
+
</size>
|
|
3381
|
+
</property>
|
|
3382
|
+
</spacer>
|
|
3383
|
+
</item>
|
|
3384
|
+
<item>
|
|
3385
|
+
<widget class="QDoubleSpinBox" name="state_frequency_9">
|
|
3386
|
+
<property name="maximum">
|
|
3387
|
+
<double>1.000000000000000</double>
|
|
3388
|
+
</property>
|
|
3389
|
+
<property name="singleStep">
|
|
3390
|
+
<double>0.010000000000000</double>
|
|
3391
|
+
</property>
|
|
3392
|
+
</widget>
|
|
3393
|
+
</item>
|
|
3394
|
+
<item>
|
|
3395
|
+
<spacer name="horizontalSpacer_66">
|
|
3396
|
+
<property name="orientation">
|
|
3397
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3398
|
+
</property>
|
|
3399
|
+
<property name="sizeType">
|
|
3400
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3401
|
+
</property>
|
|
3402
|
+
<property name="sizeHint" stdset="0">
|
|
3403
|
+
<size>
|
|
3404
|
+
<width>5</width>
|
|
3405
|
+
<height>5</height>
|
|
3406
|
+
</size>
|
|
3407
|
+
</property>
|
|
3408
|
+
</spacer>
|
|
3409
|
+
</item>
|
|
3410
|
+
</layout>
|
|
3411
|
+
</item>
|
|
3412
|
+
</layout>
|
|
3413
|
+
</item>
|
|
3414
|
+
<item>
|
|
3415
|
+
<layout class="QHBoxLayout" name="horizontalLayout_4" stretch="3,3,4,3,4">
|
|
3416
|
+
<property name="spacing">
|
|
3417
|
+
<number>10</number>
|
|
3418
|
+
</property>
|
|
3419
|
+
<item>
|
|
3420
|
+
<layout class="QHBoxLayout" name="horizontalLayout_37">
|
|
3421
|
+
<item>
|
|
3422
|
+
<widget class="QLabel" name="label_3">
|
|
3423
|
+
<property name="sizePolicy">
|
|
3424
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
3425
|
+
<horstretch>0</horstretch>
|
|
3426
|
+
<verstretch>0</verstretch>
|
|
3427
|
+
</sizepolicy>
|
|
3428
|
+
</property>
|
|
3429
|
+
<property name="font">
|
|
3430
|
+
<font>
|
|
3431
|
+
<pointsize>16</pointsize>
|
|
3432
|
+
</font>
|
|
3433
|
+
</property>
|
|
3434
|
+
<property name="text">
|
|
3435
|
+
<string>0</string>
|
|
3436
|
+
</property>
|
|
3437
|
+
<property name="alignment">
|
|
3438
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
3439
|
+
</property>
|
|
3440
|
+
</widget>
|
|
3441
|
+
</item>
|
|
3442
|
+
</layout>
|
|
3443
|
+
</item>
|
|
3444
|
+
<item>
|
|
3445
|
+
<layout class="QHBoxLayout" name="horizontalLayout_51">
|
|
3446
|
+
<item>
|
|
3447
|
+
<spacer name="horizontalSpacer_48">
|
|
3448
|
+
<property name="orientation">
|
|
3449
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3450
|
+
</property>
|
|
3451
|
+
<property name="sizeType">
|
|
3452
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3453
|
+
</property>
|
|
3454
|
+
<property name="sizeHint" stdset="0">
|
|
3455
|
+
<size>
|
|
3456
|
+
<width>5</width>
|
|
3457
|
+
<height>5</height>
|
|
3458
|
+
</size>
|
|
3459
|
+
</property>
|
|
3460
|
+
</spacer>
|
|
3461
|
+
</item>
|
|
3462
|
+
<item>
|
|
3463
|
+
<widget class="QCheckBox" name="enable_state_0">
|
|
3464
|
+
<property name="sizePolicy">
|
|
3465
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
3466
|
+
<horstretch>0</horstretch>
|
|
3467
|
+
<verstretch>0</verstretch>
|
|
3468
|
+
</sizepolicy>
|
|
3469
|
+
</property>
|
|
3470
|
+
<property name="text">
|
|
3471
|
+
<string/>
|
|
3472
|
+
</property>
|
|
3473
|
+
</widget>
|
|
3474
|
+
</item>
|
|
3475
|
+
<item>
|
|
3476
|
+
<spacer name="horizontalSpacer_47">
|
|
3477
|
+
<property name="orientation">
|
|
3478
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3479
|
+
</property>
|
|
3480
|
+
<property name="sizeType">
|
|
3481
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3482
|
+
</property>
|
|
3483
|
+
<property name="sizeHint" stdset="0">
|
|
3484
|
+
<size>
|
|
3485
|
+
<width>5</width>
|
|
3486
|
+
<height>5</height>
|
|
3487
|
+
</size>
|
|
3488
|
+
</property>
|
|
3489
|
+
</spacer>
|
|
3490
|
+
</item>
|
|
3491
|
+
</layout>
|
|
3492
|
+
</item>
|
|
3493
|
+
<item>
|
|
3494
|
+
<widget class="QLineEdit" name="state_name_0">
|
|
3495
|
+
<property name="sizePolicy">
|
|
3496
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
3497
|
+
<horstretch>0</horstretch>
|
|
3498
|
+
<verstretch>0</verstretch>
|
|
3499
|
+
</sizepolicy>
|
|
3500
|
+
</property>
|
|
3501
|
+
</widget>
|
|
3502
|
+
</item>
|
|
3503
|
+
<item>
|
|
3504
|
+
<layout class="QHBoxLayout" name="horizontalLayout_58">
|
|
3505
|
+
<item>
|
|
3506
|
+
<spacer name="horizontalSpacer_49">
|
|
3507
|
+
<property name="orientation">
|
|
3508
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3509
|
+
</property>
|
|
3510
|
+
<property name="sizeType">
|
|
3511
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3512
|
+
</property>
|
|
3513
|
+
<property name="sizeHint" stdset="0">
|
|
3514
|
+
<size>
|
|
3515
|
+
<width>5</width>
|
|
3516
|
+
<height>5</height>
|
|
3517
|
+
</size>
|
|
3518
|
+
</property>
|
|
3519
|
+
</spacer>
|
|
3520
|
+
</item>
|
|
3521
|
+
<item>
|
|
3522
|
+
<widget class="QCheckBox" name="state_scored_0">
|
|
3523
|
+
<property name="sizePolicy">
|
|
3524
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
3525
|
+
<horstretch>0</horstretch>
|
|
3526
|
+
<verstretch>0</verstretch>
|
|
3527
|
+
</sizepolicy>
|
|
3528
|
+
</property>
|
|
3529
|
+
<property name="text">
|
|
3530
|
+
<string/>
|
|
3531
|
+
</property>
|
|
3532
|
+
<property name="checked">
|
|
3533
|
+
<bool>true</bool>
|
|
3534
|
+
</property>
|
|
3535
|
+
</widget>
|
|
3536
|
+
</item>
|
|
3537
|
+
<item>
|
|
3538
|
+
<spacer name="horizontalSpacer_50">
|
|
3539
|
+
<property name="orientation">
|
|
3540
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3541
|
+
</property>
|
|
3542
|
+
<property name="sizeType">
|
|
3543
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3544
|
+
</property>
|
|
3545
|
+
<property name="sizeHint" stdset="0">
|
|
3546
|
+
<size>
|
|
3547
|
+
<width>5</width>
|
|
3548
|
+
<height>5</height>
|
|
3549
|
+
</size>
|
|
3550
|
+
</property>
|
|
3551
|
+
</spacer>
|
|
3552
|
+
</item>
|
|
3553
|
+
</layout>
|
|
3554
|
+
</item>
|
|
3555
|
+
<item>
|
|
3556
|
+
<layout class="QHBoxLayout" name="horizontalLayout_44">
|
|
3557
|
+
<item>
|
|
3558
|
+
<spacer name="horizontalSpacer_69">
|
|
3559
|
+
<property name="orientation">
|
|
3560
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3561
|
+
</property>
|
|
3562
|
+
<property name="sizeType">
|
|
3563
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3564
|
+
</property>
|
|
3565
|
+
<property name="sizeHint" stdset="0">
|
|
3566
|
+
<size>
|
|
3567
|
+
<width>5</width>
|
|
3568
|
+
<height>5</height>
|
|
3569
|
+
</size>
|
|
3570
|
+
</property>
|
|
3571
|
+
</spacer>
|
|
3572
|
+
</item>
|
|
3573
|
+
<item>
|
|
3574
|
+
<widget class="QDoubleSpinBox" name="state_frequency_0">
|
|
3575
|
+
<property name="maximum">
|
|
3576
|
+
<double>1.000000000000000</double>
|
|
3577
|
+
</property>
|
|
3578
|
+
<property name="singleStep">
|
|
3579
|
+
<double>0.010000000000000</double>
|
|
3580
|
+
</property>
|
|
3581
|
+
</widget>
|
|
3582
|
+
</item>
|
|
3583
|
+
<item>
|
|
3584
|
+
<spacer name="horizontalSpacer_68">
|
|
3585
|
+
<property name="orientation">
|
|
3586
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3587
|
+
</property>
|
|
3588
|
+
<property name="sizeType">
|
|
3589
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3590
|
+
</property>
|
|
3591
|
+
<property name="sizeHint" stdset="0">
|
|
3592
|
+
<size>
|
|
3593
|
+
<width>5</width>
|
|
3594
|
+
<height>5</height>
|
|
3595
|
+
</size>
|
|
3596
|
+
</property>
|
|
3597
|
+
</spacer>
|
|
3598
|
+
</item>
|
|
3599
|
+
</layout>
|
|
3600
|
+
</item>
|
|
3601
|
+
</layout>
|
|
3602
|
+
</item>
|
|
3603
|
+
<item>
|
|
3604
|
+
<layout class="QHBoxLayout" name="default_epoch_layout">
|
|
3605
|
+
<item>
|
|
3606
|
+
<spacer name="horizontalSpacer_71">
|
|
3607
|
+
<property name="orientation">
|
|
3608
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3609
|
+
</property>
|
|
3610
|
+
<property name="sizeType">
|
|
3611
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3612
|
+
</property>
|
|
3613
|
+
<property name="sizeHint" stdset="0">
|
|
3614
|
+
<size>
|
|
3615
|
+
<width>10</width>
|
|
3616
|
+
<height>10</height>
|
|
3617
|
+
</size>
|
|
3618
|
+
</property>
|
|
3619
|
+
</spacer>
|
|
3620
|
+
</item>
|
|
3621
|
+
<item>
|
|
3622
|
+
<layout class="QHBoxLayout" name="horizontalLayout_60">
|
|
3623
|
+
<item>
|
|
3624
|
+
<widget class="QLabel" name="label_17">
|
|
3625
|
+
<property name="sizePolicy">
|
|
3626
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
3627
|
+
<horstretch>0</horstretch>
|
|
3628
|
+
<verstretch>0</verstretch>
|
|
3629
|
+
</sizepolicy>
|
|
3630
|
+
</property>
|
|
3631
|
+
<property name="text">
|
|
3632
|
+
<string>Default epoch length:</string>
|
|
3633
|
+
</property>
|
|
3634
|
+
</widget>
|
|
3635
|
+
</item>
|
|
3636
|
+
<item>
|
|
3637
|
+
<widget class="QDoubleSpinBox" name="default_epoch_input">
|
|
3638
|
+
<property name="sizePolicy">
|
|
3639
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
3640
|
+
<horstretch>0</horstretch>
|
|
3641
|
+
<verstretch>0</verstretch>
|
|
3642
|
+
</sizepolicy>
|
|
3643
|
+
</property>
|
|
3644
|
+
<property name="maximum">
|
|
3645
|
+
<double>100000.000000000000000</double>
|
|
3646
|
+
</property>
|
|
3647
|
+
<property name="singleStep">
|
|
3648
|
+
<double>0.500000000000000</double>
|
|
3649
|
+
</property>
|
|
3650
|
+
</widget>
|
|
3651
|
+
</item>
|
|
3652
|
+
</layout>
|
|
3653
|
+
</item>
|
|
3654
|
+
<item>
|
|
3655
|
+
<spacer name="horizontalSpacer_70">
|
|
3656
|
+
<property name="orientation">
|
|
3657
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3658
|
+
</property>
|
|
3659
|
+
<property name="sizeType">
|
|
3660
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3661
|
+
</property>
|
|
3662
|
+
<property name="sizeHint" stdset="0">
|
|
3663
|
+
<size>
|
|
3664
|
+
<width>10</width>
|
|
3665
|
+
<height>10</height>
|
|
3666
|
+
</size>
|
|
3667
|
+
</property>
|
|
3668
|
+
</spacer>
|
|
3669
|
+
</item>
|
|
3670
|
+
</layout>
|
|
3671
|
+
</item>
|
|
3672
|
+
<item>
|
|
3673
|
+
<layout class="QHBoxLayout" name="confidence_score_setting_layout">
|
|
3674
|
+
<item>
|
|
3675
|
+
<spacer name="horizontalSpacer_73">
|
|
3676
|
+
<property name="orientation">
|
|
3677
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3678
|
+
</property>
|
|
3679
|
+
<property name="sizeType">
|
|
3680
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3681
|
+
</property>
|
|
3682
|
+
<property name="sizeHint" stdset="0">
|
|
3683
|
+
<size>
|
|
3684
|
+
<width>10</width>
|
|
3685
|
+
<height>10</height>
|
|
3686
|
+
</size>
|
|
3687
|
+
</property>
|
|
3688
|
+
</spacer>
|
|
3689
|
+
</item>
|
|
3690
|
+
<item>
|
|
3691
|
+
<layout class="QHBoxLayout" name="horizontalLayout_62">
|
|
3692
|
+
<item>
|
|
3693
|
+
<widget class="QCheckBox" name="confidence_setting_checkbox">
|
|
3694
|
+
<property name="sizePolicy">
|
|
3695
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
3696
|
+
<horstretch>0</horstretch>
|
|
3697
|
+
<verstretch>0</verstretch>
|
|
3698
|
+
</sizepolicy>
|
|
3699
|
+
</property>
|
|
3700
|
+
<property name="text">
|
|
3701
|
+
<string>Save confidence scores by default</string>
|
|
3702
|
+
</property>
|
|
3703
|
+
<property name="checked">
|
|
3704
|
+
<bool>true</bool>
|
|
3705
|
+
</property>
|
|
3706
|
+
</widget>
|
|
3707
|
+
</item>
|
|
3708
|
+
</layout>
|
|
3709
|
+
</item>
|
|
3710
|
+
<item>
|
|
3711
|
+
<spacer name="horizontalSpacer_72">
|
|
3712
|
+
<property name="orientation">
|
|
3713
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3714
|
+
</property>
|
|
3715
|
+
<property name="sizeType">
|
|
3716
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3717
|
+
</property>
|
|
3718
|
+
<property name="sizeHint" stdset="0">
|
|
3719
|
+
<size>
|
|
3720
|
+
<width>10</width>
|
|
3721
|
+
<height>10</height>
|
|
3722
|
+
</size>
|
|
3723
|
+
</property>
|
|
3724
|
+
</spacer>
|
|
3725
|
+
</item>
|
|
3726
|
+
</layout>
|
|
3727
|
+
</item>
|
|
3728
|
+
<item>
|
|
3729
|
+
<layout class="QHBoxLayout" name="horizontalLayout_18" stretch="6,1,7">
|
|
3730
|
+
<property name="spacing">
|
|
3731
|
+
<number>10</number>
|
|
3732
|
+
</property>
|
|
3733
|
+
<item>
|
|
3734
|
+
<spacer name="horizontalSpacer_9">
|
|
3735
|
+
<property name="orientation">
|
|
3736
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
3737
|
+
</property>
|
|
3738
|
+
<property name="sizeType">
|
|
3739
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
3740
|
+
</property>
|
|
3741
|
+
<property name="sizeHint" stdset="0">
|
|
3742
|
+
<size>
|
|
3743
|
+
<width>10</width>
|
|
3744
|
+
<height>5</height>
|
|
3745
|
+
</size>
|
|
3746
|
+
</property>
|
|
3747
|
+
</spacer>
|
|
3748
|
+
</item>
|
|
3749
|
+
<item>
|
|
3750
|
+
<widget class="QPushButton" name="save_config_button">
|
|
3751
|
+
<property name="sizePolicy">
|
|
3752
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
3753
|
+
<horstretch>0</horstretch>
|
|
3754
|
+
<verstretch>0</verstretch>
|
|
3755
|
+
</sizepolicy>
|
|
3756
|
+
</property>
|
|
3757
|
+
<property name="toolTip">
|
|
3758
|
+
<string>Save current configuration</string>
|
|
3759
|
+
</property>
|
|
3760
|
+
<property name="text">
|
|
3761
|
+
<string>Save</string>
|
|
3762
|
+
</property>
|
|
3763
|
+
</widget>
|
|
3764
|
+
</item>
|
|
3765
|
+
<item>
|
|
3766
|
+
<widget class="QLabel" name="save_config_status">
|
|
3767
|
+
<property name="sizePolicy">
|
|
3768
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
3769
|
+
<horstretch>0</horstretch>
|
|
3770
|
+
<verstretch>0</verstretch>
|
|
3771
|
+
</sizepolicy>
|
|
3772
|
+
</property>
|
|
3773
|
+
<property name="styleSheet">
|
|
3774
|
+
<string notr="true">background-color: transparent;</string>
|
|
3775
|
+
</property>
|
|
3776
|
+
<property name="text">
|
|
3777
|
+
<string/>
|
|
3778
|
+
</property>
|
|
3779
|
+
</widget>
|
|
3780
|
+
</item>
|
|
3781
|
+
</layout>
|
|
3782
|
+
</item>
|
|
3783
|
+
</layout>
|
|
3784
|
+
</item>
|
|
3785
|
+
<item row="1" column="1">
|
|
3786
|
+
<spacer name="verticalSpacer">
|
|
3787
|
+
<property name="orientation">
|
|
3788
|
+
<enum>Qt::Orientation::Vertical</enum>
|
|
3789
|
+
</property>
|
|
3790
|
+
<property name="sizeType">
|
|
3791
|
+
<enum>QSizePolicy::Policy::Expanding</enum>
|
|
3792
|
+
</property>
|
|
3793
|
+
<property name="sizeHint" stdset="0">
|
|
3794
|
+
<size>
|
|
3795
|
+
<width>5</width>
|
|
3796
|
+
<height>30</height>
|
|
3797
|
+
</size>
|
|
3798
|
+
</property>
|
|
3799
|
+
</spacer>
|
|
3800
|
+
</item>
|
|
3801
|
+
</layout>
|
|
3802
|
+
</item>
|
|
3803
|
+
</layout>
|
|
3804
|
+
</widget>
|
|
3805
|
+
</widget>
|
|
3806
|
+
</item>
|
|
3807
|
+
</layout>
|
|
3808
|
+
</widget>
|
|
3809
|
+
</widget>
|
|
3810
|
+
<tabstops>
|
|
3811
|
+
<tabstop>epoch_length_input</tabstop>
|
|
3812
|
+
<tabstop>sampling_rate_input</tabstop>
|
|
3813
|
+
<tabstop>recording_file_button</tabstop>
|
|
3814
|
+
<tabstop>select_label_button</tabstop>
|
|
3815
|
+
<tabstop>create_label_button</tabstop>
|
|
3816
|
+
<tabstop>manual_scoring_button</tabstop>
|
|
3817
|
+
<tabstop>create_calibration_button</tabstop>
|
|
3818
|
+
<tabstop>add_button</tabstop>
|
|
3819
|
+
<tabstop>remove_button</tabstop>
|
|
3820
|
+
<tabstop>select_calibration_button</tabstop>
|
|
3821
|
+
<tabstop>load_model_button</tabstop>
|
|
3822
|
+
<tabstop>score_all_button</tabstop>
|
|
3823
|
+
<tabstop>user_manual_button</tabstop>
|
|
3824
|
+
<tabstop>recording_list_widget</tabstop>
|
|
3825
|
+
<tabstop>message_area</tabstop>
|
|
3826
|
+
</tabstops>
|
|
3827
|
+
<resources>
|
|
3828
|
+
<include location="resources.qrc"/>
|
|
3829
|
+
</resources>
|
|
3830
|
+
<connections/>
|
|
3831
|
+
</ui>
|