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