boris-behav-obs 8.12__py3-none-any.whl → 9.7.6__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.

Potentially problematic release.


This version of boris-behav-obs might be problematic. Click here for more details.

Files changed (128) hide show
  1. boris/__init__.py +1 -1
  2. boris/__main__.py +1 -1
  3. boris/about.py +28 -39
  4. boris/add_modifier.py +122 -109
  5. boris/add_modifier_ui.py +239 -135
  6. boris/advanced_event_filtering.py +81 -45
  7. boris/analysis_plugins/__init__.py +0 -0
  8. boris/analysis_plugins/_latency.py +59 -0
  9. boris/analysis_plugins/irr_cohen_kappa.py +109 -0
  10. boris/analysis_plugins/irr_cohen_kappa_with_modifiers.py +112 -0
  11. boris/analysis_plugins/irr_weighted_cohen_kappa.py +157 -0
  12. boris/analysis_plugins/irr_weighted_cohen_kappa_with_modifiers.py +162 -0
  13. boris/analysis_plugins/list_of_dataframe_columns.py +22 -0
  14. boris/analysis_plugins/number_of_occurences.py +22 -0
  15. boris/analysis_plugins/number_of_occurences_by_independent_variable.py +54 -0
  16. boris/analysis_plugins/time_budget.py +61 -0
  17. boris/behav_coding_map_creator.py +228 -229
  18. boris/behavior_binary_table.py +33 -50
  19. boris/behaviors_coding_map.py +17 -18
  20. boris/boris_cli.py +6 -25
  21. boris/cmd_arguments.py +12 -1
  22. boris/coding_pad.py +42 -49
  23. boris/config.py +141 -65
  24. boris/config_file.py +58 -67
  25. boris/connections.py +107 -61
  26. boris/converters.py +13 -37
  27. boris/converters_ui.py +187 -110
  28. boris/cooccurence.py +250 -0
  29. boris/core.py +2373 -1786
  30. boris/core_qrc.py +15895 -10743
  31. boris/core_ui.py +943 -798
  32. boris/db_functions.py +17 -42
  33. boris/dev.py +109 -8
  34. boris/dialog.py +482 -236
  35. boris/duration_widget.py +9 -14
  36. boris/edit_event.py +61 -31
  37. boris/edit_event_ui.py +208 -97
  38. boris/event_operations.py +408 -293
  39. boris/events_cursor.py +25 -17
  40. boris/events_snapshots.py +36 -82
  41. boris/exclusion_matrix.py +4 -9
  42. boris/export_events.py +184 -223
  43. boris/export_observation.py +74 -100
  44. boris/external_processes.py +123 -98
  45. boris/geometric_measurement.py +644 -290
  46. boris/gui_utilities.py +91 -14
  47. boris/image_overlay.py +4 -4
  48. boris/import_observations.py +190 -98
  49. boris/ipc_mpv.py +325 -0
  50. boris/irr.py +20 -57
  51. boris/latency.py +31 -24
  52. boris/measurement_widget.py +14 -18
  53. boris/media_file.py +17 -19
  54. boris/menu_options.py +17 -6
  55. boris/modifier_coding_map_creator.py +1013 -0
  56. boris/modifiers_coding_map.py +7 -9
  57. boris/mpv.py +1 -0
  58. boris/mpv2.py +732 -705
  59. boris/observation.py +533 -221
  60. boris/observation_operations.py +1025 -390
  61. boris/observation_ui.py +572 -362
  62. boris/observations_list.py +71 -53
  63. boris/otx_parser.py +74 -68
  64. boris/param_panel.py +31 -16
  65. boris/param_panel_ui.py +254 -138
  66. boris/player_dock_widget.py +90 -60
  67. boris/plot_data_module.py +25 -33
  68. boris/plot_events.py +127 -90
  69. boris/plot_events_rt.py +17 -31
  70. boris/plot_spectrogram_rt.py +95 -30
  71. boris/plot_waveform_rt.py +32 -21
  72. boris/plugins.py +431 -0
  73. boris/portion/__init__.py +18 -8
  74. boris/portion/const.py +35 -18
  75. boris/portion/dict.py +5 -5
  76. boris/portion/func.py +2 -2
  77. boris/portion/interval.py +21 -41
  78. boris/portion/io.py +41 -32
  79. boris/preferences.py +306 -83
  80. boris/preferences_ui.py +684 -227
  81. boris/project.py +448 -293
  82. boris/project_functions.py +671 -238
  83. boris/project_import_export.py +213 -222
  84. boris/project_ui.py +674 -438
  85. boris/qrc_boris.py +6 -3
  86. boris/qrc_boris5.py +6 -3
  87. boris/select_modifiers.py +74 -48
  88. boris/select_observations.py +20 -198
  89. boris/select_subj_behav.py +67 -39
  90. boris/state_events.py +52 -35
  91. boris/subjects_pad.py +6 -9
  92. boris/synthetic_time_budget.py +45 -28
  93. boris/time_budget_functions.py +171 -171
  94. boris/time_budget_widget.py +84 -114
  95. boris/transitions.py +41 -47
  96. boris/utilities.py +627 -236
  97. boris/version.py +3 -3
  98. boris/video_equalizer.py +16 -14
  99. boris/video_equalizer_ui.py +199 -130
  100. boris/video_operations.py +95 -29
  101. boris/view_df.py +104 -0
  102. boris/view_df_ui.py +75 -0
  103. boris/write_event.py +538 -0
  104. boris_behav_obs-9.7.6.dist-info/METADATA +139 -0
  105. boris_behav_obs-9.7.6.dist-info/RECORD +109 -0
  106. {boris_behav_obs-8.12.dist-info → boris_behav_obs-9.7.6.dist-info}/WHEEL +1 -1
  107. boris_behav_obs-9.7.6.dist-info/entry_points.txt +2 -0
  108. boris/README.TXT +0 -22
  109. boris/add_modifier.ui +0 -323
  110. boris/converters.ui +0 -289
  111. boris/core.qrc +0 -36
  112. boris/core.ui +0 -1556
  113. boris/edit_event.ui +0 -233
  114. boris/icons/logo_eye.ico +0 -0
  115. boris/map_creator.py +0 -850
  116. boris/observation.ui +0 -814
  117. boris/param_panel.ui +0 -379
  118. boris/preferences.ui +0 -537
  119. boris/project.ui +0 -1069
  120. boris/project_server.py +0 -236
  121. boris/vlc.py +0 -10343
  122. boris/vlc_local.py +0 -90
  123. boris_behav_obs-8.12.dist-info/LICENSE.TXT +0 -674
  124. boris_behav_obs-8.12.dist-info/METADATA +0 -128
  125. boris_behav_obs-8.12.dist-info/RECORD +0 -108
  126. boris_behav_obs-8.12.dist-info/entry_points.txt +0 -3
  127. {boris → boris_behav_obs-9.7.6.dist-info/licenses}/LICENSE.TXT +0 -0
  128. {boris_behav_obs-8.12.dist-info → boris_behav_obs-9.7.6.dist-info}/top_level.txt +0 -0
boris/project.ui DELETED
@@ -1,1069 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <ui version="4.0">
3
- <class>dlgProject</class>
4
- <widget class="QDialog" name="dlgProject">
5
- <property name="geometry">
6
- <rect>
7
- <x>0</x>
8
- <y>0</y>
9
- <width>1121</width>
10
- <height>973</height>
11
- </rect>
12
- </property>
13
- <property name="windowTitle">
14
- <string>Project</string>
15
- </property>
16
- <layout class="QVBoxLayout" name="verticalLayout_7">
17
- <item>
18
- <layout class="QVBoxLayout" name="verticalLayout_6">
19
- <item>
20
- <widget class="QTabWidget" name="tabProject">
21
- <property name="currentIndex">
22
- <number>2</number>
23
- </property>
24
- <widget class="QWidget" name="tabInformation">
25
- <attribute name="title">
26
- <string>Information</string>
27
- </attribute>
28
- <layout class="QVBoxLayout" name="verticalLayout">
29
- <item>
30
- <layout class="QHBoxLayout" name="horizontalLayout_15">
31
- <item>
32
- <widget class="QLabel" name="label">
33
- <property name="text">
34
- <string>Project name</string>
35
- </property>
36
- </widget>
37
- </item>
38
- <item>
39
- <widget class="QLineEdit" name="leProjectName"/>
40
- </item>
41
- </layout>
42
- </item>
43
- <item>
44
- <widget class="QLabel" name="lbProjectFilePath">
45
- <property name="text">
46
- <string>Project file path:</string>
47
- </property>
48
- </widget>
49
- </item>
50
- <item>
51
- <layout class="QHBoxLayout" name="horizontalLayout_18">
52
- <item>
53
- <widget class="QLabel" name="label_7">
54
- <property name="text">
55
- <string>Project date and time</string>
56
- </property>
57
- </widget>
58
- </item>
59
- <item>
60
- <widget class="QDateTimeEdit" name="dteDate">
61
- <property name="displayFormat">
62
- <string>yyyy-MM-dd hh:mm</string>
63
- </property>
64
- <property name="calendarPopup">
65
- <bool>true</bool>
66
- </property>
67
- </widget>
68
- </item>
69
- <item>
70
- <spacer name="horizontalSpacer_10">
71
- <property name="orientation">
72
- <enum>Qt::Horizontal</enum>
73
- </property>
74
- <property name="sizeHint" stdset="0">
75
- <size>
76
- <width>40</width>
77
- <height>20</height>
78
- </size>
79
- </property>
80
- </spacer>
81
- </item>
82
- </layout>
83
- </item>
84
- <item>
85
- <widget class="QLabel" name="label_6">
86
- <property name="text">
87
- <string>Project description</string>
88
- </property>
89
- <property name="alignment">
90
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
91
- </property>
92
- </widget>
93
- </item>
94
- <item>
95
- <widget class="QPlainTextEdit" name="teDescription"/>
96
- </item>
97
- <item>
98
- <layout class="QHBoxLayout" name="horizontalLayout_19">
99
- <item>
100
- <widget class="QLabel" name="lbTimeFormat">
101
- <property name="text">
102
- <string>Project time format</string>
103
- </property>
104
- </widget>
105
- </item>
106
- <item>
107
- <widget class="QRadioButton" name="rbSeconds">
108
- <property name="text">
109
- <string>seconds</string>
110
- </property>
111
- <property name="checked">
112
- <bool>true</bool>
113
- </property>
114
- </widget>
115
- </item>
116
- <item>
117
- <widget class="QRadioButton" name="rbHMS">
118
- <property name="text">
119
- <string>hh:mm:ss.mss</string>
120
- </property>
121
- </widget>
122
- </item>
123
- <item>
124
- <spacer name="horizontalSpacer_2">
125
- <property name="orientation">
126
- <enum>Qt::Horizontal</enum>
127
- </property>
128
- <property name="sizeHint" stdset="0">
129
- <size>
130
- <width>40</width>
131
- <height>20</height>
132
- </size>
133
- </property>
134
- </spacer>
135
- </item>
136
- </layout>
137
- </item>
138
- <item>
139
- <widget class="QLabel" name="lb_project_format_version">
140
- <property name="text">
141
- <string>Project format version:</string>
142
- </property>
143
- </widget>
144
- </item>
145
- </layout>
146
- </widget>
147
- <widget class="QWidget" name="tabEthogram">
148
- <attribute name="title">
149
- <string>Ethogram</string>
150
- </attribute>
151
- <layout class="QVBoxLayout" name="verticalLayout_10">
152
- <item>
153
- <layout class="QVBoxLayout" name="verticalLayout_5">
154
- <item>
155
- <layout class="QHBoxLayout" name="horizontalLayout_11">
156
- <item>
157
- <widget class="QTableWidget" name="twBehaviors">
158
- <property name="autoFillBackground">
159
- <bool>false</bool>
160
- </property>
161
- <property name="frameShadow">
162
- <enum>QFrame::Sunken</enum>
163
- </property>
164
- <property name="midLineWidth">
165
- <number>0</number>
166
- </property>
167
- <property name="alternatingRowColors">
168
- <bool>true</bool>
169
- </property>
170
- <property name="selectionMode">
171
- <enum>QAbstractItemView::SingleSelection</enum>
172
- </property>
173
- <property name="selectionBehavior">
174
- <enum>QAbstractItemView::SelectRows</enum>
175
- </property>
176
- <property name="sortingEnabled">
177
- <bool>false</bool>
178
- </property>
179
- <attribute name="horizontalHeaderShowSortIndicator" stdset="0">
180
- <bool>false</bool>
181
- </attribute>
182
- <attribute name="verticalHeaderShowSortIndicator" stdset="0">
183
- <bool>false</bool>
184
- </attribute>
185
- <column>
186
- <property name="text">
187
- <string>Behavior type</string>
188
- </property>
189
- </column>
190
- <column>
191
- <property name="text">
192
- <string>Key</string>
193
- </property>
194
- </column>
195
- <column>
196
- <property name="text">
197
- <string>Code</string>
198
- </property>
199
- </column>
200
- <column>
201
- <property name="text">
202
- <string>Description</string>
203
- </property>
204
- </column>
205
- <column>
206
- <property name="text">
207
- <string>Category</string>
208
- </property>
209
- </column>
210
- <column>
211
- <property name="text">
212
- <string>Modifiers</string>
213
- </property>
214
- </column>
215
- <column>
216
- <property name="text">
217
- <string>Exclusion</string>
218
- </property>
219
- </column>
220
- <column>
221
- <property name="text">
222
- <string>Modifiers coding map</string>
223
- </property>
224
- </column>
225
- </widget>
226
- </item>
227
- <item>
228
- <layout class="QVBoxLayout" name="verticalLayout_11">
229
- <item>
230
- <widget class="QPushButton" name="pb_behavior">
231
- <property name="text">
232
- <string>Behavior</string>
233
- </property>
234
- </widget>
235
- </item>
236
- <item>
237
- <widget class="QPushButton" name="pb_import">
238
- <property name="text">
239
- <string>Import ethogram</string>
240
- </property>
241
- </widget>
242
- </item>
243
- <item>
244
- <widget class="QPushButton" name="pbBehaviorsCategories">
245
- <property name="text">
246
- <string>Behavioral categories</string>
247
- </property>
248
- </widget>
249
- </item>
250
- <item>
251
- <spacer name="verticalSpacer_3">
252
- <property name="orientation">
253
- <enum>Qt::Vertical</enum>
254
- </property>
255
- <property name="sizeHint" stdset="0">
256
- <size>
257
- <width>20</width>
258
- <height>40</height>
259
- </size>
260
- </property>
261
- </spacer>
262
- </item>
263
- <item>
264
- <widget class="QPushButton" name="pb_exclusion_matrix">
265
- <property name="text">
266
- <string>Exclusion matrix</string>
267
- </property>
268
- </widget>
269
- </item>
270
- <item>
271
- <widget class="QPushButton" name="pbExportEthogram">
272
- <property name="text">
273
- <string>Export ethogram</string>
274
- </property>
275
- </widget>
276
- </item>
277
- </layout>
278
- </item>
279
- </layout>
280
- </item>
281
- <item>
282
- <widget class="QLabel" name="lbObservationsState">
283
- <property name="text">
284
- <string>TextLabel</string>
285
- </property>
286
- </widget>
287
- </item>
288
- </layout>
289
- </item>
290
- </layout>
291
- </widget>
292
- <widget class="QWidget" name="tabSubjects">
293
- <attribute name="title">
294
- <string>Subjects</string>
295
- </attribute>
296
- <layout class="QVBoxLayout" name="verticalLayout_16">
297
- <item>
298
- <layout class="QVBoxLayout" name="verticalLayout_14">
299
- <item>
300
- <layout class="QHBoxLayout" name="horizontalLayout_12">
301
- <item>
302
- <widget class="QTableWidget" name="twSubjects">
303
- <property name="autoFillBackground">
304
- <bool>false</bool>
305
- </property>
306
- <property name="frameShadow">
307
- <enum>QFrame::Sunken</enum>
308
- </property>
309
- <property name="midLineWidth">
310
- <number>0</number>
311
- </property>
312
- <property name="selectionMode">
313
- <enum>QAbstractItemView::SingleSelection</enum>
314
- </property>
315
- <property name="selectionBehavior">
316
- <enum>QAbstractItemView::SelectRows</enum>
317
- </property>
318
- <property name="sortingEnabled">
319
- <bool>false</bool>
320
- </property>
321
- <column>
322
- <property name="text">
323
- <string>Key</string>
324
- </property>
325
- </column>
326
- <column>
327
- <property name="text">
328
- <string>Subject name</string>
329
- </property>
330
- </column>
331
- <column>
332
- <property name="text">
333
- <string>Description</string>
334
- </property>
335
- </column>
336
- </widget>
337
- </item>
338
- <item>
339
- <layout class="QVBoxLayout" name="verticalLayout_15">
340
- <item>
341
- <widget class="QPushButton" name="pb_subjects">
342
- <property name="text">
343
- <string>Subjects</string>
344
- </property>
345
- </widget>
346
- </item>
347
- <item>
348
- <widget class="QPushButton" name="pbImportSubjectsFromProject">
349
- <property name="text">
350
- <string>Import subjects</string>
351
- </property>
352
- </widget>
353
- </item>
354
- <item>
355
- <spacer name="verticalSpacer_2">
356
- <property name="orientation">
357
- <enum>Qt::Vertical</enum>
358
- </property>
359
- <property name="sizeHint" stdset="0">
360
- <size>
361
- <width>20</width>
362
- <height>40</height>
363
- </size>
364
- </property>
365
- </spacer>
366
- </item>
367
- <item>
368
- <widget class="QPushButton" name="pb_export_subjects">
369
- <property name="text">
370
- <string>Export subjects</string>
371
- </property>
372
- </widget>
373
- </item>
374
- </layout>
375
- </item>
376
- </layout>
377
- </item>
378
- <item>
379
- <widget class="QLabel" name="lbSubjectsState">
380
- <property name="text">
381
- <string>TextLabel</string>
382
- </property>
383
- </widget>
384
- </item>
385
- </layout>
386
- </item>
387
- </layout>
388
- </widget>
389
- <widget class="QWidget" name="tabIndependentVariables">
390
- <attribute name="title">
391
- <string>Independent variables</string>
392
- </attribute>
393
- <layout class="QHBoxLayout" name="horizontalLayout_14">
394
- <item>
395
- <layout class="QHBoxLayout" name="horizontalLayout_13">
396
- <item>
397
- <layout class="QVBoxLayout" name="verticalLayout_2">
398
- <item>
399
- <widget class="QTableWidget" name="twVariables">
400
- <property name="autoFillBackground">
401
- <bool>false</bool>
402
- </property>
403
- <property name="frameShadow">
404
- <enum>QFrame::Sunken</enum>
405
- </property>
406
- <property name="midLineWidth">
407
- <number>0</number>
408
- </property>
409
- <property name="editTriggers">
410
- <set>QAbstractItemView::NoEditTriggers</set>
411
- </property>
412
- <property name="dragDropOverwriteMode">
413
- <bool>false</bool>
414
- </property>
415
- <property name="alternatingRowColors">
416
- <bool>true</bool>
417
- </property>
418
- <property name="selectionMode">
419
- <enum>QAbstractItemView::SingleSelection</enum>
420
- </property>
421
- <property name="selectionBehavior">
422
- <enum>QAbstractItemView::SelectRows</enum>
423
- </property>
424
- <property name="sortingEnabled">
425
- <bool>false</bool>
426
- </property>
427
- <attribute name="horizontalHeaderShowSortIndicator" stdset="0">
428
- <bool>false</bool>
429
- </attribute>
430
- <column>
431
- <property name="text">
432
- <string>Label</string>
433
- </property>
434
- </column>
435
- <column>
436
- <property name="text">
437
- <string>Description</string>
438
- </property>
439
- </column>
440
- <column>
441
- <property name="text">
442
- <string>Type</string>
443
- </property>
444
- </column>
445
- <column>
446
- <property name="text">
447
- <string>Predefined value</string>
448
- </property>
449
- </column>
450
- <column>
451
- <property name="text">
452
- <string>Set of values</string>
453
- </property>
454
- </column>
455
- </widget>
456
- </item>
457
- <item>
458
- <layout class="QHBoxLayout" name="horizontalLayout_3">
459
- <item>
460
- <widget class="QLabel" name="label_2">
461
- <property name="minimumSize">
462
- <size>
463
- <width>120</width>
464
- <height>0</height>
465
- </size>
466
- </property>
467
- <property name="text">
468
- <string>Label</string>
469
- </property>
470
- </widget>
471
- </item>
472
- <item>
473
- <widget class="QLineEdit" name="leLabel"/>
474
- </item>
475
- <item>
476
- <spacer name="horizontalSpacer_3">
477
- <property name="orientation">
478
- <enum>Qt::Horizontal</enum>
479
- </property>
480
- <property name="sizeHint" stdset="0">
481
- <size>
482
- <width>40</width>
483
- <height>20</height>
484
- </size>
485
- </property>
486
- </spacer>
487
- </item>
488
- </layout>
489
- </item>
490
- <item>
491
- <layout class="QHBoxLayout" name="horizontalLayout_5">
492
- <item>
493
- <widget class="QLabel" name="label_3">
494
- <property name="minimumSize">
495
- <size>
496
- <width>120</width>
497
- <height>0</height>
498
- </size>
499
- </property>
500
- <property name="text">
501
- <string>Description</string>
502
- </property>
503
- </widget>
504
- </item>
505
- <item>
506
- <widget class="QLineEdit" name="leDescription"/>
507
- </item>
508
- <item>
509
- <spacer name="horizontalSpacer_4">
510
- <property name="orientation">
511
- <enum>Qt::Horizontal</enum>
512
- </property>
513
- <property name="sizeHint" stdset="0">
514
- <size>
515
- <width>40</width>
516
- <height>20</height>
517
- </size>
518
- </property>
519
- </spacer>
520
- </item>
521
- </layout>
522
- </item>
523
- <item>
524
- <layout class="QHBoxLayout" name="horizontalLayout_6">
525
- <item>
526
- <widget class="QLabel" name="label_8">
527
- <property name="minimumSize">
528
- <size>
529
- <width>120</width>
530
- <height>0</height>
531
- </size>
532
- </property>
533
- <property name="text">
534
- <string>Type</string>
535
- </property>
536
- </widget>
537
- </item>
538
- <item>
539
- <widget class="QComboBox" name="cbType">
540
- <property name="minimumSize">
541
- <size>
542
- <width>120</width>
543
- <height>0</height>
544
- </size>
545
- </property>
546
- </widget>
547
- </item>
548
- <item>
549
- <spacer name="horizontalSpacer_5">
550
- <property name="orientation">
551
- <enum>Qt::Horizontal</enum>
552
- </property>
553
- <property name="sizeHint" stdset="0">
554
- <size>
555
- <width>40</width>
556
- <height>20</height>
557
- </size>
558
- </property>
559
- </spacer>
560
- </item>
561
- </layout>
562
- </item>
563
- <item>
564
- <layout class="QHBoxLayout" name="horizontalLayout_7">
565
- <item>
566
- <widget class="QLabel" name="label_4">
567
- <property name="minimumSize">
568
- <size>
569
- <width>120</width>
570
- <height>0</height>
571
- </size>
572
- </property>
573
- <property name="text">
574
- <string>Predefined value</string>
575
- </property>
576
- </widget>
577
- </item>
578
- <item>
579
- <widget class="QLineEdit" name="lePredefined"/>
580
- </item>
581
- <item>
582
- <spacer name="horizontalSpacer_6">
583
- <property name="orientation">
584
- <enum>Qt::Horizontal</enum>
585
- </property>
586
- <property name="sizeHint" stdset="0">
587
- <size>
588
- <width>40</width>
589
- <height>20</height>
590
- </size>
591
- </property>
592
- </spacer>
593
- </item>
594
- </layout>
595
- </item>
596
- <item>
597
- <layout class="QHBoxLayout" name="horizontalLayout_8">
598
- <item>
599
- <widget class="QLabel" name="label_9">
600
- <property name="minimumSize">
601
- <size>
602
- <width>120</width>
603
- <height>0</height>
604
- </size>
605
- </property>
606
- <property name="text">
607
- <string>Predefined date</string>
608
- </property>
609
- </widget>
610
- </item>
611
- <item>
612
- <widget class="QDateTimeEdit" name="dte_default_date">
613
- <property name="displayFormat">
614
- <string>yyyy-MM-dd hh:mm</string>
615
- </property>
616
- </widget>
617
- </item>
618
- <item>
619
- <spacer name="horizontalSpacer_7">
620
- <property name="orientation">
621
- <enum>Qt::Horizontal</enum>
622
- </property>
623
- <property name="sizeHint" stdset="0">
624
- <size>
625
- <width>40</width>
626
- <height>20</height>
627
- </size>
628
- </property>
629
- </spacer>
630
- </item>
631
- </layout>
632
- </item>
633
- <item>
634
- <layout class="QHBoxLayout" name="horizontalLayout_9">
635
- <item>
636
- <widget class="QLabel" name="label_5">
637
- <property name="text">
638
- <string>Set of values (separated by comma)</string>
639
- </property>
640
- </widget>
641
- </item>
642
- <item>
643
- <widget class="QLineEdit" name="leSetValues"/>
644
- </item>
645
- <item>
646
- <spacer name="horizontalSpacer_8">
647
- <property name="orientation">
648
- <enum>Qt::Horizontal</enum>
649
- </property>
650
- <property name="sizeType">
651
- <enum>QSizePolicy::Minimum</enum>
652
- </property>
653
- <property name="sizeHint" stdset="0">
654
- <size>
655
- <width>40</width>
656
- <height>20</height>
657
- </size>
658
- </property>
659
- </spacer>
660
- </item>
661
- </layout>
662
- </item>
663
- </layout>
664
- </item>
665
- <item>
666
- <layout class="QVBoxLayout" name="verticalLayout_12">
667
- <item>
668
- <widget class="QPushButton" name="pbAddVariable">
669
- <property name="text">
670
- <string>Add variable</string>
671
- </property>
672
- </widget>
673
- </item>
674
- <item>
675
- <widget class="QPushButton" name="pbRemoveVariable">
676
- <property name="text">
677
- <string>Remove variable</string>
678
- </property>
679
- </widget>
680
- </item>
681
- <item>
682
- <widget class="QPushButton" name="pbImportVarFromProject">
683
- <property name="text">
684
- <string>Import variables
685
- from a BORIS project</string>
686
- </property>
687
- </widget>
688
- </item>
689
- <item>
690
- <spacer name="verticalSpacer_4">
691
- <property name="orientation">
692
- <enum>Qt::Vertical</enum>
693
- </property>
694
- <property name="sizeHint" stdset="0">
695
- <size>
696
- <width>20</width>
697
- <height>40</height>
698
- </size>
699
- </property>
700
- </spacer>
701
- </item>
702
- </layout>
703
- </item>
704
- </layout>
705
- </item>
706
- </layout>
707
- </widget>
708
- <widget class="QWidget" name="tabBehavCodingMap">
709
- <attribute name="title">
710
- <string>Behaviors coding map</string>
711
- </attribute>
712
- <layout class="QVBoxLayout" name="verticalLayout_8">
713
- <item>
714
- <layout class="QHBoxLayout" name="horizontalLayout">
715
- <item>
716
- <widget class="QTableWidget" name="twBehavCodingMap">
717
- <property name="autoFillBackground">
718
- <bool>false</bool>
719
- </property>
720
- <property name="frameShadow">
721
- <enum>QFrame::Sunken</enum>
722
- </property>
723
- <property name="midLineWidth">
724
- <number>0</number>
725
- </property>
726
- <property name="selectionMode">
727
- <enum>QAbstractItemView::SingleSelection</enum>
728
- </property>
729
- <property name="selectionBehavior">
730
- <enum>QAbstractItemView::SelectRows</enum>
731
- </property>
732
- <property name="sortingEnabled">
733
- <bool>false</bool>
734
- </property>
735
- <column>
736
- <property name="text">
737
- <string>Name</string>
738
- </property>
739
- </column>
740
- <column>
741
- <property name="text">
742
- <string>Behavior codes</string>
743
- </property>
744
- </column>
745
- </widget>
746
- </item>
747
- <item>
748
- <layout class="QVBoxLayout" name="verticalLayout_4">
749
- <item>
750
- <widget class="QPushButton" name="pbAddBehaviorsCodingMap">
751
- <property name="text">
752
- <string>Add a behaviors coding map</string>
753
- </property>
754
- </widget>
755
- </item>
756
- <item>
757
- <widget class="QPushButton" name="pbRemoveBehaviorsCodingMap">
758
- <property name="text">
759
- <string>Remove behaviors coding map</string>
760
- </property>
761
- </widget>
762
- </item>
763
- <item>
764
- <spacer name="verticalSpacer">
765
- <property name="orientation">
766
- <enum>Qt::Vertical</enum>
767
- </property>
768
- <property name="sizeHint" stdset="0">
769
- <size>
770
- <width>20</width>
771
- <height>40</height>
772
- </size>
773
- </property>
774
- </spacer>
775
- </item>
776
- </layout>
777
- </item>
778
- </layout>
779
- </item>
780
- </layout>
781
- </widget>
782
- <widget class="QWidget" name="tab_time_converters">
783
- <attribute name="title">
784
- <string>Converters</string>
785
- </attribute>
786
- <layout class="QVBoxLayout" name="verticalLayout_18">
787
- <item>
788
- <widget class="QLabel" name="label_11">
789
- <property name="text">
790
- <string>Time converters for external data</string>
791
- </property>
792
- </widget>
793
- </item>
794
- <item>
795
- <layout class="QHBoxLayout" name="horizontalLayout_16">
796
- <item>
797
- <widget class="QTableWidget" name="tw_converters">
798
- <property name="editTriggers">
799
- <set>QAbstractItemView::NoEditTriggers</set>
800
- </property>
801
- <property name="selectionMode">
802
- <enum>QAbstractItemView::SingleSelection</enum>
803
- </property>
804
- <property name="selectionBehavior">
805
- <enum>QAbstractItemView::SelectRows</enum>
806
- </property>
807
- <property name="sortingEnabled">
808
- <bool>false</bool>
809
- </property>
810
- <column>
811
- <property name="text">
812
- <string>Name</string>
813
- </property>
814
- </column>
815
- <column>
816
- <property name="text">
817
- <string>Description</string>
818
- </property>
819
- </column>
820
- <column>
821
- <property name="text">
822
- <string>Code</string>
823
- </property>
824
- </column>
825
- </widget>
826
- </item>
827
- <item>
828
- <layout class="QVBoxLayout" name="verticalLayout_17">
829
- <item>
830
- <widget class="QPushButton" name="pb_add_converter">
831
- <property name="text">
832
- <string>Add new converter</string>
833
- </property>
834
- </widget>
835
- </item>
836
- <item>
837
- <widget class="QPushButton" name="pb_modify_converter">
838
- <property name="text">
839
- <string>Modify converter</string>
840
- </property>
841
- </widget>
842
- </item>
843
- <item>
844
- <widget class="QPushButton" name="pb_delete_converter">
845
- <property name="text">
846
- <string>Delete converter</string>
847
- </property>
848
- </widget>
849
- </item>
850
- <item>
851
- <widget class="QPushButton" name="pb_load_from_file">
852
- <property name="text">
853
- <string>Load converters from file</string>
854
- </property>
855
- </widget>
856
- </item>
857
- <item>
858
- <widget class="QPushButton" name="pb_load_from_repo">
859
- <property name="text">
860
- <string>Load converters from BORIS repository</string>
861
- </property>
862
- </widget>
863
- </item>
864
- <item>
865
- <spacer name="verticalSpacer_7">
866
- <property name="orientation">
867
- <enum>Qt::Vertical</enum>
868
- </property>
869
- <property name="sizeHint" stdset="0">
870
- <size>
871
- <width>20</width>
872
- <height>40</height>
873
- </size>
874
- </property>
875
- </spacer>
876
- </item>
877
- </layout>
878
- </item>
879
- </layout>
880
- </item>
881
- <item>
882
- <layout class="QHBoxLayout" name="horizontalLayout_17">
883
- <item>
884
- <widget class="QLabel" name="label_13">
885
- <property name="minimumSize">
886
- <size>
887
- <width>120</width>
888
- <height>0</height>
889
- </size>
890
- </property>
891
- <property name="text">
892
- <string>Name</string>
893
- </property>
894
- </widget>
895
- </item>
896
- <item>
897
- <widget class="QLineEdit" name="le_converter_name"/>
898
- </item>
899
- <item>
900
- <spacer name="horizontalSpacer_11">
901
- <property name="orientation">
902
- <enum>Qt::Horizontal</enum>
903
- </property>
904
- <property name="sizeType">
905
- <enum>QSizePolicy::Minimum</enum>
906
- </property>
907
- <property name="sizeHint" stdset="0">
908
- <size>
909
- <width>10</width>
910
- <height>20</height>
911
- </size>
912
- </property>
913
- </spacer>
914
- </item>
915
- </layout>
916
- </item>
917
- <item>
918
- <layout class="QHBoxLayout" name="horizontalLayout_10">
919
- <item>
920
- <widget class="QLabel" name="label_10">
921
- <property name="minimumSize">
922
- <size>
923
- <width>120</width>
924
- <height>0</height>
925
- </size>
926
- </property>
927
- <property name="text">
928
- <string>Description</string>
929
- </property>
930
- </widget>
931
- </item>
932
- <item>
933
- <widget class="QLineEdit" name="le_converter_description"/>
934
- </item>
935
- <item>
936
- <spacer name="horizontalSpacer_9">
937
- <property name="orientation">
938
- <enum>Qt::Horizontal</enum>
939
- </property>
940
- <property name="sizeType">
941
- <enum>QSizePolicy::Minimum</enum>
942
- </property>
943
- <property name="sizeHint" stdset="0">
944
- <size>
945
- <width>10</width>
946
- <height>20</height>
947
- </size>
948
- </property>
949
- </spacer>
950
- </item>
951
- </layout>
952
- </item>
953
- <item>
954
- <layout class="QHBoxLayout" name="horizontalLayout_2">
955
- <item>
956
- <layout class="QVBoxLayout" name="verticalLayout_9">
957
- <item>
958
- <widget class="QLabel" name="label_12">
959
- <property name="text">
960
- <string>Python code</string>
961
- </property>
962
- </widget>
963
- </item>
964
- <item>
965
- <widget class="QPushButton" name="pb_code_help">
966
- <property name="text">
967
- <string>Help</string>
968
- </property>
969
- </widget>
970
- </item>
971
- <item>
972
- <spacer name="verticalSpacer_5">
973
- <property name="orientation">
974
- <enum>Qt::Vertical</enum>
975
- </property>
976
- <property name="sizeHint" stdset="0">
977
- <size>
978
- <width>20</width>
979
- <height>40</height>
980
- </size>
981
- </property>
982
- </spacer>
983
- </item>
984
- </layout>
985
- </item>
986
- <item>
987
- <widget class="QPlainTextEdit" name="pteCode">
988
- <property name="font">
989
- <font>
990
- <family>Monospace</family>
991
- </font>
992
- </property>
993
- </widget>
994
- </item>
995
- <item>
996
- <layout class="QVBoxLayout" name="verticalLayout_13">
997
- <item>
998
- <widget class="QPushButton" name="pb_save_converter">
999
- <property name="text">
1000
- <string>Save converter</string>
1001
- </property>
1002
- </widget>
1003
- </item>
1004
- <item>
1005
- <widget class="QPushButton" name="pb_cancel_converter">
1006
- <property name="text">
1007
- <string>Cancel</string>
1008
- </property>
1009
- </widget>
1010
- </item>
1011
- <item>
1012
- <spacer name="verticalSpacer_6">
1013
- <property name="orientation">
1014
- <enum>Qt::Vertical</enum>
1015
- </property>
1016
- <property name="sizeHint" stdset="0">
1017
- <size>
1018
- <width>20</width>
1019
- <height>40</height>
1020
- </size>
1021
- </property>
1022
- </spacer>
1023
- </item>
1024
- </layout>
1025
- </item>
1026
- </layout>
1027
- </item>
1028
- </layout>
1029
- </widget>
1030
- </widget>
1031
- </item>
1032
- <item>
1033
- <layout class="QHBoxLayout" name="horizontalLayout_4">
1034
- <item>
1035
- <spacer name="horizontalSpacer">
1036
- <property name="orientation">
1037
- <enum>Qt::Horizontal</enum>
1038
- </property>
1039
- <property name="sizeHint" stdset="0">
1040
- <size>
1041
- <width>40</width>
1042
- <height>20</height>
1043
- </size>
1044
- </property>
1045
- </spacer>
1046
- </item>
1047
- <item>
1048
- <widget class="QPushButton" name="pbCancel">
1049
- <property name="text">
1050
- <string>Cancel</string>
1051
- </property>
1052
- </widget>
1053
- </item>
1054
- <item>
1055
- <widget class="QPushButton" name="pbOK">
1056
- <property name="text">
1057
- <string>OK</string>
1058
- </property>
1059
- </widget>
1060
- </item>
1061
- </layout>
1062
- </item>
1063
- </layout>
1064
- </item>
1065
- </layout>
1066
- </widget>
1067
- <resources/>
1068
- <connections/>
1069
- </ui>