boris-behav-obs 8.9.16__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 (129) hide show
  1. boris/__init__.py +1 -1
  2. boris/__main__.py +1 -1
  3. boris/about.py +36 -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 +161 -77
  24. boris/config_file.py +63 -83
  25. boris/connections.py +112 -57
  26. boris/converters.py +13 -37
  27. boris/converters_ui.py +187 -110
  28. boris/cooccurence.py +250 -0
  29. boris/core.py +2511 -1824
  30. boris/core_qrc.py +15895 -10185
  31. boris/core_ui.py +946 -792
  32. boris/db_functions.py +21 -41
  33. boris/dev.py +134 -0
  34. boris/dialog.py +505 -244
  35. boris/duration_widget.py +15 -20
  36. boris/edit_event.py +84 -28
  37. boris/edit_event_ui.py +214 -78
  38. boris/event_operations.py +517 -415
  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 +213 -583
  43. boris/export_observation.py +98 -611
  44. boris/external_processes.py +156 -97
  45. boris/geometric_measurement.py +652 -287
  46. boris/gui_utilities.py +91 -14
  47. boris/image_overlay.py +9 -9
  48. boris/import_observations.py +190 -98
  49. boris/ipc_mpv.py +325 -0
  50. boris/irr.py +26 -63
  51. boris/latency.py +34 -25
  52. boris/measurement_widget.py +14 -18
  53. boris/media_file.py +52 -84
  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 +655 -310
  60. boris/observation_operations.py +1036 -404
  61. boris/observation_ui.py +584 -356
  62. boris/observations_list.py +71 -53
  63. boris/otx_parser.py +74 -80
  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 +43 -46
  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 +685 -228
  81. boris/project.py +448 -293
  82. boris/project_functions.py +689 -254
  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 -199
  89. boris/select_subj_behav.py +67 -39
  90. boris/state_events.py +53 -37
  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 +766 -266
  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 +125 -28
  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.9.16.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/boris_ui.py +0 -886
  111. boris/converters.ui +0 -289
  112. boris/core.qrc +0 -35
  113. boris/core.ui +0 -1543
  114. boris/edit_event.ui +0 -175
  115. boris/icons/logo_eye.ico +0 -0
  116. boris/map_creator.py +0 -850
  117. boris/observation.ui +0 -773
  118. boris/param_panel.ui +0 -379
  119. boris/preferences.ui +0 -537
  120. boris/project.ui +0 -1069
  121. boris/project_server.py +0 -236
  122. boris/vlc.py +0 -10343
  123. boris/vlc_local.py +0 -90
  124. boris_behav_obs-8.9.16.dist-info/LICENSE.TXT +0 -674
  125. boris_behav_obs-8.9.16.dist-info/METADATA +0 -129
  126. boris_behav_obs-8.9.16.dist-info/RECORD +0 -108
  127. boris_behav_obs-8.9.16.dist-info/entry_points.txt +0 -2
  128. {boris → boris_behav_obs-9.7.6.dist-info/licenses}/LICENSE.TXT +0 -0
  129. {boris_behav_obs-8.9.16.dist-info → boris_behav_obs-9.7.6.dist-info}/top_level.txt +0 -0
boris/observation.ui DELETED
@@ -1,773 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <ui version="4.0">
3
- <class>Form</class>
4
- <widget class="QWidget" name="Form">
5
- <property name="geometry">
6
- <rect>
7
- <x>0</x>
8
- <y>0</y>
9
- <width>800</width>
10
- <height>650</height>
11
- </rect>
12
- </property>
13
- <property name="windowTitle">
14
- <string>New observation</string>
15
- </property>
16
- <layout class="QVBoxLayout" name="verticalLayout_6">
17
- <item>
18
- <layout class="QHBoxLayout" name="horizontalLayout_2">
19
- <item>
20
- <widget class="QLabel" name="label">
21
- <property name="text">
22
- <string>Observation id</string>
23
- </property>
24
- </widget>
25
- </item>
26
- <item>
27
- <widget class="QLabel" name="lb_star">
28
- <property name="font">
29
- <font>
30
- <pointsize>14</pointsize>
31
- </font>
32
- </property>
33
- <property name="styleSheet">
34
- <string notr="true">color: red</string>
35
- </property>
36
- <property name="text">
37
- <string>*</string>
38
- </property>
39
- </widget>
40
- </item>
41
- <item>
42
- <widget class="QLineEdit" name="leObservationId"/>
43
- </item>
44
- <item>
45
- <widget class="QLabel" name="label_8">
46
- <property name="text">
47
- <string>Date and time</string>
48
- </property>
49
- </widget>
50
- </item>
51
- <item>
52
- <widget class="QDateTimeEdit" name="dteDate">
53
- <property name="displayFormat">
54
- <string>yyyy-MM-dd hh:mm:ss</string>
55
- </property>
56
- <property name="calendarPopup">
57
- <bool>true</bool>
58
- </property>
59
- </widget>
60
- </item>
61
- </layout>
62
- </item>
63
- <item>
64
- <widget class="QSplitter" name="splitter">
65
- <property name="orientation">
66
- <enum>Qt::Horizontal</enum>
67
- </property>
68
- <widget class="QWidget" name="layoutWidget">
69
- <layout class="QVBoxLayout" name="verticalLayout_2">
70
- <item>
71
- <widget class="QLabel" name="label_9">
72
- <property name="sizePolicy">
73
- <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
74
- <horstretch>0</horstretch>
75
- <verstretch>0</verstretch>
76
- </sizepolicy>
77
- </property>
78
- <property name="text">
79
- <string>Description</string>
80
- </property>
81
- <property name="alignment">
82
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
83
- </property>
84
- </widget>
85
- </item>
86
- <item>
87
- <widget class="QTextEdit" name="teDescription">
88
- <property name="sizePolicy">
89
- <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
90
- <horstretch>0</horstretch>
91
- <verstretch>0</verstretch>
92
- </sizepolicy>
93
- </property>
94
- <property name="maximumSize">
95
- <size>
96
- <width>16777215</width>
97
- <height>16777215</height>
98
- </size>
99
- </property>
100
- <property name="acceptDrops">
101
- <bool>false</bool>
102
- </property>
103
- </widget>
104
- </item>
105
- <item>
106
- <layout class="QHBoxLayout" name="horizontalLayout_6">
107
- <item>
108
- <widget class="QLabel" name="lbTimeOffset">
109
- <property name="text">
110
- <string>Time offset</string>
111
- </property>
112
- </widget>
113
- </item>
114
- <item>
115
- <spacer name="horizontalSpacer_2">
116
- <property name="orientation">
117
- <enum>Qt::Horizontal</enum>
118
- </property>
119
- <property name="sizeHint" stdset="0">
120
- <size>
121
- <width>40</width>
122
- <height>20</height>
123
- </size>
124
- </property>
125
- </spacer>
126
- </item>
127
- </layout>
128
- </item>
129
- <item>
130
- <widget class="QCheckBox" name="cb_observation_time_interval">
131
- <property name="text">
132
- <string>Limit observation to a time interval</string>
133
- </property>
134
- </widget>
135
- </item>
136
- </layout>
137
- </widget>
138
- <widget class="QWidget" name="layoutWidget">
139
- <layout class="QVBoxLayout" name="verticalLayout_11" stretch="0,0">
140
- <item>
141
- <widget class="QLabel" name="label_3">
142
- <property name="text">
143
- <string>Independent variables</string>
144
- </property>
145
- </widget>
146
- </item>
147
- <item>
148
- <widget class="QTableWidget" name="twIndepVariables">
149
- <column>
150
- <property name="text">
151
- <string>Variable</string>
152
- </property>
153
- </column>
154
- <column>
155
- <property name="text">
156
- <string>Type</string>
157
- </property>
158
- </column>
159
- <column>
160
- <property name="text">
161
- <string>Value</string>
162
- </property>
163
- </column>
164
- </widget>
165
- </item>
166
- </layout>
167
- </widget>
168
- </widget>
169
- </item>
170
- <item>
171
- <widget class="QGroupBox" name="gb_observation_type">
172
- <property name="title">
173
- <string>Observation type</string>
174
- </property>
175
- <layout class="QHBoxLayout" name="horizontalLayout_7">
176
- <item>
177
- <layout class="QHBoxLayout" name="horizontalLayout_4">
178
- <item>
179
- <widget class="QRadioButton" name="rb_media_files">
180
- <property name="text">
181
- <string>Observation from media file(s)</string>
182
- </property>
183
- </widget>
184
- </item>
185
- <item>
186
- <widget class="QRadioButton" name="rb_live">
187
- <property name="text">
188
- <string>Live observation</string>
189
- </property>
190
- </widget>
191
- </item>
192
- <item>
193
- <widget class="QRadioButton" name="rb_images">
194
- <property name="enabled">
195
- <bool>true</bool>
196
- </property>
197
- <property name="text">
198
- <string>Observation from pictures</string>
199
- </property>
200
- </widget>
201
- </item>
202
- <item>
203
- <spacer name="horizontalSpacer_4">
204
- <property name="orientation">
205
- <enum>Qt::Horizontal</enum>
206
- </property>
207
- <property name="sizeHint" stdset="0">
208
- <size>
209
- <width>40</width>
210
- <height>20</height>
211
- </size>
212
- </property>
213
- </spacer>
214
- </item>
215
- </layout>
216
- </item>
217
- </layout>
218
- </widget>
219
- </item>
220
- <item>
221
- <widget class="QStackedWidget" name="sw_observation_type">
222
- <property name="currentIndex">
223
- <number>1</number>
224
- </property>
225
- <widget class="QWidget" name="page"/>
226
- <widget class="QWidget" name="pg_media_files">
227
- <layout class="QVBoxLayout" name="verticalLayout_7">
228
- <item>
229
- <widget class="QTabWidget" name="tabWidget">
230
- <property name="currentIndex">
231
- <number>0</number>
232
- </property>
233
- <widget class="QWidget" name="tab_player_1">
234
- <attribute name="title">
235
- <string>Media files</string>
236
- </attribute>
237
- <layout class="QVBoxLayout" name="verticalLayout">
238
- <item>
239
- <layout class="QVBoxLayout" name="verticalLayout_3">
240
- <item>
241
- <widget class="QTableWidget" name="twVideo1">
242
- <property name="editTriggers">
243
- <set>QAbstractItemView::AnyKeyPressed|QAbstractItemView::DoubleClicked|QAbstractItemView::EditKeyPressed</set>
244
- </property>
245
- <property name="alternatingRowColors">
246
- <bool>true</bool>
247
- </property>
248
- <property name="selectionMode">
249
- <enum>QAbstractItemView::MultiSelection</enum>
250
- </property>
251
- <property name="selectionBehavior">
252
- <enum>QAbstractItemView::SelectRows</enum>
253
- </property>
254
- <property name="textElideMode">
255
- <enum>Qt::ElideNone</enum>
256
- </property>
257
- <column>
258
- <property name="text">
259
- <string>Player</string>
260
- </property>
261
- </column>
262
- <column>
263
- <property name="text">
264
- <string>Offset (seconds)</string>
265
- </property>
266
- </column>
267
- <column>
268
- <property name="text">
269
- <string>Path</string>
270
- </property>
271
- </column>
272
- <column>
273
- <property name="text">
274
- <string>Duration</string>
275
- </property>
276
- </column>
277
- <column>
278
- <property name="text">
279
- <string>FPS</string>
280
- </property>
281
- </column>
282
- <column>
283
- <property name="text">
284
- <string>Video</string>
285
- </property>
286
- </column>
287
- <column>
288
- <property name="text">
289
- <string>Audio</string>
290
- </property>
291
- </column>
292
- </widget>
293
- </item>
294
- </layout>
295
- </item>
296
- <item>
297
- <layout class="QHBoxLayout" name="horizontalLayout_3">
298
- <item>
299
- <widget class="QPushButton" name="pbAddVideo">
300
- <property name="text">
301
- <string>Add media</string>
302
- </property>
303
- </widget>
304
- </item>
305
- <item>
306
- <widget class="QPushButton" name="pbRemoveVideo">
307
- <property name="text">
308
- <string>Remove selected media</string>
309
- </property>
310
- </widget>
311
- </item>
312
- <item>
313
- <spacer name="horizontalSpacer_6">
314
- <property name="orientation">
315
- <enum>Qt::Horizontal</enum>
316
- </property>
317
- <property name="sizeHint" stdset="0">
318
- <size>
319
- <width>40</width>
320
- <height>20</height>
321
- </size>
322
- </property>
323
- </spacer>
324
- </item>
325
- </layout>
326
- </item>
327
- <item>
328
- <layout class="QHBoxLayout" name="horizontalLayout_12">
329
- <item>
330
- <widget class="QPushButton" name="pb_use_media_file_name_as_obsid">
331
- <property name="text">
332
- <string>Use media file name as observation id</string>
333
- </property>
334
- </widget>
335
- </item>
336
- <item>
337
- <spacer name="horizontalSpacer_8">
338
- <property name="orientation">
339
- <enum>Qt::Horizontal</enum>
340
- </property>
341
- <property name="sizeHint" stdset="0">
342
- <size>
343
- <width>40</width>
344
- <height>20</height>
345
- </size>
346
- </property>
347
- </spacer>
348
- </item>
349
- </layout>
350
- </item>
351
- <item>
352
- <widget class="QCheckBox" name="cbVisualizeSpectrogram">
353
- <property name="text">
354
- <string>Visualize the sound spectrogram for the player #1</string>
355
- </property>
356
- </widget>
357
- </item>
358
- <item>
359
- <widget class="QCheckBox" name="cb_visualize_waveform">
360
- <property name="text">
361
- <string>Visualize the waveform for the player #1</string>
362
- </property>
363
- </widget>
364
- </item>
365
- <item>
366
- <widget class="QCheckBox" name="cbCloseCurrentBehaviorsBetweenVideo">
367
- <property name="text">
368
- <string>Stop ongoing state events between successive media files</string>
369
- </property>
370
- </widget>
371
- </item>
372
- </layout>
373
- </widget>
374
- <widget class="QWidget" name="tab_data_files">
375
- <attribute name="title">
376
- <string>Data files</string>
377
- </attribute>
378
- <layout class="QVBoxLayout" name="verticalLayout_17">
379
- <item>
380
- <widget class="QSplitter" name="splitter_5">
381
- <property name="orientation">
382
- <enum>Qt::Vertical</enum>
383
- </property>
384
- <widget class="QWidget" name="layoutWidget_4">
385
- <layout class="QVBoxLayout" name="verticalLayout_15">
386
- <item>
387
- <widget class="QLabel" name="label_7">
388
- <property name="text">
389
- <string>Data files to plot</string>
390
- </property>
391
- </widget>
392
- </item>
393
- <item>
394
- <widget class="QTableWidget" name="tw_data_files">
395
- <property name="selectionMode">
396
- <enum>QAbstractItemView::MultiSelection</enum>
397
- </property>
398
- <column>
399
- <property name="text">
400
- <string>Path</string>
401
- </property>
402
- </column>
403
- <column>
404
- <property name="text">
405
- <string>Columns to plot</string>
406
- </property>
407
- </column>
408
- <column>
409
- <property name="text">
410
- <string>Plot title</string>
411
- </property>
412
- </column>
413
- <column>
414
- <property name="text">
415
- <string>Variable name</string>
416
- </property>
417
- </column>
418
- <column>
419
- <property name="text">
420
- <string>Converters</string>
421
- </property>
422
- </column>
423
- <column>
424
- <property name="text">
425
- <string>Time interval (s)</string>
426
- </property>
427
- </column>
428
- <column>
429
- <property name="text">
430
- <string>Start position (s)</string>
431
- </property>
432
- </column>
433
- <column>
434
- <property name="text">
435
- <string>Substract first value</string>
436
- </property>
437
- </column>
438
- <column>
439
- <property name="text">
440
- <string>Color</string>
441
- </property>
442
- </column>
443
- </widget>
444
- </item>
445
- </layout>
446
- </widget>
447
- <widget class="QWidget" name="layoutWidget_5">
448
- <layout class="QVBoxLayout" name="verticalLayout_16">
449
- <item>
450
- <layout class="QHBoxLayout" name="horizontalLayout_5">
451
- <item>
452
- <widget class="QPushButton" name="pb_add_data_file">
453
- <property name="text">
454
- <string>Add data file</string>
455
- </property>
456
- </widget>
457
- </item>
458
- <item>
459
- <widget class="QPushButton" name="pb_remove_data_file">
460
- <property name="text">
461
- <string>Remove selected data file</string>
462
- </property>
463
- </widget>
464
- </item>
465
- <item>
466
- <widget class="QPushButton" name="pb_view_data_head">
467
- <property name="text">
468
- <string>View first rows</string>
469
- </property>
470
- </widget>
471
- </item>
472
- <item>
473
- <widget class="QPushButton" name="pb_plot_data">
474
- <property name="text">
475
- <string>Show plot</string>
476
- </property>
477
- </widget>
478
- </item>
479
- <item>
480
- <spacer name="horizontalSpacer_7">
481
- <property name="orientation">
482
- <enum>Qt::Horizontal</enum>
483
- </property>
484
- <property name="sizeHint" stdset="0">
485
- <size>
486
- <width>40</width>
487
- <height>20</height>
488
- </size>
489
- </property>
490
- </spacer>
491
- </item>
492
- </layout>
493
- </item>
494
- <item>
495
- <spacer name="verticalSpacer_4">
496
- <property name="orientation">
497
- <enum>Qt::Vertical</enum>
498
- </property>
499
- <property name="sizeHint" stdset="0">
500
- <size>
501
- <width>20</width>
502
- <height>40</height>
503
- </size>
504
- </property>
505
- </spacer>
506
- </item>
507
- </layout>
508
- </widget>
509
- </widget>
510
- </item>
511
- </layout>
512
- </widget>
513
- </widget>
514
- </item>
515
- </layout>
516
- </widget>
517
- <widget class="QWidget" name="pg_live">
518
- <layout class="QVBoxLayout" name="verticalLayout_4">
519
- <item>
520
- <layout class="QVBoxLayout" name="verticalLayout_8">
521
- <item>
522
- <layout class="QHBoxLayout" name="horizontalLayout_8">
523
- <item>
524
- <widget class="QLabel" name="label_4">
525
- <property name="text">
526
- <string>Scan sampling every</string>
527
- </property>
528
- </widget>
529
- </item>
530
- <item>
531
- <widget class="QSpinBox" name="sbScanSampling">
532
- <property name="maximum">
533
- <number>1000000</number>
534
- </property>
535
- </widget>
536
- </item>
537
- <item>
538
- <widget class="QLabel" name="label_6">
539
- <property name="text">
540
- <string>seconds</string>
541
- </property>
542
- </widget>
543
- </item>
544
- <item>
545
- <spacer name="horizontalSpacer">
546
- <property name="orientation">
547
- <enum>Qt::Horizontal</enum>
548
- </property>
549
- <property name="sizeHint" stdset="0">
550
- <size>
551
- <width>40</width>
552
- <height>20</height>
553
- </size>
554
- </property>
555
- </spacer>
556
- </item>
557
- </layout>
558
- </item>
559
- <item>
560
- <widget class="QCheckBox" name="cb_start_from_current_time">
561
- <property name="text">
562
- <string>Start from current time</string>
563
- </property>
564
- </widget>
565
- </item>
566
- <item>
567
- <widget class="QRadioButton" name="rb_day_time">
568
- <property name="enabled">
569
- <bool>false</bool>
570
- </property>
571
- <property name="text">
572
- <string>Day time</string>
573
- </property>
574
- <property name="checked">
575
- <bool>true</bool>
576
- </property>
577
- </widget>
578
- </item>
579
- <item>
580
- <widget class="QRadioButton" name="rb_epoch_time">
581
- <property name="enabled">
582
- <bool>false</bool>
583
- </property>
584
- <property name="text">
585
- <string>Epoch time (seconds since 1970-01-01)</string>
586
- </property>
587
- </widget>
588
- </item>
589
- <item>
590
- <spacer name="verticalSpacer_2">
591
- <property name="orientation">
592
- <enum>Qt::Vertical</enum>
593
- </property>
594
- <property name="sizeHint" stdset="0">
595
- <size>
596
- <width>20</width>
597
- <height>40</height>
598
- </size>
599
- </property>
600
- </spacer>
601
- </item>
602
- </layout>
603
- </item>
604
- </layout>
605
- </widget>
606
- <widget class="QWidget" name="pg_images">
607
- <layout class="QVBoxLayout" name="verticalLayout_5">
608
- <item>
609
- <layout class="QHBoxLayout" name="horizontalLayout_9">
610
- <item>
611
- <widget class="QListWidget" name="lw_images_directory"/>
612
- </item>
613
- <item>
614
- <layout class="QVBoxLayout" name="verticalLayout_9">
615
- <item>
616
- <widget class="QPushButton" name="pb_add_directory">
617
- <property name="text">
618
- <string>Add directory</string>
619
- </property>
620
- </widget>
621
- </item>
622
- <item>
623
- <widget class="QPushButton" name="pb_remove_directory">
624
- <property name="text">
625
- <string>Remove directory</string>
626
- </property>
627
- </widget>
628
- </item>
629
- <item>
630
- <spacer name="verticalSpacer_3">
631
- <property name="orientation">
632
- <enum>Qt::Vertical</enum>
633
- </property>
634
- <property name="sizeHint" stdset="0">
635
- <size>
636
- <width>20</width>
637
- <height>40</height>
638
- </size>
639
- </property>
640
- </spacer>
641
- </item>
642
- </layout>
643
- </item>
644
- </layout>
645
- </item>
646
- <item>
647
- <layout class="QHBoxLayout" name="horizontalLayout_13">
648
- <item>
649
- <widget class="QPushButton" name="pb_use_img_dir_as_obsid">
650
- <property name="text">
651
- <string>Use the pictures directory as observation id</string>
652
- </property>
653
- </widget>
654
- </item>
655
- <item>
656
- <spacer name="horizontalSpacer_9">
657
- <property name="orientation">
658
- <enum>Qt::Horizontal</enum>
659
- </property>
660
- <property name="sizeHint" stdset="0">
661
- <size>
662
- <width>40</width>
663
- <height>20</height>
664
- </size>
665
- </property>
666
- </spacer>
667
- </item>
668
- </layout>
669
- </item>
670
- <item>
671
- <widget class="QGroupBox" name="groupBox">
672
- <property name="title">
673
- <string>Time</string>
674
- </property>
675
- <layout class="QHBoxLayout" name="horizontalLayout_11">
676
- <item>
677
- <layout class="QHBoxLayout" name="horizontalLayout_10">
678
- <item>
679
- <widget class="QRadioButton" name="rb_no_time">
680
- <property name="text">
681
- <string>No time</string>
682
- </property>
683
- </widget>
684
- </item>
685
- <item>
686
- <widget class="QRadioButton" name="rb_use_exif">
687
- <property name="text">
688
- <string>Use the EXIF DateTimeOriginal tag</string>
689
- </property>
690
- </widget>
691
- </item>
692
- <item>
693
- <widget class="QRadioButton" name="rb_time_lapse">
694
- <property name="text">
695
- <string>Time lapse (s)</string>
696
- </property>
697
- </widget>
698
- </item>
699
- <item>
700
- <widget class="QDoubleSpinBox" name="sb_time_lapse">
701
- <property name="decimals">
702
- <number>3</number>
703
- </property>
704
- <property name="maximum">
705
- <double>86400.000000000000000</double>
706
- </property>
707
- </widget>
708
- </item>
709
- <item>
710
- <spacer name="horizontalSpacer_5">
711
- <property name="orientation">
712
- <enum>Qt::Horizontal</enum>
713
- </property>
714
- <property name="sizeHint" stdset="0">
715
- <size>
716
- <width>40</width>
717
- <height>20</height>
718
- </size>
719
- </property>
720
- </spacer>
721
- </item>
722
- </layout>
723
- </item>
724
- </layout>
725
- </widget>
726
- </item>
727
- </layout>
728
- </widget>
729
- </widget>
730
- </item>
731
- <item>
732
- <layout class="QHBoxLayout" name="horizontalLayout">
733
- <item>
734
- <spacer name="horizontalSpacer_3">
735
- <property name="orientation">
736
- <enum>Qt::Horizontal</enum>
737
- </property>
738
- <property name="sizeHint" stdset="0">
739
- <size>
740
- <width>40</width>
741
- <height>20</height>
742
- </size>
743
- </property>
744
- </spacer>
745
- </item>
746
- <item>
747
- <widget class="QPushButton" name="pbCancel">
748
- <property name="text">
749
- <string>Cancel</string>
750
- </property>
751
- </widget>
752
- </item>
753
- <item>
754
- <widget class="QPushButton" name="pbSave">
755
- <property name="text">
756
- <string>Save</string>
757
- </property>
758
- </widget>
759
- </item>
760
- <item>
761
- <widget class="QPushButton" name="pbLaunch">
762
- <property name="text">
763
- <string>Start</string>
764
- </property>
765
- </widget>
766
- </item>
767
- </layout>
768
- </item>
769
- </layout>
770
- </widget>
771
- <resources/>
772
- <connections/>
773
- </ui>