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,926 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<ui version="4.0">
|
|
3
|
+
<class>ViewerWindow</class>
|
|
4
|
+
<widget class="QDialog" name="ViewerWindow">
|
|
5
|
+
<property name="geometry">
|
|
6
|
+
<rect>
|
|
7
|
+
<x>0</x>
|
|
8
|
+
<y>0</y>
|
|
9
|
+
<width>1200</width>
|
|
10
|
+
<height>700</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="styleSheet">
|
|
20
|
+
<string notr="true">background-color: white;</string>
|
|
21
|
+
</property>
|
|
22
|
+
<layout class="QHBoxLayout" name="horizontalLayout" stretch="20,1">
|
|
23
|
+
<item>
|
|
24
|
+
<layout class="QVBoxLayout" name="all_plots" stretch="50,1,50">
|
|
25
|
+
<property name="spacing">
|
|
26
|
+
<number>1</number>
|
|
27
|
+
</property>
|
|
28
|
+
<property name="sizeConstraint">
|
|
29
|
+
<enum>QLayout::SizeConstraint::SetMinimumSize</enum>
|
|
30
|
+
</property>
|
|
31
|
+
<item>
|
|
32
|
+
<widget class="MplWidget" name="upperfigure" native="true">
|
|
33
|
+
<property name="sizePolicy">
|
|
34
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
35
|
+
<horstretch>0</horstretch>
|
|
36
|
+
<verstretch>0</verstretch>
|
|
37
|
+
</sizepolicy>
|
|
38
|
+
</property>
|
|
39
|
+
<property name="autoFillBackground">
|
|
40
|
+
<bool>false</bool>
|
|
41
|
+
</property>
|
|
42
|
+
</widget>
|
|
43
|
+
</item>
|
|
44
|
+
<item>
|
|
45
|
+
<widget class="Line" name="line">
|
|
46
|
+
<property name="lineWidth">
|
|
47
|
+
<number>2</number>
|
|
48
|
+
</property>
|
|
49
|
+
<property name="orientation">
|
|
50
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
|
51
|
+
</property>
|
|
52
|
+
</widget>
|
|
53
|
+
</item>
|
|
54
|
+
<item>
|
|
55
|
+
<widget class="MplWidget" name="lowerfigure" native="true">
|
|
56
|
+
<property name="sizePolicy">
|
|
57
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
58
|
+
<horstretch>0</horstretch>
|
|
59
|
+
<verstretch>0</verstretch>
|
|
60
|
+
</sizepolicy>
|
|
61
|
+
</property>
|
|
62
|
+
<property name="autoFillBackground">
|
|
63
|
+
<bool>false</bool>
|
|
64
|
+
</property>
|
|
65
|
+
</widget>
|
|
66
|
+
</item>
|
|
67
|
+
</layout>
|
|
68
|
+
</item>
|
|
69
|
+
<item>
|
|
70
|
+
<layout class="QVBoxLayout" name="all_controls" stretch="50,1,50">
|
|
71
|
+
<property name="spacing">
|
|
72
|
+
<number>20</number>
|
|
73
|
+
</property>
|
|
74
|
+
<property name="sizeConstraint">
|
|
75
|
+
<enum>QLayout::SizeConstraint::SetDefaultConstraint</enum>
|
|
76
|
+
</property>
|
|
77
|
+
<item>
|
|
78
|
+
<layout class="QVBoxLayout" name="top_plot_buttons" stretch="2,5,5,12,12">
|
|
79
|
+
<item>
|
|
80
|
+
<spacer name="topcontroltopspacer">
|
|
81
|
+
<property name="orientation">
|
|
82
|
+
<enum>Qt::Orientation::Vertical</enum>
|
|
83
|
+
</property>
|
|
84
|
+
<property name="sizeType">
|
|
85
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
86
|
+
</property>
|
|
87
|
+
<property name="sizeHint" stdset="0">
|
|
88
|
+
<size>
|
|
89
|
+
<width>5</width>
|
|
90
|
+
<height>10</height>
|
|
91
|
+
</size>
|
|
92
|
+
</property>
|
|
93
|
+
</spacer>
|
|
94
|
+
</item>
|
|
95
|
+
<item>
|
|
96
|
+
<layout class="QHBoxLayout" name="save_help_buttons">
|
|
97
|
+
<property name="spacing">
|
|
98
|
+
<number>20</number>
|
|
99
|
+
</property>
|
|
100
|
+
<property name="sizeConstraint">
|
|
101
|
+
<enum>QLayout::SizeConstraint::SetDefaultConstraint</enum>
|
|
102
|
+
</property>
|
|
103
|
+
<item>
|
|
104
|
+
<widget class="QPushButton" name="savebutton">
|
|
105
|
+
<property name="sizePolicy">
|
|
106
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
107
|
+
<horstretch>0</horstretch>
|
|
108
|
+
<verstretch>0</verstretch>
|
|
109
|
+
</sizepolicy>
|
|
110
|
+
</property>
|
|
111
|
+
<property name="toolTip">
|
|
112
|
+
<string>Save labels (Ctrl+S)</string>
|
|
113
|
+
</property>
|
|
114
|
+
<property name="styleSheet">
|
|
115
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
116
|
+
</property>
|
|
117
|
+
<property name="text">
|
|
118
|
+
<string/>
|
|
119
|
+
</property>
|
|
120
|
+
<property name="icon">
|
|
121
|
+
<iconset resource="resources.qrc">
|
|
122
|
+
<normaloff>:/icons/save.png</normaloff>:/icons/save.png</iconset>
|
|
123
|
+
</property>
|
|
124
|
+
<property name="iconSize">
|
|
125
|
+
<size>
|
|
126
|
+
<width>28</width>
|
|
127
|
+
<height>28</height>
|
|
128
|
+
</size>
|
|
129
|
+
</property>
|
|
130
|
+
<property name="autoRepeat">
|
|
131
|
+
<bool>true</bool>
|
|
132
|
+
</property>
|
|
133
|
+
</widget>
|
|
134
|
+
</item>
|
|
135
|
+
<item>
|
|
136
|
+
<widget class="QPushButton" name="helpbutton">
|
|
137
|
+
<property name="sizePolicy">
|
|
138
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
139
|
+
<horstretch>0</horstretch>
|
|
140
|
+
<verstretch>0</verstretch>
|
|
141
|
+
</sizepolicy>
|
|
142
|
+
</property>
|
|
143
|
+
<property name="toolTip">
|
|
144
|
+
<string>User manual</string>
|
|
145
|
+
</property>
|
|
146
|
+
<property name="styleSheet">
|
|
147
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
148
|
+
</property>
|
|
149
|
+
<property name="text">
|
|
150
|
+
<string/>
|
|
151
|
+
</property>
|
|
152
|
+
<property name="icon">
|
|
153
|
+
<iconset resource="resources.qrc">
|
|
154
|
+
<normaloff>:/icons/question.png</normaloff>:/icons/question.png</iconset>
|
|
155
|
+
</property>
|
|
156
|
+
<property name="iconSize">
|
|
157
|
+
<size>
|
|
158
|
+
<width>28</width>
|
|
159
|
+
<height>28</height>
|
|
160
|
+
</size>
|
|
161
|
+
</property>
|
|
162
|
+
<property name="autoRepeat">
|
|
163
|
+
<bool>true</bool>
|
|
164
|
+
</property>
|
|
165
|
+
</widget>
|
|
166
|
+
</item>
|
|
167
|
+
</layout>
|
|
168
|
+
</item>
|
|
169
|
+
<item>
|
|
170
|
+
<spacer name="topcontrolmidspacer">
|
|
171
|
+
<property name="orientation">
|
|
172
|
+
<enum>Qt::Orientation::Vertical</enum>
|
|
173
|
+
</property>
|
|
174
|
+
<property name="sizeType">
|
|
175
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
176
|
+
</property>
|
|
177
|
+
<property name="sizeHint" stdset="0">
|
|
178
|
+
<size>
|
|
179
|
+
<width>5</width>
|
|
180
|
+
<height>5</height>
|
|
181
|
+
</size>
|
|
182
|
+
</property>
|
|
183
|
+
</spacer>
|
|
184
|
+
</item>
|
|
185
|
+
<item>
|
|
186
|
+
<layout class="QVBoxLayout" name="zoom_and_brightness">
|
|
187
|
+
<item>
|
|
188
|
+
<spacer name="verticalSpacer_6">
|
|
189
|
+
<property name="orientation">
|
|
190
|
+
<enum>Qt::Orientation::Vertical</enum>
|
|
191
|
+
</property>
|
|
192
|
+
<property name="sizeType">
|
|
193
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
194
|
+
</property>
|
|
195
|
+
<property name="sizeHint" stdset="0">
|
|
196
|
+
<size>
|
|
197
|
+
<width>5</width>
|
|
198
|
+
<height>5</height>
|
|
199
|
+
</size>
|
|
200
|
+
</property>
|
|
201
|
+
</spacer>
|
|
202
|
+
</item>
|
|
203
|
+
<item>
|
|
204
|
+
<layout class="QHBoxLayout" name="brightness_buttons">
|
|
205
|
+
<item>
|
|
206
|
+
<widget class="QPushButton" name="specbrighter">
|
|
207
|
+
<property name="sizePolicy">
|
|
208
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
209
|
+
<horstretch>0</horstretch>
|
|
210
|
+
<verstretch>0</verstretch>
|
|
211
|
+
</sizepolicy>
|
|
212
|
+
</property>
|
|
213
|
+
<property name="toolTip">
|
|
214
|
+
<string>Increase brightness</string>
|
|
215
|
+
</property>
|
|
216
|
+
<property name="styleSheet">
|
|
217
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
218
|
+
</property>
|
|
219
|
+
<property name="text">
|
|
220
|
+
<string/>
|
|
221
|
+
</property>
|
|
222
|
+
<property name="icon">
|
|
223
|
+
<iconset resource="resources.qrc">
|
|
224
|
+
<normaloff>:/icons/brightness_up.png</normaloff>:/icons/brightness_up.png</iconset>
|
|
225
|
+
</property>
|
|
226
|
+
<property name="iconSize">
|
|
227
|
+
<size>
|
|
228
|
+
<width>24</width>
|
|
229
|
+
<height>24</height>
|
|
230
|
+
</size>
|
|
231
|
+
</property>
|
|
232
|
+
<property name="autoRepeat">
|
|
233
|
+
<bool>true</bool>
|
|
234
|
+
</property>
|
|
235
|
+
</widget>
|
|
236
|
+
</item>
|
|
237
|
+
<item>
|
|
238
|
+
<widget class="QPushButton" name="specdimmer">
|
|
239
|
+
<property name="sizePolicy">
|
|
240
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
241
|
+
<horstretch>0</horstretch>
|
|
242
|
+
<verstretch>0</verstretch>
|
|
243
|
+
</sizepolicy>
|
|
244
|
+
</property>
|
|
245
|
+
<property name="toolTip">
|
|
246
|
+
<string>Decrease brightness</string>
|
|
247
|
+
</property>
|
|
248
|
+
<property name="styleSheet">
|
|
249
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
250
|
+
</property>
|
|
251
|
+
<property name="text">
|
|
252
|
+
<string/>
|
|
253
|
+
</property>
|
|
254
|
+
<property name="icon">
|
|
255
|
+
<iconset resource="resources.qrc">
|
|
256
|
+
<normaloff>:/icons/brightness_down.png</normaloff>:/icons/brightness_down.png</iconset>
|
|
257
|
+
</property>
|
|
258
|
+
<property name="iconSize">
|
|
259
|
+
<size>
|
|
260
|
+
<width>24</width>
|
|
261
|
+
<height>24</height>
|
|
262
|
+
</size>
|
|
263
|
+
</property>
|
|
264
|
+
<property name="autoRepeat">
|
|
265
|
+
<bool>true</bool>
|
|
266
|
+
</property>
|
|
267
|
+
</widget>
|
|
268
|
+
</item>
|
|
269
|
+
</layout>
|
|
270
|
+
</item>
|
|
271
|
+
<item>
|
|
272
|
+
<layout class="QHBoxLayout" name="zoom_buttons">
|
|
273
|
+
<property name="sizeConstraint">
|
|
274
|
+
<enum>QLayout::SizeConstraint::SetDefaultConstraint</enum>
|
|
275
|
+
</property>
|
|
276
|
+
<property name="leftMargin">
|
|
277
|
+
<number>2</number>
|
|
278
|
+
</property>
|
|
279
|
+
<property name="rightMargin">
|
|
280
|
+
<number>2</number>
|
|
281
|
+
</property>
|
|
282
|
+
<item>
|
|
283
|
+
<widget class="QPushButton" name="xzoomin">
|
|
284
|
+
<property name="sizePolicy">
|
|
285
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
286
|
+
<horstretch>0</horstretch>
|
|
287
|
+
<verstretch>0</verstretch>
|
|
288
|
+
</sizepolicy>
|
|
289
|
+
</property>
|
|
290
|
+
<property name="toolTip">
|
|
291
|
+
<string>Zoom in (+)</string>
|
|
292
|
+
</property>
|
|
293
|
+
<property name="styleSheet">
|
|
294
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
295
|
+
</property>
|
|
296
|
+
<property name="text">
|
|
297
|
+
<string/>
|
|
298
|
+
</property>
|
|
299
|
+
<property name="icon">
|
|
300
|
+
<iconset resource="resources.qrc">
|
|
301
|
+
<normaloff>:/icons/zoom_in.png</normaloff>:/icons/zoom_in.png</iconset>
|
|
302
|
+
</property>
|
|
303
|
+
<property name="iconSize">
|
|
304
|
+
<size>
|
|
305
|
+
<width>20</width>
|
|
306
|
+
<height>20</height>
|
|
307
|
+
</size>
|
|
308
|
+
</property>
|
|
309
|
+
<property name="autoRepeat">
|
|
310
|
+
<bool>true</bool>
|
|
311
|
+
</property>
|
|
312
|
+
</widget>
|
|
313
|
+
</item>
|
|
314
|
+
<item>
|
|
315
|
+
<widget class="QPushButton" name="xzoomout">
|
|
316
|
+
<property name="sizePolicy">
|
|
317
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
318
|
+
<horstretch>0</horstretch>
|
|
319
|
+
<verstretch>0</verstretch>
|
|
320
|
+
</sizepolicy>
|
|
321
|
+
</property>
|
|
322
|
+
<property name="toolTip">
|
|
323
|
+
<string>Zoom out (-)</string>
|
|
324
|
+
</property>
|
|
325
|
+
<property name="styleSheet">
|
|
326
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
327
|
+
</property>
|
|
328
|
+
<property name="text">
|
|
329
|
+
<string/>
|
|
330
|
+
</property>
|
|
331
|
+
<property name="icon">
|
|
332
|
+
<iconset resource="resources.qrc">
|
|
333
|
+
<normaloff>:/icons/zoom_out.png</normaloff>:/icons/zoom_out.png</iconset>
|
|
334
|
+
</property>
|
|
335
|
+
<property name="iconSize">
|
|
336
|
+
<size>
|
|
337
|
+
<width>20</width>
|
|
338
|
+
<height>20</height>
|
|
339
|
+
</size>
|
|
340
|
+
</property>
|
|
341
|
+
<property name="autoRepeat">
|
|
342
|
+
<bool>true</bool>
|
|
343
|
+
</property>
|
|
344
|
+
</widget>
|
|
345
|
+
</item>
|
|
346
|
+
<item>
|
|
347
|
+
<widget class="QPushButton" name="xzoomreset">
|
|
348
|
+
<property name="sizePolicy">
|
|
349
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
350
|
+
<horstretch>0</horstretch>
|
|
351
|
+
<verstretch>0</verstretch>
|
|
352
|
+
</sizepolicy>
|
|
353
|
+
</property>
|
|
354
|
+
<property name="toolTip">
|
|
355
|
+
<string>Reset zoom</string>
|
|
356
|
+
</property>
|
|
357
|
+
<property name="styleSheet">
|
|
358
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
359
|
+
</property>
|
|
360
|
+
<property name="text">
|
|
361
|
+
<string/>
|
|
362
|
+
</property>
|
|
363
|
+
<property name="icon">
|
|
364
|
+
<iconset resource="resources.qrc">
|
|
365
|
+
<normaloff>:/icons/home.png</normaloff>:/icons/home.png</iconset>
|
|
366
|
+
</property>
|
|
367
|
+
<property name="iconSize">
|
|
368
|
+
<size>
|
|
369
|
+
<width>20</width>
|
|
370
|
+
<height>20</height>
|
|
371
|
+
</size>
|
|
372
|
+
</property>
|
|
373
|
+
<property name="autoRepeat">
|
|
374
|
+
<bool>true</bool>
|
|
375
|
+
</property>
|
|
376
|
+
</widget>
|
|
377
|
+
</item>
|
|
378
|
+
</layout>
|
|
379
|
+
</item>
|
|
380
|
+
<item>
|
|
381
|
+
<spacer name="verticalSpacer_7">
|
|
382
|
+
<property name="orientation">
|
|
383
|
+
<enum>Qt::Orientation::Vertical</enum>
|
|
384
|
+
</property>
|
|
385
|
+
<property name="sizeType">
|
|
386
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
387
|
+
</property>
|
|
388
|
+
<property name="sizeHint" stdset="0">
|
|
389
|
+
<size>
|
|
390
|
+
<width>5</width>
|
|
391
|
+
<height>5</height>
|
|
392
|
+
</size>
|
|
393
|
+
</property>
|
|
394
|
+
</spacer>
|
|
395
|
+
</item>
|
|
396
|
+
</layout>
|
|
397
|
+
</item>
|
|
398
|
+
<item>
|
|
399
|
+
<spacer name="topcontrolbottomspacer">
|
|
400
|
+
<property name="orientation">
|
|
401
|
+
<enum>Qt::Orientation::Vertical</enum>
|
|
402
|
+
</property>
|
|
403
|
+
<property name="sizeType">
|
|
404
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
405
|
+
</property>
|
|
406
|
+
<property name="sizeHint" stdset="0">
|
|
407
|
+
<size>
|
|
408
|
+
<width>5</width>
|
|
409
|
+
<height>5</height>
|
|
410
|
+
</size>
|
|
411
|
+
</property>
|
|
412
|
+
</spacer>
|
|
413
|
+
</item>
|
|
414
|
+
</layout>
|
|
415
|
+
</item>
|
|
416
|
+
<item>
|
|
417
|
+
<spacer name="allcontrolmidspacer">
|
|
418
|
+
<property name="orientation">
|
|
419
|
+
<enum>Qt::Orientation::Vertical</enum>
|
|
420
|
+
</property>
|
|
421
|
+
<property name="sizeType">
|
|
422
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
423
|
+
</property>
|
|
424
|
+
<property name="sizeHint" stdset="0">
|
|
425
|
+
<size>
|
|
426
|
+
<width>5</width>
|
|
427
|
+
<height>5</height>
|
|
428
|
+
</size>
|
|
429
|
+
</property>
|
|
430
|
+
</spacer>
|
|
431
|
+
</item>
|
|
432
|
+
<item>
|
|
433
|
+
<layout class="QVBoxLayout" name="bottom_plot_buttons" stretch="1,6,1,3,1,4,1">
|
|
434
|
+
<item>
|
|
435
|
+
<spacer name="verticalSpacer_3">
|
|
436
|
+
<property name="orientation">
|
|
437
|
+
<enum>Qt::Orientation::Vertical</enum>
|
|
438
|
+
</property>
|
|
439
|
+
<property name="sizeType">
|
|
440
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
441
|
+
</property>
|
|
442
|
+
<property name="sizeHint" stdset="0">
|
|
443
|
+
<size>
|
|
444
|
+
<width>5</width>
|
|
445
|
+
<height>5</height>
|
|
446
|
+
</size>
|
|
447
|
+
</property>
|
|
448
|
+
</spacer>
|
|
449
|
+
</item>
|
|
450
|
+
<item>
|
|
451
|
+
<layout class="QVBoxLayout" name="eeg_emg_buttons">
|
|
452
|
+
<property name="spacing">
|
|
453
|
+
<number>20</number>
|
|
454
|
+
</property>
|
|
455
|
+
<item>
|
|
456
|
+
<layout class="QGridLayout" name="eegbuttons">
|
|
457
|
+
<property name="horizontalSpacing">
|
|
458
|
+
<number>10</number>
|
|
459
|
+
</property>
|
|
460
|
+
<property name="verticalSpacing">
|
|
461
|
+
<number>20</number>
|
|
462
|
+
</property>
|
|
463
|
+
<item row="0" column="1">
|
|
464
|
+
<widget class="QPushButton" name="eegshiftup">
|
|
465
|
+
<property name="sizePolicy">
|
|
466
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
467
|
+
<horstretch>0</horstretch>
|
|
468
|
+
<verstretch>0</verstretch>
|
|
469
|
+
</sizepolicy>
|
|
470
|
+
</property>
|
|
471
|
+
<property name="toolTip">
|
|
472
|
+
<string>Shift signal up</string>
|
|
473
|
+
</property>
|
|
474
|
+
<property name="styleSheet">
|
|
475
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
476
|
+
</property>
|
|
477
|
+
<property name="text">
|
|
478
|
+
<string/>
|
|
479
|
+
</property>
|
|
480
|
+
<property name="icon">
|
|
481
|
+
<iconset resource="resources.qrc">
|
|
482
|
+
<normaloff>:/icons/double_up_arrow.png</normaloff>:/icons/double_up_arrow.png</iconset>
|
|
483
|
+
</property>
|
|
484
|
+
<property name="iconSize">
|
|
485
|
+
<size>
|
|
486
|
+
<width>20</width>
|
|
487
|
+
<height>20</height>
|
|
488
|
+
</size>
|
|
489
|
+
</property>
|
|
490
|
+
<property name="autoRepeat">
|
|
491
|
+
<bool>true</bool>
|
|
492
|
+
</property>
|
|
493
|
+
</widget>
|
|
494
|
+
</item>
|
|
495
|
+
<item row="1" column="0">
|
|
496
|
+
<widget class="QPushButton" name="eegzoomout">
|
|
497
|
+
<property name="sizePolicy">
|
|
498
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
499
|
+
<horstretch>0</horstretch>
|
|
500
|
+
<verstretch>0</verstretch>
|
|
501
|
+
</sizepolicy>
|
|
502
|
+
</property>
|
|
503
|
+
<property name="toolTip">
|
|
504
|
+
<string>Scale signal down</string>
|
|
505
|
+
</property>
|
|
506
|
+
<property name="styleSheet">
|
|
507
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
508
|
+
</property>
|
|
509
|
+
<property name="text">
|
|
510
|
+
<string/>
|
|
511
|
+
</property>
|
|
512
|
+
<property name="icon">
|
|
513
|
+
<iconset resource="resources.qrc">
|
|
514
|
+
<normaloff>:/icons/zoom_out.png</normaloff>:/icons/zoom_out.png</iconset>
|
|
515
|
+
</property>
|
|
516
|
+
<property name="iconSize">
|
|
517
|
+
<size>
|
|
518
|
+
<width>20</width>
|
|
519
|
+
<height>20</height>
|
|
520
|
+
</size>
|
|
521
|
+
</property>
|
|
522
|
+
<property name="autoRepeat">
|
|
523
|
+
<bool>true</bool>
|
|
524
|
+
</property>
|
|
525
|
+
</widget>
|
|
526
|
+
</item>
|
|
527
|
+
<item row="1" column="1">
|
|
528
|
+
<widget class="QPushButton" name="eegshiftdown">
|
|
529
|
+
<property name="sizePolicy">
|
|
530
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
531
|
+
<horstretch>0</horstretch>
|
|
532
|
+
<verstretch>0</verstretch>
|
|
533
|
+
</sizepolicy>
|
|
534
|
+
</property>
|
|
535
|
+
<property name="toolTip">
|
|
536
|
+
<string>Shift signal down</string>
|
|
537
|
+
</property>
|
|
538
|
+
<property name="styleSheet">
|
|
539
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
540
|
+
</property>
|
|
541
|
+
<property name="text">
|
|
542
|
+
<string/>
|
|
543
|
+
</property>
|
|
544
|
+
<property name="icon">
|
|
545
|
+
<iconset resource="resources.qrc">
|
|
546
|
+
<normaloff>:/icons/double_down_arrow.png</normaloff>:/icons/double_down_arrow.png</iconset>
|
|
547
|
+
</property>
|
|
548
|
+
<property name="iconSize">
|
|
549
|
+
<size>
|
|
550
|
+
<width>20</width>
|
|
551
|
+
<height>20</height>
|
|
552
|
+
</size>
|
|
553
|
+
</property>
|
|
554
|
+
<property name="autoRepeat">
|
|
555
|
+
<bool>true</bool>
|
|
556
|
+
</property>
|
|
557
|
+
</widget>
|
|
558
|
+
</item>
|
|
559
|
+
<item row="0" column="0">
|
|
560
|
+
<widget class="QPushButton" name="eegzoomin">
|
|
561
|
+
<property name="sizePolicy">
|
|
562
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
563
|
+
<horstretch>0</horstretch>
|
|
564
|
+
<verstretch>0</verstretch>
|
|
565
|
+
</sizepolicy>
|
|
566
|
+
</property>
|
|
567
|
+
<property name="toolTip">
|
|
568
|
+
<string>Scale signal up</string>
|
|
569
|
+
</property>
|
|
570
|
+
<property name="styleSheet">
|
|
571
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
572
|
+
</property>
|
|
573
|
+
<property name="text">
|
|
574
|
+
<string/>
|
|
575
|
+
</property>
|
|
576
|
+
<property name="icon">
|
|
577
|
+
<iconset resource="resources.qrc">
|
|
578
|
+
<normaloff>:/icons/zoom_in.png</normaloff>:/icons/zoom_in.png</iconset>
|
|
579
|
+
</property>
|
|
580
|
+
<property name="iconSize">
|
|
581
|
+
<size>
|
|
582
|
+
<width>20</width>
|
|
583
|
+
<height>20</height>
|
|
584
|
+
</size>
|
|
585
|
+
</property>
|
|
586
|
+
<property name="autoRepeat">
|
|
587
|
+
<bool>true</bool>
|
|
588
|
+
</property>
|
|
589
|
+
</widget>
|
|
590
|
+
</item>
|
|
591
|
+
</layout>
|
|
592
|
+
</item>
|
|
593
|
+
<item>
|
|
594
|
+
<spacer name="verticalSpacer_5">
|
|
595
|
+
<property name="orientation">
|
|
596
|
+
<enum>Qt::Orientation::Vertical</enum>
|
|
597
|
+
</property>
|
|
598
|
+
<property name="sizeType">
|
|
599
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
600
|
+
</property>
|
|
601
|
+
<property name="sizeHint" stdset="0">
|
|
602
|
+
<size>
|
|
603
|
+
<width>5</width>
|
|
604
|
+
<height>5</height>
|
|
605
|
+
</size>
|
|
606
|
+
</property>
|
|
607
|
+
</spacer>
|
|
608
|
+
</item>
|
|
609
|
+
<item>
|
|
610
|
+
<layout class="QGridLayout" name="emgbuttons">
|
|
611
|
+
<property name="horizontalSpacing">
|
|
612
|
+
<number>10</number>
|
|
613
|
+
</property>
|
|
614
|
+
<property name="verticalSpacing">
|
|
615
|
+
<number>20</number>
|
|
616
|
+
</property>
|
|
617
|
+
<item row="0" column="0">
|
|
618
|
+
<widget class="QPushButton" name="emgzoomin">
|
|
619
|
+
<property name="sizePolicy">
|
|
620
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
621
|
+
<horstretch>0</horstretch>
|
|
622
|
+
<verstretch>0</verstretch>
|
|
623
|
+
</sizepolicy>
|
|
624
|
+
</property>
|
|
625
|
+
<property name="styleSheet">
|
|
626
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
627
|
+
</property>
|
|
628
|
+
<property name="text">
|
|
629
|
+
<string/>
|
|
630
|
+
</property>
|
|
631
|
+
<property name="icon">
|
|
632
|
+
<iconset resource="resources.qrc">
|
|
633
|
+
<normaloff>:/icons/zoom_in.png</normaloff>:/icons/zoom_in.png</iconset>
|
|
634
|
+
</property>
|
|
635
|
+
<property name="iconSize">
|
|
636
|
+
<size>
|
|
637
|
+
<width>20</width>
|
|
638
|
+
<height>20</height>
|
|
639
|
+
</size>
|
|
640
|
+
</property>
|
|
641
|
+
<property name="autoRepeat">
|
|
642
|
+
<bool>true</bool>
|
|
643
|
+
</property>
|
|
644
|
+
</widget>
|
|
645
|
+
</item>
|
|
646
|
+
<item row="1" column="1">
|
|
647
|
+
<widget class="QPushButton" name="emgshiftdown">
|
|
648
|
+
<property name="sizePolicy">
|
|
649
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
650
|
+
<horstretch>0</horstretch>
|
|
651
|
+
<verstretch>0</verstretch>
|
|
652
|
+
</sizepolicy>
|
|
653
|
+
</property>
|
|
654
|
+
<property name="styleSheet">
|
|
655
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
656
|
+
</property>
|
|
657
|
+
<property name="text">
|
|
658
|
+
<string/>
|
|
659
|
+
</property>
|
|
660
|
+
<property name="icon">
|
|
661
|
+
<iconset resource="resources.qrc">
|
|
662
|
+
<normaloff>:/icons/double_down_arrow.png</normaloff>:/icons/double_down_arrow.png</iconset>
|
|
663
|
+
</property>
|
|
664
|
+
<property name="iconSize">
|
|
665
|
+
<size>
|
|
666
|
+
<width>20</width>
|
|
667
|
+
<height>20</height>
|
|
668
|
+
</size>
|
|
669
|
+
</property>
|
|
670
|
+
<property name="autoRepeat">
|
|
671
|
+
<bool>true</bool>
|
|
672
|
+
</property>
|
|
673
|
+
</widget>
|
|
674
|
+
</item>
|
|
675
|
+
<item row="0" column="1">
|
|
676
|
+
<widget class="QPushButton" name="emgshiftup">
|
|
677
|
+
<property name="sizePolicy">
|
|
678
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
679
|
+
<horstretch>0</horstretch>
|
|
680
|
+
<verstretch>0</verstretch>
|
|
681
|
+
</sizepolicy>
|
|
682
|
+
</property>
|
|
683
|
+
<property name="styleSheet">
|
|
684
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
685
|
+
</property>
|
|
686
|
+
<property name="text">
|
|
687
|
+
<string/>
|
|
688
|
+
</property>
|
|
689
|
+
<property name="icon">
|
|
690
|
+
<iconset resource="resources.qrc">
|
|
691
|
+
<normaloff>:/icons/double_up_arrow.png</normaloff>:/icons/double_up_arrow.png</iconset>
|
|
692
|
+
</property>
|
|
693
|
+
<property name="iconSize">
|
|
694
|
+
<size>
|
|
695
|
+
<width>20</width>
|
|
696
|
+
<height>20</height>
|
|
697
|
+
</size>
|
|
698
|
+
</property>
|
|
699
|
+
<property name="autoRepeat">
|
|
700
|
+
<bool>true</bool>
|
|
701
|
+
</property>
|
|
702
|
+
</widget>
|
|
703
|
+
</item>
|
|
704
|
+
<item row="1" column="0">
|
|
705
|
+
<widget class="QPushButton" name="emgzoomout">
|
|
706
|
+
<property name="sizePolicy">
|
|
707
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
708
|
+
<horstretch>0</horstretch>
|
|
709
|
+
<verstretch>0</verstretch>
|
|
710
|
+
</sizepolicy>
|
|
711
|
+
</property>
|
|
712
|
+
<property name="styleSheet">
|
|
713
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
714
|
+
</property>
|
|
715
|
+
<property name="text">
|
|
716
|
+
<string/>
|
|
717
|
+
</property>
|
|
718
|
+
<property name="icon">
|
|
719
|
+
<iconset resource="resources.qrc">
|
|
720
|
+
<normaloff>:/icons/zoom_out.png</normaloff>:/icons/zoom_out.png</iconset>
|
|
721
|
+
</property>
|
|
722
|
+
<property name="iconSize">
|
|
723
|
+
<size>
|
|
724
|
+
<width>20</width>
|
|
725
|
+
<height>20</height>
|
|
726
|
+
</size>
|
|
727
|
+
</property>
|
|
728
|
+
<property name="autoRepeat">
|
|
729
|
+
<bool>true</bool>
|
|
730
|
+
</property>
|
|
731
|
+
</widget>
|
|
732
|
+
</item>
|
|
733
|
+
</layout>
|
|
734
|
+
</item>
|
|
735
|
+
</layout>
|
|
736
|
+
</item>
|
|
737
|
+
<item>
|
|
738
|
+
<spacer name="verticalSpacer">
|
|
739
|
+
<property name="orientation">
|
|
740
|
+
<enum>Qt::Orientation::Vertical</enum>
|
|
741
|
+
</property>
|
|
742
|
+
<property name="sizeType">
|
|
743
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
744
|
+
</property>
|
|
745
|
+
<property name="sizeHint" stdset="0">
|
|
746
|
+
<size>
|
|
747
|
+
<width>5</width>
|
|
748
|
+
<height>5</height>
|
|
749
|
+
</size>
|
|
750
|
+
</property>
|
|
751
|
+
</spacer>
|
|
752
|
+
</item>
|
|
753
|
+
<item>
|
|
754
|
+
<layout class="QVBoxLayout" name="autoscroll_layout">
|
|
755
|
+
<property name="leftMargin">
|
|
756
|
+
<number>30</number>
|
|
757
|
+
</property>
|
|
758
|
+
<property name="rightMargin">
|
|
759
|
+
<number>20</number>
|
|
760
|
+
</property>
|
|
761
|
+
<item>
|
|
762
|
+
<widget class="QCheckBox" name="autoscroll">
|
|
763
|
+
<property name="sizePolicy">
|
|
764
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
765
|
+
<horstretch>0</horstretch>
|
|
766
|
+
<verstretch>0</verstretch>
|
|
767
|
+
</sizepolicy>
|
|
768
|
+
</property>
|
|
769
|
+
<property name="toolTip">
|
|
770
|
+
<string>Step forward when setting brain state</string>
|
|
771
|
+
</property>
|
|
772
|
+
<property name="text">
|
|
773
|
+
<string>Auto scroll</string>
|
|
774
|
+
</property>
|
|
775
|
+
</widget>
|
|
776
|
+
</item>
|
|
777
|
+
</layout>
|
|
778
|
+
</item>
|
|
779
|
+
<item>
|
|
780
|
+
<spacer name="verticalSpacer_2">
|
|
781
|
+
<property name="orientation">
|
|
782
|
+
<enum>Qt::Orientation::Vertical</enum>
|
|
783
|
+
</property>
|
|
784
|
+
<property name="sizeType">
|
|
785
|
+
<enum>QSizePolicy::Policy::Preferred</enum>
|
|
786
|
+
</property>
|
|
787
|
+
<property name="sizeHint" stdset="0">
|
|
788
|
+
<size>
|
|
789
|
+
<width>5</width>
|
|
790
|
+
<height>5</height>
|
|
791
|
+
</size>
|
|
792
|
+
</property>
|
|
793
|
+
</spacer>
|
|
794
|
+
</item>
|
|
795
|
+
<item>
|
|
796
|
+
<layout class="QGridLayout" name="epoch_controls" columnstretch="1,1">
|
|
797
|
+
<property name="horizontalSpacing">
|
|
798
|
+
<number>2</number>
|
|
799
|
+
</property>
|
|
800
|
+
<property name="verticalSpacing">
|
|
801
|
+
<number>10</number>
|
|
802
|
+
</property>
|
|
803
|
+
<item row="0" column="1">
|
|
804
|
+
<widget class="QLabel" name="shownepochslabel">
|
|
805
|
+
<property name="sizePolicy">
|
|
806
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
|
807
|
+
<horstretch>0</horstretch>
|
|
808
|
+
<verstretch>0</verstretch>
|
|
809
|
+
</sizepolicy>
|
|
810
|
+
</property>
|
|
811
|
+
<property name="text">
|
|
812
|
+
<string>5</string>
|
|
813
|
+
</property>
|
|
814
|
+
<property name="alignment">
|
|
815
|
+
<set>Qt::AlignmentFlag::AlignLeading|Qt::AlignmentFlag::AlignLeft|Qt::AlignmentFlag::AlignVCenter</set>
|
|
816
|
+
</property>
|
|
817
|
+
</widget>
|
|
818
|
+
</item>
|
|
819
|
+
<item row="0" column="0">
|
|
820
|
+
<widget class="QLabel" name="epochsword">
|
|
821
|
+
<property name="sizePolicy">
|
|
822
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
823
|
+
<horstretch>0</horstretch>
|
|
824
|
+
<verstretch>0</verstretch>
|
|
825
|
+
</sizepolicy>
|
|
826
|
+
</property>
|
|
827
|
+
<property name="text">
|
|
828
|
+
<string>Epochs:</string>
|
|
829
|
+
</property>
|
|
830
|
+
</widget>
|
|
831
|
+
</item>
|
|
832
|
+
<item row="1" column="1">
|
|
833
|
+
<widget class="QPushButton" name="shownepochsplus">
|
|
834
|
+
<property name="sizePolicy">
|
|
835
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
836
|
+
<horstretch>0</horstretch>
|
|
837
|
+
<verstretch>0</verstretch>
|
|
838
|
+
</sizepolicy>
|
|
839
|
+
</property>
|
|
840
|
+
<property name="styleSheet">
|
|
841
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
842
|
+
</property>
|
|
843
|
+
<property name="text">
|
|
844
|
+
<string/>
|
|
845
|
+
</property>
|
|
846
|
+
<property name="icon">
|
|
847
|
+
<iconset resource="resources.qrc">
|
|
848
|
+
<normaloff>:/icons/up_arrow.png</normaloff>:/icons/up_arrow.png</iconset>
|
|
849
|
+
</property>
|
|
850
|
+
<property name="iconSize">
|
|
851
|
+
<size>
|
|
852
|
+
<width>20</width>
|
|
853
|
+
<height>20</height>
|
|
854
|
+
</size>
|
|
855
|
+
</property>
|
|
856
|
+
<property name="autoRepeat">
|
|
857
|
+
<bool>false</bool>
|
|
858
|
+
</property>
|
|
859
|
+
</widget>
|
|
860
|
+
</item>
|
|
861
|
+
<item row="1" column="0">
|
|
862
|
+
<widget class="QPushButton" name="shownepochsminus">
|
|
863
|
+
<property name="sizePolicy">
|
|
864
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
865
|
+
<horstretch>0</horstretch>
|
|
866
|
+
<verstretch>0</verstretch>
|
|
867
|
+
</sizepolicy>
|
|
868
|
+
</property>
|
|
869
|
+
<property name="styleSheet">
|
|
870
|
+
<string notr="true">background-color: rgb(237, 241, 241);</string>
|
|
871
|
+
</property>
|
|
872
|
+
<property name="text">
|
|
873
|
+
<string/>
|
|
874
|
+
</property>
|
|
875
|
+
<property name="icon">
|
|
876
|
+
<iconset resource="resources.qrc">
|
|
877
|
+
<normaloff>:/icons/down_arrow.png</normaloff>:/icons/down_arrow.png</iconset>
|
|
878
|
+
</property>
|
|
879
|
+
<property name="iconSize">
|
|
880
|
+
<size>
|
|
881
|
+
<width>20</width>
|
|
882
|
+
<height>20</height>
|
|
883
|
+
</size>
|
|
884
|
+
</property>
|
|
885
|
+
<property name="autoRepeat">
|
|
886
|
+
<bool>false</bool>
|
|
887
|
+
</property>
|
|
888
|
+
</widget>
|
|
889
|
+
</item>
|
|
890
|
+
</layout>
|
|
891
|
+
</item>
|
|
892
|
+
<item>
|
|
893
|
+
<spacer name="verticalSpacer_4">
|
|
894
|
+
<property name="orientation">
|
|
895
|
+
<enum>Qt::Orientation::Vertical</enum>
|
|
896
|
+
</property>
|
|
897
|
+
<property name="sizeType">
|
|
898
|
+
<enum>QSizePolicy::Policy::Fixed</enum>
|
|
899
|
+
</property>
|
|
900
|
+
<property name="sizeHint" stdset="0">
|
|
901
|
+
<size>
|
|
902
|
+
<width>5</width>
|
|
903
|
+
<height>5</height>
|
|
904
|
+
</size>
|
|
905
|
+
</property>
|
|
906
|
+
</spacer>
|
|
907
|
+
</item>
|
|
908
|
+
</layout>
|
|
909
|
+
</item>
|
|
910
|
+
</layout>
|
|
911
|
+
</item>
|
|
912
|
+
</layout>
|
|
913
|
+
</widget>
|
|
914
|
+
<customwidgets>
|
|
915
|
+
<customwidget>
|
|
916
|
+
<class>MplWidget</class>
|
|
917
|
+
<extends>QWidget</extends>
|
|
918
|
+
<header>mplwidget</header>
|
|
919
|
+
<container>1</container>
|
|
920
|
+
</customwidget>
|
|
921
|
+
</customwidgets>
|
|
922
|
+
<resources>
|
|
923
|
+
<include location="resources.qrc"/>
|
|
924
|
+
</resources>
|
|
925
|
+
<connections/>
|
|
926
|
+
</ui>
|