forked from cculianu/SpikeGL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bug_ConfigDialog.ui
1321 lines (1321 loc) · 51.6 KB
/
Bug_ConfigDialog.ui
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Bug_ConfigDialog</class>
<widget class="QDialog" name="Bug_ConfigDialog">
<property name="windowModality">
<enum>Qt::ApplicationModal</enum>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>512</width>
<height>614</height>
</rect>
</property>
<property name="windowTitle">
<string>Configure Bug (Telemetry) Acquisition</string>
</property>
<property name="windowIcon">
<iconset>
<normaloff>../../../../.designer/backup/Icon-Config.xpm</normaloff>../../../../.designer/backup/Icon-Config.xpm</iconset>
</property>
<property name="toolTip">
<string/>
</property>
<property name="modal">
<bool>true</bool>
</property>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="geometry">
<rect>
<x>330</x>
<y>576</y>
<width>175</width>
<height>32</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
<widget class="QLabel" name="outputFileLabel">
<property name="geometry">
<rect>
<x>3</x>
<y>5</y>
<width>117</width>
<height>25</height>
</rect>
</property>
<property name="text">
<string>Output filename:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QLineEdit" name="outputFileLE">
<property name="geometry">
<rect>
<x>128</x>
<y>5</y>
<width>272</width>
<height>25</height>
</rect>
</property>
<property name="text">
<string>c:\blah</string>
</property>
</widget>
<widget class="QPushButton" name="browseBut">
<property name="geometry">
<rect>
<x>410</x>
<y>5</y>
<width>88</width>
<height>25</height>
</rect>
</property>
<property name="text">
<string>Browse...</string>
</property>
</widget>
<widget class="QLabel" name="acqRateLabel">
<property name="geometry">
<rect>
<x>5</x>
<y>173</y>
<width>117</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>The rate at which to acquire telemetry data.</p></body></html></string>
</property>
<property name="text">
<string>Acquisition Rate:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QComboBox" name="acqRateCB">
<property name="geometry">
<rect>
<x>130</x>
<y>173</y>
<width>147</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>The rate at which to acquire telemetry data.</p></body></html></string>
</property>
<property name="currentIndex">
<number>2</number>
</property>
<item>
<property name="text">
<string>Low (1.25 Mbps)</string>
</property>
</item>
<item>
<property name="text">
<string>Medium (2.5 Mbps)</string>
</property>
</item>
<item>
<property name="text">
<string>High (5.0 Mbps)</string>
</property>
</item>
</widget>
<widget class="QCheckBox" name="disableGraphsChk">
<property name="geometry">
<rect>
<x>246</x>
<y>382</y>
<width>261</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>Disabling graphing of data saves on CPU/GPU load. Graphs can be re-enabled at any time from the system tray.</p></body></html></string>
</property>
<property name="text">
<string>Disable data graphs (just save to disk)</string>
</property>
</widget>
<widget class="QLabel" name="ttlTrigLbl">
<property name="geometry">
<rect>
<x>282</x>
<y>173</y>
<width>80</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>If enabled, the TTL line to monitor to trigger the acquisition. Data file saving won't occur until the TTL line is high. The acquisition will stop when the line goes low again. Re-triggers increment the save file name based on the name specified in the 'output filename' box.</p></body></html></string>
</property>
<property name="text">
<string>Triggering:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QComboBox" name="ttlTrigCB">
<property name="geometry">
<rect>
<x>364</x>
<y>173</y>
<width>87</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>If enabled, the TTL line to monitor to trigger the acquisition. Data file saving won't occur until the TTL line is high. The acquisition will stop when the line goes low again. Re-triggers increment the save file name based on the name specified in the 'output filename' box.</p><p>An <span style=" font-style:italic;">AUX </span>line can also be specified, and for that the Threshold voltage should be set.</p><p>Additionally, NI-DAQ Analog Input lines are also supported (they appear at the bottom of the list). Their acquisition range gets set to -5 - +5 V. Set the threshold appropriately for such devices as well.</p></body></html></string>
</property>
<item>
<property name="text">
<string>Disabled</string>
</property>
</item>
<item>
<property name="text">
<string>AUX 0</string>
</property>
</item>
<item>
<property name="text">
<string>AUX 1</string>
</property>
</item>
<item>
<property name="text">
<string>TTL 0</string>
</property>
</item>
<item>
<property name="text">
<string>TTL 1</string>
</property>
</item>
<item>
<property name="text">
<string>TTL 2</string>
</property>
</item>
<item>
<property name="text">
<string>TTL 3</string>
</property>
</item>
<item>
<property name="text">
<string>TTL 4</string>
</property>
</item>
<item>
<property name="text">
<string>TTL 5</string>
</property>
</item>
<item>
<property name="text">
<string>TTL 6</string>
</property>
</item>
<item>
<property name="text">
<string>TTL 7</string>
</property>
</item>
<item>
<property name="text">
<string>TTL 8</string>
</property>
</item>
<item>
<property name="text">
<string>TTL 9</string>
</property>
</item>
<item>
<property name="text">
<string>TTL 10</string>
</property>
</item>
</widget>
<widget class="QComboBox" name="clkEdgeCB">
<property name="geometry">
<rect>
<x>131</x>
<y>142</y>
<width>121</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string>Specifies the clock edge detection for the clock line. </string>
</property>
<item>
<property name="text">
<string>Rising</string>
</property>
</item>
<item>
<property name="text">
<string>Falling</string>
</property>
</item>
</widget>
<widget class="QLabel" name="clkEdgeLbl">
<property name="geometry">
<rect>
<x>6</x>
<y>142</y>
<width>117</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string>Specifies the clock edge detection for the clock line. </string>
</property>
<property name="text">
<string>Clock Edge Det.:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QLineEdit" name="channelSubsetLE">
<property name="geometry">
<rect>
<x>131</x>
<y>110</y>
<width>366</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>This option is useful if you wish to save &amp; graph only a subset of the bug3 telemetry channels. </p><ul><li>The 10 'neural amp' channels are numbered 0-9. </li><li>The 4 'EMG amp' channels are numbered 10-13.</li><li>The 2 AUX channels are numbered 14-15.</li><li>The TTL channel (if enabled) is numbered 16.</li></ul><p>Ranges such as 0:16, or comma-separated-lists such as 1,2,3,4 are ok. * or 'ALL' or an empty string indicates all channels will be saved. </p><p>This option is remembered across subsequent runs of the program.</p></body></html></string>
</property>
<property name="text">
<string>*</string>
</property>
</widget>
<widget class="QLabel" name="channelSubsetLabel">
<property name="geometry">
<rect>
<x>6</x>
<y>110</y>
<width>117</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>This option is useful if you wish to save &amp; graph only a subset of the bug3 telemetry channels. </p><ul><li>The 10 'neural amp' channels are numbered 0-9. </li><li>The 4 'EMG amp' channels are numbered 10-13.</li><li>The 2 AUX channels are numbered 14-15.</li><li>The TTL channel (if enabled) is numbered 16.</li></ul><p>Ranges such as 0:16, or comma-separated-lists such as 1,2,3,4 are ok. * or 'ALL' or an empty string indicates all channels will be saved. </p><p>This option is remembered across subsequent runs of the program.</p></body></html></string>
</property>
<property name="text">
<string>Save Ch. Subset:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QCheckBox" name="resumeGraphSettingsChk">
<property name="geometry">
<rect>
<x>246</x>
<y>405</y>
<width>261</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>If checked, apply the graph settings (X-Scale, Y-Scale, color, etc) from the previous run. This only really works if the same channel lists, AI devices, and acquisition mode is used. If unchecked, default values are used.</p></body></html></string>
</property>
<property name="whatsThis">
<string>If checked, apply the graph settings (X-Scale, Y-Scale, color, etc) from the previous run. This only really works if the same channel lists, AI devices, and acquisition mode is used. If unchecked, default values are used.</string>
</property>
<property name="text">
<string>Restore Graphs Scale && Color Settings</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
<widget class="QComboBox" name="graphsPerTabCB">
<property name="geometry">
<rect>
<x>123</x>
<y>405</y>
<width>97</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'.Lucida Grande UI'; font-size:13pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If set to anything other than 'Default', limit the number of on-screen graphs simultaneously displayed per graph tab. This may help performance in the case where the GUI display is slow and you experience many buffer overruns (since displaying fewer graphs on-screen implies a reduced GUI/display and/or processing burden on the system).</p></body></html></string>
</property>
<property name="whatsThis">
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If set to anything other than 'Default', limit the number of on-screen graphs simultaneously displayed per graph tab. This may help performance in the case where the GUI display is slow and you experience many buffer overruns (since displaying fewer graphs on-screen implies a reduced GUI/display and/or processing burden on the system).</span></p></body></html></string>
</property>
<item>
<property name="text">
<string>Default</string>
</property>
</item>
<item>
<property name="text">
<string>4</string>
</property>
</item>
<item>
<property name="text">
<string>9</string>
</property>
</item>
<item>
<property name="text">
<string>16</string>
</property>
</item>
<item>
<property name="text">
<string>25</string>
</property>
</item>
<item>
<property name="text">
<string>36</string>
</property>
</item>
</widget>
<widget class="QLabel" name="graphsPerTabLabel">
<property name="geometry">
<rect>
<x>10</x>
<y>405</y>
<width>104</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'.Lucida Grande UI'; font-size:13pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If set to anything other than 'Default', limit the number of on-screen graphs simultaneously displayed per graph tab. This may help performance in the case where the GUI display is slow and you experience many buffer overruns (since displaying fewer graphs on-screen implies a reduced GUI/display and/or processing burden on the system).</p></body></html></string>
</property>
<property name="whatsThis">
<string>If set to anything other than 'Default', limit the number of on-screen graphs simultaneously displayed per graph tab. This may help performance in the case where the GUI display is slow and you experience many buffer overruns (since displaying fewer graphs on-screen implies a reduced GUI/display and/or processing burden on the system).</string>
</property>
<property name="text">
<string>Graphs Per Tab:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QLabel" name="errTolLbl">
<property name="geometry">
<rect>
<x>253</x>
<y>142</y>
<width>180</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>Frame finder error tolerance (out of 144 bits). Defaults to 6.</p></body></html></string>
</property>
<property name="text">
<string>Error tolerance (of 144 bits):</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QSpinBox" name="errTolSB">
<property name="geometry">
<rect>
<x>445</x>
<y>142</y>
<width>53</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>Frame finder error tolerance (out of 144 bits). Defaults to 6.</p></body></html></string>
</property>
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>144</number>
</property>
<property name="value">
<number>6</number>
</property>
</widget>
<widget class="QCheckBox" name="notchFilterChk">
<property name="geometry">
<rect>
<x>311</x>
<y>46</y>
<width>190</width>
<height>22</height>
</rect>
</property>
<property name="text">
<string>Enable Notch Filter (60 Hz) </string>
</property>
</widget>
<widget class="QCheckBox" name="hpfChk">
<property name="geometry">
<rect>
<x>17</x>
<y>46</y>
<width>171</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>If checked, the software high pass filter is enabled. Specify the filter's cutoff in Hz in the spinbox provided. This property can be modified while the acquisition is running.</p></body></html></string>
</property>
<property name="text">
<string>Enable High-Pass Filter:</string>
</property>
</widget>
<widget class="QSpinBox" name="hpfSB">
<property name="enabled">
<bool>false</bool>
</property>
<property name="geometry">
<rect>
<x>197</x>
<y>46</y>
<width>68</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>Specify the filter's cutoff in Hz. This property can be modified while the acquisition is running.</p></body></html></string>
</property>
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>99999</number>
</property>
<property name="value">
<number>1</number>
</property>
</widget>
<widget class="QLabel" name="hpfLbl">
<property name="enabled">
<bool>false</bool>
</property>
<property name="geometry">
<rect>
<x>270</x>
<y>46</y>
<width>32</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>Specify the filter's cutoff in Hz. This property can be modified while the acquisition is running.</p></body></html></string>
</property>
<property name="text">
<string>Hz</string>
</property>
</widget>
<widget class="QLabel" name="intanLbl">
<property name="geometry">
<rect>
<x>33</x>
<y>241</y>
<width>208</width>
<height>82</height>
</rect>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="bug3.qrc">:/Bug3/Bug3_for_SpikeGL/Bug3_for_SpikeGL/IntanTitleSmall.png</pixmap>
</property>
<property name="scaledContents">
<bool>false</bool>
</property>
</widget>
<widget class="QLabel" name="bugLbl">
<property name="geometry">
<rect>
<x>179</x>
<y>211</y>
<width>75</width>
<height>75</height>
</rect>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="bug3.qrc">:/Bug3/dragonfly.png</pixmap>
</property>
<property name="scaledContents">
<bool>true</bool>
</property>
</widget>
<widget class="QLabel" name="ttlAddlLbl">
<property name="geometry">
<rect>
<x>3</x>
<y>78</y>
<width>79</width>
<height>22</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>Enable additional TTL lines to display/save of the set of 11 lines available.</p></body></html></string>
</property>
<property name="text">
<string>TTL Lines:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QWidget" name="ttlW" native="true">
<property name="geometry">
<rect>
<x>94</x>
<y>74</y>
<width>408</width>
<height>26</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p>Enable additional TTL lines to display/save of the set of 11 lines available.</p></body></html></string>
</property>
<widget class="QWidget" name="horizontalLayoutWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>408</width>
<height>26</height>
</rect>
</property>
<layout class="QHBoxLayout" name="ttlLayout"/>
</widget>
</widget>
<widget class="QWidget" name="aoPassthruWidget" native="true">
<property name="geometry">
<rect>
<x>26</x>
<y>445</y>
<width>461</width>
<height>120</height>
</rect>
</property>
</widget>
<widget class="QCheckBox" name="ttlAltChk">
<property name="geometry">
<rect>
<x>454</x>
<y>175</y>
<width>87</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Alt</string>
</property>
</widget>
<widget class="QGroupBox" name="trigParams">
<property name="geometry">
<rect>
<x>310</x>
<y>208</y>
<width>184</width>
<height>167</height>
</rect>
</property>
<property name="title">
<string>Trigger Params (Old Scheme)</string>
</property>
<widget class="QSpinBox" name="trigPre">
<property name="geometry">
<rect>
<x>83</x>
<y>21</y>
<width>92</width>
<height>21</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>MS Reference Sans Serif</family>
<pointsize>9</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p>The amount of time in milliseconds to preamble and postamble the recording. The preamble applies to the first trigger pulse. The postamble applies to each individual recording file generated. This parameter ensures data files have a regular amount of leading whitespace before the trigger signal.</p></body></html></string>
</property>
<property name="suffix">
<string> ms</string>
</property>
<property name="maximum">
<number>999999</number>
</property>
<property name="value">
<number>10</number>
</property>
</widget>
<widget class="QDoubleSpinBox" name="trigStopTimeSB">
<property name="geometry">
<rect>
<x>110</x>
<y>60</y>
<width>63</width>
<height>24</height>
</rect>
</property>
<property name="font">
<font>
<family>MS Reference Sans Serif</family>
<pointsize>9</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p>The time in seconds that the trigger signal needs to be off before the 'stop' condition is satisfied (and the acquisition is stopped).</p></body></html></string>
</property>
<property name="suffix">
<string> s</string>
</property>
<property name="decimals">
<number>3</number>
</property>
<property name="value">
<double>0.500000000000000</double>
</property>
</widget>
<widget class="QLabel" name="trigWLbl">
<property name="geometry">
<rect>
<x>10</x>
<y>41</y>
<width>76</width>
<height>20</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>MS Reference Sans Serif</family>
<pointsize>8</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p>The 'W' parameter used for threshold detection (in samples). This is the number of samples that the signal needs to be above/below threshold for a crossing to have occurred.</p></body></html></string>
</property>
<property name="whatsThis">
<string>The 'W' parameter used for threshold detection (in samples). This is the number of samples that the signal needs to be above/below threshold for a crossing to have occurred.</string>
</property>
<property name="text">
<string>'W'</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QSpinBox" name="trigWSB">
<property name="geometry">
<rect>
<x>10</x>
<y>60</y>
<width>75</width>
<height>24</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>MS Reference Sans Serif</family>
<pointsize>9</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p>The 'W' parameter used for threshold detection (in samples). This is the number of samples that the signal needs to be above/below threshold for a crossing to have occurred.</p></body></html></string>
</property>
<property name="whatsThis">
<string>The 'W' parameter used for threshold detection (in samples). This is the number of samples that the signal needs to be above/below threshold for a crossing to have occurred.</string>
</property>
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>999</number>
</property>
<property name="value">
<number>5</number>
</property>
</widget>
<widget class="QLabel" name="trigPrePostLbl">
<property name="geometry">
<rect>
<x>7</x>
<y>21</y>
<width>70</width>
<height>21</height>
</rect>
</property>
<property name="font">
<font>
<family>MS Reference Sans Serif</family>
<pointsize>8</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p>The amount of time in milliseconds to preamble and postamble the recording. The preamble applies to the first trigger pulse. The postamble applies to each individual recording file generated. This parameter ensures data files have a regular amount of leading whitespace before the trigger signal.</p></body></html></string>
</property>
<property name="text">
<string>Pre/Post (ms):</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QLabel" name="trigStopTimeLbl">
<property name="geometry">
<rect>
<x>110</x>
<y>41</y>
<width>71</width>
<height>20</height>
</rect>
</property>
<property name="font">
<font>
<family>MS Reference Sans Serif</family>
<pointsize>8</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p>The time in seconds that the trigger signal needs to be off before the 'stop' condition is satisfied (and the acquisition is stopped).</p></body></html></string>
</property>
<property name="text">
<string>Stop time (s):</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QLabel" name="trigThreshLbl">
<property name="geometry">
<rect>
<x>7</x>
<y>88</y>
<width>70</width>
<height>24</height>
</rect>
</property>
<property name="font">
<font>
<family>MS Reference Sans Serif</family>
<pointsize>8</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p>The threshold, in volts, for the TTL and/or AUX signal to be considered &quot;high&quot;. If the incoming sample is below this value, the line is considered low. If the incoming sample is above this value, the line is considered high. Note that 'W' along with this value are used together to determine if the acquisition/filesave should trigger or not. </p><p>This parameter was designed for use with AUX and/or NI-DAQ AI inputs for triggering, since they are analog lines. TTL lines always are either at 0 or +5V, so this parameter is somewhat useless for TTL lines and should be left at the default of 3.0V.</p></body></html></string>
</property>
<property name="whatsThis">
<string><html><head/><body><p>The threshold, in volts, for the TTL and/or AUX signal to be considered &quot;high&quot;. If the incoming sample is below this value, the line is considered low. If the incoming sample is above this value, the line is considered high. Note that 'W' along with this value are used together to determine if the acquisition/filesave should trigger or not. </p><p>This parameter was designed for use with AUX inputs for triggering, since AUX are analog lines. TTL lines always are either at 0 or +5V, so this parameter is somewhat useless for TTL lines and should be left at the default of 3.0V.</p></body></html></string>
</property>
<property name="text">
<string>Threshold:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QDoubleSpinBox" name="trigThreshSB">
<property name="geometry">
<rect>
<x>83</x>
<y>87</y>
<width>92</width>
<height>24</height>
</rect>
</property>
<property name="font">
<font>
<family>MS Reference Sans Serif</family>
<pointsize>9</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p>The threshold, in volts, for the TTL and/or AUX signal to be considered &quot;high&quot;. If the incoming sample is below this value, the line is considered low. If the incoming sample is above this value, the line is considered high. Note that 'W' along with this value are used together to determine if the acquisition/filesave should trigger or not. </p><p>This parameter was designed for use with AUX and/or NI-DAQ AI inputs for triggering, since they are analog lines. TTL lines always are either at 0 or +5V, so this parameter is somewhat useless for TTL lines and should be left at the default of 3.0V.</p></body></html></string>
</property>
<property name="whatsThis">
<string><html><head/><body><p>The threshold, in volts, for the TTL and/or AUX signal to be considered &quot;high&quot;. If the incoming sample is below this value, the line is considered low. If the incoming sample is above this value, the line is considered high. Note that 'W' along with this value are used together to determine if the acquisition/filesave should trigger or not. </p><p>This parameter was designed for use with AUX inputs for triggering, since AUX are analog lines. TTL lines always are either at 0 or +5V, so this parameter is somewhat useless for TTL lines and should be left at the default of 3.0V.</p></body></html></string>
</property>
<property name="suffix">
<string> V</string>
</property>
<property name="decimals">
<number>2</number>
</property>
<property name="minimum">
<double>-5.000000000000000</double>
</property>
<property name="maximum">
<double>5.000000000000000</double>
</property>
<property name="singleStep">
<double>0.100000000000000</double>
</property>
<property name="value">
<double>3.000000000000000</double>
</property>
</widget>
</widget>
<widget class="QGroupBox" name="altTrigParams">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>310</x>
<y>208</y>
<width>184</width>
<height>167</height>
</rect>
</property>
<property name="title">
<string>Trigger Params (Alt. Scheme)</string>
</property>
<widget class="QSpinBox" name="trigPre_2">
<property name="geometry">
<rect>
<x>83</x>
<y>21</y>
<width>92</width>
<height>21</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>MS Reference Sans Serif</family>
<pointsize>9</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p>The amount of time in milliseconds to <span style=" font-weight:600;">preamble</span> the recording, per trigger event. When a TTL arrives, this is effectively the amount of data to save <span style=" font-style:italic;">before</span> the TTL to the output data file. So for instance if the TTL arrives at time t=1.5s, and the preamble is set to 100ms (0.10s), then the data file will have data written to it starting at time t=1.4s.</p><p>In summary, the <span style=" font-style:italic;">prepend</span> and <span style=" font-style:italic;">append</span> parameters determine how much data will be saved around the TTL signal. Stated another way, the TTL signal acts as a signal to record, with data prepended before the signal, and data is saved up until <span style=" font-style:italic;">append</span> ms have elapsed. So the length of the file is determined by the sum of the <span style=" font-style:italic;">prepend</span> and <span style=" font-style:italic;">append</span> parameter.</p><p>(Subsequent TTLs open new data files with the filename incremented by 1)</p></body></html></string>
</property>
<property name="suffix">
<string> ms</string>
</property>
<property name="maximum">
<number>999999</number>
</property>
<property name="value">
<number>10</number>
</property>
</widget>
<widget class="QLabel" name="trigWLbl_2">
<property name="geometry">
<rect>
<x>10</x>
<y>62</y>
<width>76</width>
<height>20</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>MS Reference Sans Serif</family>
<pointsize>8</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p>The 'W' parameter used for threshold detection (in samples). This is the number of samples that the signal needs to be above/below threshold for a crossing to have occurred.</p></body></html></string>
</property>
<property name="whatsThis">
<string>The 'W' parameter used for threshold detection (in samples). This is the number of samples that the signal needs to be above/below threshold for a crossing to have occurred.</string>
</property>
<property name="text">
<string>'W'</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QSpinBox" name="trigWSB_2">
<property name="geometry">