boris-behav-obs 8.16.5__py3-none-any.whl → 9.7.1__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.
- boris/__init__.py +1 -1
- boris/__main__.py +1 -1
- boris/about.py +24 -36
- boris/add_modifier.py +88 -80
- boris/add_modifier_ui.py +235 -131
- boris/advanced_event_filtering.py +23 -29
- boris/analysis_plugins/__init__.py +0 -0
- boris/analysis_plugins/_latency.py +59 -0
- boris/analysis_plugins/irr_cohen_kappa.py +109 -0
- boris/analysis_plugins/irr_cohen_kappa_with_modifiers.py +112 -0
- boris/analysis_plugins/irr_weighted_cohen_kappa.py +157 -0
- boris/analysis_plugins/irr_weighted_cohen_kappa_with_modifiers.py +162 -0
- boris/analysis_plugins/list_of_dataframe_columns.py +22 -0
- boris/analysis_plugins/number_of_occurences.py +22 -0
- boris/analysis_plugins/number_of_occurences_by_independent_variable.py +54 -0
- boris/analysis_plugins/time_budget.py +61 -0
- boris/behav_coding_map_creator.py +228 -229
- boris/behavior_binary_table.py +33 -50
- boris/behaviors_coding_map.py +17 -18
- boris/boris_cli.py +6 -25
- boris/cmd_arguments.py +12 -1
- boris/coding_pad.py +16 -34
- boris/config.py +102 -50
- boris/config_file.py +55 -64
- boris/connections.py +105 -58
- boris/converters.py +13 -37
- boris/converters_ui.py +187 -110
- boris/cooccurence.py +250 -0
- boris/core.py +2108 -1275
- boris/core_qrc.py +15892 -10829
- boris/core_ui.py +941 -806
- boris/db_functions.py +17 -42
- boris/dev.py +27 -7
- boris/dialog.py +461 -242
- boris/duration_widget.py +9 -14
- boris/edit_event.py +61 -31
- boris/edit_event_ui.py +208 -97
- boris/event_operations.py +405 -281
- boris/events_cursor.py +25 -17
- boris/events_snapshots.py +36 -82
- boris/exclusion_matrix.py +4 -9
- boris/export_events.py +180 -203
- boris/export_observation.py +60 -73
- boris/external_processes.py +123 -98
- boris/geometric_measurement.py +427 -218
- boris/gui_utilities.py +91 -14
- boris/image_overlay.py +4 -4
- boris/import_observations.py +190 -98
- boris/ipc_mpv.py +304 -0
- boris/irr.py +20 -57
- boris/latency.py +31 -24
- boris/measurement_widget.py +14 -18
- boris/media_file.py +17 -19
- boris/menu_options.py +16 -6
- boris/modifier_coding_map_creator.py +1013 -0
- boris/modifiers_coding_map.py +7 -9
- boris/mpv2.py +128 -35
- boris/observation.py +493 -210
- boris/observation_operations.py +1010 -391
- boris/observation_ui.py +573 -363
- boris/observations_list.py +51 -58
- boris/otx_parser.py +74 -68
- boris/param_panel.py +45 -59
- boris/param_panel_ui.py +254 -138
- boris/player_dock_widget.py +91 -56
- boris/plot_data_module.py +18 -53
- boris/plot_events.py +56 -153
- boris/plot_events_rt.py +16 -30
- boris/plot_spectrogram_rt.py +80 -56
- boris/plot_waveform_rt.py +23 -48
- boris/plugins.py +431 -0
- boris/portion/__init__.py +18 -8
- boris/portion/const.py +35 -18
- boris/portion/dict.py +5 -5
- boris/portion/func.py +2 -2
- boris/portion/interval.py +21 -41
- boris/portion/io.py +41 -32
- boris/preferences.py +298 -123
- boris/preferences_ui.py +664 -225
- boris/project.py +293 -270
- boris/project_functions.py +610 -537
- boris/project_import_export.py +204 -213
- boris/project_ui.py +673 -441
- boris/qrc_boris.py +6 -3
- boris/qrc_boris5.py +6 -3
- boris/select_modifiers.py +62 -90
- boris/select_observations.py +19 -197
- boris/select_subj_behav.py +67 -39
- boris/state_events.py +51 -33
- boris/subjects_pad.py +6 -8
- boris/synthetic_time_budget.py +42 -26
- boris/time_budget_functions.py +169 -169
- boris/time_budget_widget.py +77 -89
- boris/transitions.py +41 -41
- boris/utilities.py +562 -222
- boris/version.py +3 -3
- boris/video_equalizer.py +16 -14
- boris/video_equalizer_ui.py +199 -130
- boris/video_operations.py +78 -28
- boris/view_df.py +104 -0
- boris/view_df_ui.py +75 -0
- boris/write_event.py +240 -136
- boris_behav_obs-9.7.1.dist-info/METADATA +140 -0
- boris_behav_obs-9.7.1.dist-info/RECORD +109 -0
- {boris_behav_obs-8.16.5.dist-info → boris_behav_obs-9.7.1.dist-info}/WHEEL +1 -1
- boris_behav_obs-9.7.1.dist-info/entry_points.txt +2 -0
- boris/README.TXT +0 -22
- boris/add_modifier.ui +0 -323
- boris/converters.ui +0 -289
- boris/core.qrc +0 -37
- boris/core.ui +0 -1571
- boris/edit_event.ui +0 -233
- boris/icons/logo_eye.ico +0 -0
- boris/map_creator.py +0 -982
- boris/observation.ui +0 -814
- boris/param_panel.ui +0 -379
- boris/preferences.ui +0 -537
- boris/project.ui +0 -1074
- boris/vlc_local.py +0 -90
- boris_behav_obs-8.16.5.dist-info/LICENSE.TXT +0 -674
- boris_behav_obs-8.16.5.dist-info/METADATA +0 -134
- boris_behav_obs-8.16.5.dist-info/RECORD +0 -107
- boris_behav_obs-8.16.5.dist-info/entry_points.txt +0 -2
- {boris → boris_behav_obs-9.7.1.dist-info/licenses}/LICENSE.TXT +0 -0
- {boris_behav_obs-8.16.5.dist-info → boris_behav_obs-9.7.1.dist-info}/top_level.txt +0 -0
boris/core.ui
DELETED
|
@@ -1,1571 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<ui version="4.0">
|
|
3
|
-
<class>MainWindow</class>
|
|
4
|
-
<widget class="QMainWindow" name="MainWindow">
|
|
5
|
-
<property name="geometry">
|
|
6
|
-
<rect>
|
|
7
|
-
<x>0</x>
|
|
8
|
-
<y>0</y>
|
|
9
|
-
<width>2018</width>
|
|
10
|
-
<height>725</height>
|
|
11
|
-
</rect>
|
|
12
|
-
</property>
|
|
13
|
-
<property name="windowTitle">
|
|
14
|
-
<string>BORIS</string>
|
|
15
|
-
</property>
|
|
16
|
-
<property name="dockOptions">
|
|
17
|
-
<set>QMainWindow::AllowNestedDocks|QMainWindow::AllowTabbedDocks|QMainWindow::AnimatedDocks</set>
|
|
18
|
-
</property>
|
|
19
|
-
<property name="unifiedTitleAndToolBarOnMac">
|
|
20
|
-
<bool>false</bool>
|
|
21
|
-
</property>
|
|
22
|
-
<widget class="QWidget" name="centralwidget">
|
|
23
|
-
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
24
|
-
<item>
|
|
25
|
-
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
26
|
-
<item>
|
|
27
|
-
<layout class="QVBoxLayout" name="verticalLayout_3">
|
|
28
|
-
<item>
|
|
29
|
-
<widget class="QWidget" name="w_logo" native="true">
|
|
30
|
-
<layout class="QVBoxLayout" name="verticalLayout_8">
|
|
31
|
-
<item>
|
|
32
|
-
<layout class="QVBoxLayout" name="verticalLayout_6">
|
|
33
|
-
<item>
|
|
34
|
-
<widget class="QLabel" name="lbLogoBoris">
|
|
35
|
-
<property name="text">
|
|
36
|
-
<string/>
|
|
37
|
-
</property>
|
|
38
|
-
<property name="scaledContents">
|
|
39
|
-
<bool>false</bool>
|
|
40
|
-
</property>
|
|
41
|
-
<property name="alignment">
|
|
42
|
-
<set>Qt::AlignCenter</set>
|
|
43
|
-
</property>
|
|
44
|
-
</widget>
|
|
45
|
-
</item>
|
|
46
|
-
<item>
|
|
47
|
-
<widget class="QLabel" name="lbLogoUnito">
|
|
48
|
-
<property name="text">
|
|
49
|
-
<string/>
|
|
50
|
-
</property>
|
|
51
|
-
<property name="textFormat">
|
|
52
|
-
<enum>Qt::AutoText</enum>
|
|
53
|
-
</property>
|
|
54
|
-
<property name="alignment">
|
|
55
|
-
<set>Qt::AlignCenter</set>
|
|
56
|
-
</property>
|
|
57
|
-
<property name="wordWrap">
|
|
58
|
-
<bool>true</bool>
|
|
59
|
-
</property>
|
|
60
|
-
</widget>
|
|
61
|
-
</item>
|
|
62
|
-
</layout>
|
|
63
|
-
</item>
|
|
64
|
-
</layout>
|
|
65
|
-
</widget>
|
|
66
|
-
</item>
|
|
67
|
-
<item>
|
|
68
|
-
<widget class="QWidget" name="w_obs_info" native="true">
|
|
69
|
-
<property name="enabled">
|
|
70
|
-
<bool>true</bool>
|
|
71
|
-
</property>
|
|
72
|
-
<layout class="QVBoxLayout" name="verticalLayout_10">
|
|
73
|
-
<item>
|
|
74
|
-
<layout class="QVBoxLayout" name="verticalLayout_9">
|
|
75
|
-
<item>
|
|
76
|
-
<widget class="QLabel" name="lb_player_status">
|
|
77
|
-
<property name="text">
|
|
78
|
-
<string>lb_player_status</string>
|
|
79
|
-
</property>
|
|
80
|
-
</widget>
|
|
81
|
-
</item>
|
|
82
|
-
<item>
|
|
83
|
-
<widget class="QLabel" name="lb_current_media_time">
|
|
84
|
-
<property name="text">
|
|
85
|
-
<string>lb_current_media_time</string>
|
|
86
|
-
</property>
|
|
87
|
-
<property name="wordWrap">
|
|
88
|
-
<bool>true</bool>
|
|
89
|
-
</property>
|
|
90
|
-
</widget>
|
|
91
|
-
</item>
|
|
92
|
-
<item>
|
|
93
|
-
<spacer name="verticalSpacer_2">
|
|
94
|
-
<property name="orientation">
|
|
95
|
-
<enum>Qt::Vertical</enum>
|
|
96
|
-
</property>
|
|
97
|
-
<property name="sizeHint" stdset="0">
|
|
98
|
-
<size>
|
|
99
|
-
<width>20</width>
|
|
100
|
-
<height>40</height>
|
|
101
|
-
</size>
|
|
102
|
-
</property>
|
|
103
|
-
</spacer>
|
|
104
|
-
</item>
|
|
105
|
-
<item>
|
|
106
|
-
<widget class="QLabel" name="lbFocalSubject">
|
|
107
|
-
<property name="text">
|
|
108
|
-
<string>lbFocalSubject</string>
|
|
109
|
-
</property>
|
|
110
|
-
<property name="wordWrap">
|
|
111
|
-
<bool>true</bool>
|
|
112
|
-
</property>
|
|
113
|
-
</widget>
|
|
114
|
-
</item>
|
|
115
|
-
<item>
|
|
116
|
-
<widget class="QLabel" name="lbCurrentStates">
|
|
117
|
-
<property name="text">
|
|
118
|
-
<string>lbCurrentStates</string>
|
|
119
|
-
</property>
|
|
120
|
-
<property name="wordWrap">
|
|
121
|
-
<bool>true</bool>
|
|
122
|
-
</property>
|
|
123
|
-
</widget>
|
|
124
|
-
</item>
|
|
125
|
-
</layout>
|
|
126
|
-
</item>
|
|
127
|
-
<item>
|
|
128
|
-
<widget class="QWidget" name="w_live" native="true">
|
|
129
|
-
<layout class="QVBoxLayout" name="verticalLayout_11">
|
|
130
|
-
<item>
|
|
131
|
-
<widget class="QPushButton" name="pb_live_obs">
|
|
132
|
-
<property name="text">
|
|
133
|
-
<string>PushButton</string>
|
|
134
|
-
</property>
|
|
135
|
-
</widget>
|
|
136
|
-
</item>
|
|
137
|
-
</layout>
|
|
138
|
-
</widget>
|
|
139
|
-
</item>
|
|
140
|
-
</layout>
|
|
141
|
-
</widget>
|
|
142
|
-
</item>
|
|
143
|
-
</layout>
|
|
144
|
-
</item>
|
|
145
|
-
</layout>
|
|
146
|
-
</item>
|
|
147
|
-
</layout>
|
|
148
|
-
</widget>
|
|
149
|
-
<widget class="QMenuBar" name="menubar">
|
|
150
|
-
<property name="geometry">
|
|
151
|
-
<rect>
|
|
152
|
-
<x>0</x>
|
|
153
|
-
<y>0</y>
|
|
154
|
-
<width>2018</width>
|
|
155
|
-
<height>22</height>
|
|
156
|
-
</rect>
|
|
157
|
-
</property>
|
|
158
|
-
<widget class="QMenu" name="menuHelp">
|
|
159
|
-
<property name="title">
|
|
160
|
-
<string>Help</string>
|
|
161
|
-
</property>
|
|
162
|
-
<addaction name="actionUser_guide"/>
|
|
163
|
-
<addaction name="actionCheckUpdate"/>
|
|
164
|
-
<addaction name="separator"/>
|
|
165
|
-
<addaction name="actionAbout"/>
|
|
166
|
-
</widget>
|
|
167
|
-
<widget class="QMenu" name="menuFile">
|
|
168
|
-
<property name="title">
|
|
169
|
-
<string>Project</string>
|
|
170
|
-
</property>
|
|
171
|
-
<widget class="QMenu" name="menuRecent_projects">
|
|
172
|
-
<property name="title">
|
|
173
|
-
<string>Recent projects</string>
|
|
174
|
-
</property>
|
|
175
|
-
<addaction name="separator"/>
|
|
176
|
-
</widget>
|
|
177
|
-
<widget class="QMenu" name="menuImport_project">
|
|
178
|
-
<property name="title">
|
|
179
|
-
<string>Import project from...</string>
|
|
180
|
-
</property>
|
|
181
|
-
<addaction name="actionNoldus_Observer_template"/>
|
|
182
|
-
</widget>
|
|
183
|
-
<widget class="QMenu" name="menuMedia_file_Images_directories">
|
|
184
|
-
<property name="title">
|
|
185
|
-
<string>External files</string>
|
|
186
|
-
</property>
|
|
187
|
-
<widget class="QMenu" name="menuSet_paths_relative_to_project_dir">
|
|
188
|
-
<property name="title">
|
|
189
|
-
<string>Set paths relative to project dir</string>
|
|
190
|
-
</property>
|
|
191
|
-
<addaction name="action_media_file_and_images_directories_relative_path"/>
|
|
192
|
-
<addaction name="action_data_files_relative_path"/>
|
|
193
|
-
</widget>
|
|
194
|
-
<widget class="QMenu" name="menuRemove_paths">
|
|
195
|
-
<property name="title">
|
|
196
|
-
<string>Remove paths</string>
|
|
197
|
-
</property>
|
|
198
|
-
<addaction name="action_remove_media_files_and_images_directories_path"/>
|
|
199
|
-
<addaction name="action_remove_data_files_path"/>
|
|
200
|
-
</widget>
|
|
201
|
-
<addaction name="actionRemove_path_from_media_files"/>
|
|
202
|
-
<addaction name="menuSet_paths_relative_to_project_dir"/>
|
|
203
|
-
<addaction name="menuRemove_paths"/>
|
|
204
|
-
</widget>
|
|
205
|
-
<addaction name="actionNew_project"/>
|
|
206
|
-
<addaction name="actionOpen_project"/>
|
|
207
|
-
<addaction name="menuRecent_projects"/>
|
|
208
|
-
<addaction name="menuImport_project"/>
|
|
209
|
-
<addaction name="actionEdit_project"/>
|
|
210
|
-
<addaction name="actionSave_project"/>
|
|
211
|
-
<addaction name="actionSave_project_as"/>
|
|
212
|
-
<addaction name="actionExport_project"/>
|
|
213
|
-
<addaction name="actionClose_project"/>
|
|
214
|
-
<addaction name="separator"/>
|
|
215
|
-
<addaction name="actionCheck_project"/>
|
|
216
|
-
<addaction name="menuMedia_file_Images_directories"/>
|
|
217
|
-
<addaction name="actionSend_project"/>
|
|
218
|
-
<addaction name="separator"/>
|
|
219
|
-
<addaction name="actionPreferences"/>
|
|
220
|
-
<addaction name="separator"/>
|
|
221
|
-
<addaction name="actionQuit"/>
|
|
222
|
-
</widget>
|
|
223
|
-
<widget class="QMenu" name="menuObservations">
|
|
224
|
-
<property name="title">
|
|
225
|
-
<string>Observations</string>
|
|
226
|
-
</property>
|
|
227
|
-
<widget class="QMenu" name="menuCreate_transitions_matrix">
|
|
228
|
-
<property name="title">
|
|
229
|
-
<string>Create transitions matrix</string>
|
|
230
|
-
</property>
|
|
231
|
-
<addaction name="actionAll_transitions"/>
|
|
232
|
-
<addaction name="actionFrequencies_of_transitions_after_behaviors"/>
|
|
233
|
-
<addaction name="actionNumber_of_transitions"/>
|
|
234
|
-
</widget>
|
|
235
|
-
<widget class="QMenu" name="menuExport_events">
|
|
236
|
-
<property name="title">
|
|
237
|
-
<string>Export events</string>
|
|
238
|
-
</property>
|
|
239
|
-
<widget class="QMenu" name="menuas_behavioural_sequences">
|
|
240
|
-
<property name="title">
|
|
241
|
-
<string>as behavioural sequences</string>
|
|
242
|
-
</property>
|
|
243
|
-
<addaction name="actionseparated_subjects"/>
|
|
244
|
-
<addaction name="actiongrouped_subjects"/>
|
|
245
|
-
</widget>
|
|
246
|
-
<addaction name="actionExportEvents_2"/>
|
|
247
|
-
<addaction name="actionExport_aggregated_events"/>
|
|
248
|
-
<addaction name="menuas_behavioural_sequences"/>
|
|
249
|
-
<addaction name="actionExport_events_as_Praat_TextGrid"/>
|
|
250
|
-
<addaction name="actionJWatcher"/>
|
|
251
|
-
<addaction name="action_behavior_binary_table"/>
|
|
252
|
-
</widget>
|
|
253
|
-
<addaction name="actionNew_observation"/>
|
|
254
|
-
<addaction name="actionOpen_observation"/>
|
|
255
|
-
<addaction name="actionView_observation"/>
|
|
256
|
-
<addaction name="actionEdit_observation_2"/>
|
|
257
|
-
<addaction name="actionObservationsList"/>
|
|
258
|
-
<addaction name="actionOpen_observation_2"/>
|
|
259
|
-
<addaction name="actionEdit_observation"/>
|
|
260
|
-
<addaction name="separator"/>
|
|
261
|
-
<addaction name="actionClose_observation"/>
|
|
262
|
-
<addaction name="separator"/>
|
|
263
|
-
<addaction name="actionRemove_observations"/>
|
|
264
|
-
<addaction name="separator"/>
|
|
265
|
-
<addaction name="actionLoad_observations_file"/>
|
|
266
|
-
<addaction name="actionExport_observations_list"/>
|
|
267
|
-
<addaction name="separator"/>
|
|
268
|
-
<addaction name="actionAdd_event"/>
|
|
269
|
-
<addaction name="actionEdit_selected_events"/>
|
|
270
|
-
<addaction name="actionEdit_event_time"/>
|
|
271
|
-
<addaction name="actionUndo"/>
|
|
272
|
-
<addaction name="separator"/>
|
|
273
|
-
<addaction name="actionExplore_project"/>
|
|
274
|
-
<addaction name="actionFind_events"/>
|
|
275
|
-
<addaction name="actionFind_replace_events"/>
|
|
276
|
-
<addaction name="actionCheckStateEvents"/>
|
|
277
|
-
<addaction name="actionClose_unpaired_events"/>
|
|
278
|
-
<addaction name="actionSelect_observations"/>
|
|
279
|
-
<addaction name="separator"/>
|
|
280
|
-
<addaction name="actionDelete_selected_events"/>
|
|
281
|
-
<addaction name="actionDelete_all_events"/>
|
|
282
|
-
<addaction name="separator"/>
|
|
283
|
-
<addaction name="menuExport_events"/>
|
|
284
|
-
<addaction name="separator"/>
|
|
285
|
-
<addaction name="menuCreate_subtitles_2"/>
|
|
286
|
-
<addaction name="actionExtract_events_from_media_files"/>
|
|
287
|
-
<addaction name="actionExtract_frames_from_media_files"/>
|
|
288
|
-
<addaction name="separator"/>
|
|
289
|
-
<addaction name="menuCreate_transitions_matrix"/>
|
|
290
|
-
</widget>
|
|
291
|
-
<widget class="QMenu" name="menuAnalyze">
|
|
292
|
-
<property name="title">
|
|
293
|
-
<string>Analysis</string>
|
|
294
|
-
</property>
|
|
295
|
-
<widget class="QMenu" name="menuPlot_events">
|
|
296
|
-
<property name="title">
|
|
297
|
-
<string>Plot</string>
|
|
298
|
-
</property>
|
|
299
|
-
<addaction name="actionPlot_events2"/>
|
|
300
|
-
<addaction name="actionBehavior_bar_plot"/>
|
|
301
|
-
</widget>
|
|
302
|
-
<widget class="QMenu" name="menuInter_rater_reliability">
|
|
303
|
-
<property name="title">
|
|
304
|
-
<string>Inter-rater reliability</string>
|
|
305
|
-
</property>
|
|
306
|
-
<addaction name="actionCohen_s_kappa"/>
|
|
307
|
-
</widget>
|
|
308
|
-
<widget class="QMenu" name="menuSimilarities">
|
|
309
|
-
<property name="title">
|
|
310
|
-
<string>Similarities</string>
|
|
311
|
-
</property>
|
|
312
|
-
<addaction name="actionNeedleman_Wunsch"/>
|
|
313
|
-
</widget>
|
|
314
|
-
<addaction name="actionTime_budget"/>
|
|
315
|
-
<addaction name="actionTime_budget_by_behaviors_category"/>
|
|
316
|
-
<addaction name="actionTime_budget_report"/>
|
|
317
|
-
<addaction name="actionSynthetic_binned_time_budget"/>
|
|
318
|
-
<addaction name="menuPlot_events"/>
|
|
319
|
-
<addaction name="menuInter_rater_reliability"/>
|
|
320
|
-
<addaction name="menuSimilarities"/>
|
|
321
|
-
<addaction name="action_advanced_event_filtering"/>
|
|
322
|
-
<addaction name="action_latency"/>
|
|
323
|
-
</widget>
|
|
324
|
-
<widget class="QMenu" name="menuPlayback">
|
|
325
|
-
<property name="title">
|
|
326
|
-
<string>Playback</string>
|
|
327
|
-
</property>
|
|
328
|
-
<widget class="QMenu" name="menuImage_overlay_on_video_2">
|
|
329
|
-
<property name="title">
|
|
330
|
-
<string>Image overlay on video</string>
|
|
331
|
-
</property>
|
|
332
|
-
<addaction name="actionAdd_image_overlay_on_video"/>
|
|
333
|
-
<addaction name="actionRemove_image_overlay"/>
|
|
334
|
-
</widget>
|
|
335
|
-
<addaction name="actionPlay"/>
|
|
336
|
-
<addaction name="actionPrevious"/>
|
|
337
|
-
<addaction name="actionNext"/>
|
|
338
|
-
<addaction name="actionJumpForward"/>
|
|
339
|
-
<addaction name="actionJumpBackward"/>
|
|
340
|
-
<addaction name="actionJumpTo"/>
|
|
341
|
-
<addaction name="action_deinterlace"/>
|
|
342
|
-
<addaction name="separator"/>
|
|
343
|
-
<addaction name="actionZoom_level"/>
|
|
344
|
-
<addaction name="separator"/>
|
|
345
|
-
<addaction name="actionRotate_current_video"/>
|
|
346
|
-
<addaction name="separator"/>
|
|
347
|
-
<addaction name="actionDisplay_subtitles"/>
|
|
348
|
-
<addaction name="separator"/>
|
|
349
|
-
<addaction name="menuImage_overlay_on_video_2"/>
|
|
350
|
-
<addaction name="separator"/>
|
|
351
|
-
<addaction name="actionVideo_equalizer"/>
|
|
352
|
-
</widget>
|
|
353
|
-
<widget class="QMenu" name="menuTools">
|
|
354
|
-
<property name="title">
|
|
355
|
-
<string>Tools</string>
|
|
356
|
-
</property>
|
|
357
|
-
<widget class="QMenu" name="menuTransitions_flow_diagram">
|
|
358
|
-
<property name="title">
|
|
359
|
-
<string>Transitions flow diagram</string>
|
|
360
|
-
</property>
|
|
361
|
-
<addaction name="actionCreate_transitions_flow_diagram"/>
|
|
362
|
-
<addaction name="actionCreate_transitions_flow_diagram_2"/>
|
|
363
|
-
</widget>
|
|
364
|
-
<widget class="QMenu" name="menu_coding_map_creator">
|
|
365
|
-
<property name="title">
|
|
366
|
-
<string>Create a coding map</string>
|
|
367
|
-
</property>
|
|
368
|
-
<addaction name="action_create_behaviors_coding_map"/>
|
|
369
|
-
<addaction name="action_create_modifiers_coding_map"/>
|
|
370
|
-
</widget>
|
|
371
|
-
<widget class="QMenu" name="menuMedia_file">
|
|
372
|
-
<property name="title">
|
|
373
|
-
<string>Media file</string>
|
|
374
|
-
</property>
|
|
375
|
-
<addaction name="actionMedia_file_information_2"/>
|
|
376
|
-
<addaction name="actionRecode_resize_video"/>
|
|
377
|
-
<addaction name="actionRotate_video"/>
|
|
378
|
-
<addaction name="actionMerge_media_files"/>
|
|
379
|
-
</widget>
|
|
380
|
-
<addaction name="menuMedia_file"/>
|
|
381
|
-
<addaction name="action_block_dockwidgets"/>
|
|
382
|
-
<addaction name="actionPlot_events_in_real_time"/>
|
|
383
|
-
<addaction name="actionShow_spectrogram"/>
|
|
384
|
-
<addaction name="actionShow_the_sound_waveform"/>
|
|
385
|
-
<addaction name="actionShow_data_files"/>
|
|
386
|
-
<addaction name="action_geometric_measurements"/>
|
|
387
|
-
<addaction name="actionBehaviors_coding_map"/>
|
|
388
|
-
<addaction name="actionCoding_pad"/>
|
|
389
|
-
<addaction name="actionSubjects_pad"/>
|
|
390
|
-
<addaction name="separator"/>
|
|
391
|
-
<addaction name="menu_coding_map_creator"/>
|
|
392
|
-
<addaction name="menuTransitions_flow_diagram"/>
|
|
393
|
-
</widget>
|
|
394
|
-
<addaction name="menuFile"/>
|
|
395
|
-
<addaction name="menuObservations"/>
|
|
396
|
-
<addaction name="menuPlayback"/>
|
|
397
|
-
<addaction name="menuTools"/>
|
|
398
|
-
<addaction name="menuAnalyze"/>
|
|
399
|
-
<addaction name="menuHelp"/>
|
|
400
|
-
</widget>
|
|
401
|
-
<widget class="QToolBar" name="toolBar">
|
|
402
|
-
<property name="enabled">
|
|
403
|
-
<bool>true</bool>
|
|
404
|
-
</property>
|
|
405
|
-
<property name="windowTitle">
|
|
406
|
-
<string>toolBar</string>
|
|
407
|
-
</property>
|
|
408
|
-
<property name="toolTip">
|
|
409
|
-
<string/>
|
|
410
|
-
</property>
|
|
411
|
-
<attribute name="toolBarArea">
|
|
412
|
-
<enum>TopToolBarArea</enum>
|
|
413
|
-
</attribute>
|
|
414
|
-
<attribute name="toolBarBreak">
|
|
415
|
-
<bool>false</bool>
|
|
416
|
-
</attribute>
|
|
417
|
-
<addaction name="action_obs_list"/>
|
|
418
|
-
<addaction name="actionPlay"/>
|
|
419
|
-
<addaction name="actionReset"/>
|
|
420
|
-
<addaction name="actionJumpBackward"/>
|
|
421
|
-
<addaction name="actionJumpForward"/>
|
|
422
|
-
<addaction name="actionNormalSpeed"/>
|
|
423
|
-
<addaction name="actionFaster"/>
|
|
424
|
-
<addaction name="actionSlower"/>
|
|
425
|
-
<addaction name="actionPrevious"/>
|
|
426
|
-
<addaction name="actionNext"/>
|
|
427
|
-
<addaction name="actionSnapshot"/>
|
|
428
|
-
<addaction name="actionFrame_by_frame"/>
|
|
429
|
-
<addaction name="actionFrame_backward"/>
|
|
430
|
-
<addaction name="actionFrame_forward"/>
|
|
431
|
-
<addaction name="actionCloseObs"/>
|
|
432
|
-
<addaction name="actionPlot_events_in_real_time"/>
|
|
433
|
-
<addaction name="actionCurrent_Time_Budget"/>
|
|
434
|
-
<addaction name="actionPlot_current_observation"/>
|
|
435
|
-
<addaction name="actionPlot_current_time_budget"/>
|
|
436
|
-
<addaction name="action_geometric_measurements"/>
|
|
437
|
-
<addaction name="actionFind_in_current_obs"/>
|
|
438
|
-
<addaction name="actionExplore_project"/>
|
|
439
|
-
<addaction name="actionPreferences"/>
|
|
440
|
-
</widget>
|
|
441
|
-
<widget class="QDockWidget" name="dwEthogram">
|
|
442
|
-
<property name="floating">
|
|
443
|
-
<bool>false</bool>
|
|
444
|
-
</property>
|
|
445
|
-
<property name="features">
|
|
446
|
-
<set>QDockWidget::DockWidgetFloatable|QDockWidget::DockWidgetMovable</set>
|
|
447
|
-
</property>
|
|
448
|
-
<property name="windowTitle">
|
|
449
|
-
<string>Ethogram</string>
|
|
450
|
-
</property>
|
|
451
|
-
<attribute name="dockWidgetArea">
|
|
452
|
-
<number>1</number>
|
|
453
|
-
</attribute>
|
|
454
|
-
<widget class="QWidget" name="dockWidgetContents_3">
|
|
455
|
-
<layout class="QVBoxLayout" name="verticalLayout_5">
|
|
456
|
-
<item>
|
|
457
|
-
<layout class="QVBoxLayout" name="verticalLayout_4">
|
|
458
|
-
<item>
|
|
459
|
-
<widget class="QTableWidget" name="twEthogram">
|
|
460
|
-
<property name="focusPolicy">
|
|
461
|
-
<enum>Qt::NoFocus</enum>
|
|
462
|
-
</property>
|
|
463
|
-
<property name="editTriggers">
|
|
464
|
-
<set>QAbstractItemView::NoEditTriggers</set>
|
|
465
|
-
</property>
|
|
466
|
-
<property name="alternatingRowColors">
|
|
467
|
-
<bool>true</bool>
|
|
468
|
-
</property>
|
|
469
|
-
<property name="selectionMode">
|
|
470
|
-
<enum>QAbstractItemView::SingleSelection</enum>
|
|
471
|
-
</property>
|
|
472
|
-
<property name="selectionBehavior">
|
|
473
|
-
<enum>QAbstractItemView::SelectRows</enum>
|
|
474
|
-
</property>
|
|
475
|
-
<property name="sortingEnabled">
|
|
476
|
-
<bool>false</bool>
|
|
477
|
-
</property>
|
|
478
|
-
<column>
|
|
479
|
-
<property name="text">
|
|
480
|
-
<string>Key</string>
|
|
481
|
-
</property>
|
|
482
|
-
</column>
|
|
483
|
-
<column>
|
|
484
|
-
<property name="text">
|
|
485
|
-
<string>Code</string>
|
|
486
|
-
</property>
|
|
487
|
-
</column>
|
|
488
|
-
<column>
|
|
489
|
-
<property name="text">
|
|
490
|
-
<string>Type</string>
|
|
491
|
-
</property>
|
|
492
|
-
</column>
|
|
493
|
-
<column>
|
|
494
|
-
<property name="text">
|
|
495
|
-
<string>Description</string>
|
|
496
|
-
</property>
|
|
497
|
-
</column>
|
|
498
|
-
<column>
|
|
499
|
-
<property name="text">
|
|
500
|
-
<string>Color</string>
|
|
501
|
-
</property>
|
|
502
|
-
</column>
|
|
503
|
-
<column>
|
|
504
|
-
<property name="text">
|
|
505
|
-
<string>Category</string>
|
|
506
|
-
</property>
|
|
507
|
-
</column>
|
|
508
|
-
<column>
|
|
509
|
-
<property name="text">
|
|
510
|
-
<string>Modifiers</string>
|
|
511
|
-
</property>
|
|
512
|
-
</column>
|
|
513
|
-
<column>
|
|
514
|
-
<property name="text">
|
|
515
|
-
<string>Excluded</string>
|
|
516
|
-
</property>
|
|
517
|
-
</column>
|
|
518
|
-
</widget>
|
|
519
|
-
</item>
|
|
520
|
-
</layout>
|
|
521
|
-
</item>
|
|
522
|
-
</layout>
|
|
523
|
-
</widget>
|
|
524
|
-
</widget>
|
|
525
|
-
<widget class="QStatusBar" name="statusbar">
|
|
526
|
-
<property name="sizeGripEnabled">
|
|
527
|
-
<bool>true</bool>
|
|
528
|
-
</property>
|
|
529
|
-
</widget>
|
|
530
|
-
<widget class="QDockWidget" name="dwEvents">
|
|
531
|
-
<property name="focusPolicy">
|
|
532
|
-
<enum>Qt::NoFocus</enum>
|
|
533
|
-
</property>
|
|
534
|
-
<property name="floating">
|
|
535
|
-
<bool>false</bool>
|
|
536
|
-
</property>
|
|
537
|
-
<property name="features">
|
|
538
|
-
<set>QDockWidget::DockWidgetFloatable|QDockWidget::DockWidgetMovable</set>
|
|
539
|
-
</property>
|
|
540
|
-
<property name="windowTitle">
|
|
541
|
-
<string>Events</string>
|
|
542
|
-
</property>
|
|
543
|
-
<attribute name="dockWidgetArea">
|
|
544
|
-
<number>2</number>
|
|
545
|
-
</attribute>
|
|
546
|
-
<widget class="QWidget" name="dockWidgetContents_2">
|
|
547
|
-
<layout class="QVBoxLayout" name="verticalLayout_7">
|
|
548
|
-
<item>
|
|
549
|
-
<layout class="QVBoxLayout" name="verticalLayout">
|
|
550
|
-
<item>
|
|
551
|
-
<widget class="QTableWidget" name="twEvents">
|
|
552
|
-
<property name="enabled">
|
|
553
|
-
<bool>true</bool>
|
|
554
|
-
</property>
|
|
555
|
-
<property name="focusPolicy">
|
|
556
|
-
<enum>Qt::NoFocus</enum>
|
|
557
|
-
</property>
|
|
558
|
-
<property name="autoScroll">
|
|
559
|
-
<bool>false</bool>
|
|
560
|
-
</property>
|
|
561
|
-
<property name="editTriggers">
|
|
562
|
-
<set>QAbstractItemView::NoEditTriggers</set>
|
|
563
|
-
</property>
|
|
564
|
-
<property name="tabKeyNavigation">
|
|
565
|
-
<bool>false</bool>
|
|
566
|
-
</property>
|
|
567
|
-
<property name="showDropIndicator" stdset="0">
|
|
568
|
-
<bool>false</bool>
|
|
569
|
-
</property>
|
|
570
|
-
<property name="dragDropOverwriteMode">
|
|
571
|
-
<bool>false</bool>
|
|
572
|
-
</property>
|
|
573
|
-
<property name="alternatingRowColors">
|
|
574
|
-
<bool>true</bool>
|
|
575
|
-
</property>
|
|
576
|
-
<property name="selectionMode">
|
|
577
|
-
<enum>QAbstractItemView::ExtendedSelection</enum>
|
|
578
|
-
</property>
|
|
579
|
-
<property name="selectionBehavior">
|
|
580
|
-
<enum>QAbstractItemView::SelectRows</enum>
|
|
581
|
-
</property>
|
|
582
|
-
</widget>
|
|
583
|
-
</item>
|
|
584
|
-
</layout>
|
|
585
|
-
</item>
|
|
586
|
-
</layout>
|
|
587
|
-
</widget>
|
|
588
|
-
</widget>
|
|
589
|
-
<widget class="QDockWidget" name="dwSubjects">
|
|
590
|
-
<property name="floating">
|
|
591
|
-
<bool>false</bool>
|
|
592
|
-
</property>
|
|
593
|
-
<property name="features">
|
|
594
|
-
<set>QDockWidget::DockWidgetFloatable|QDockWidget::DockWidgetMovable</set>
|
|
595
|
-
</property>
|
|
596
|
-
<property name="windowTitle">
|
|
597
|
-
<string>Subjects</string>
|
|
598
|
-
</property>
|
|
599
|
-
<attribute name="dockWidgetArea">
|
|
600
|
-
<number>1</number>
|
|
601
|
-
</attribute>
|
|
602
|
-
<widget class="QWidget" name="dockWidgetContents">
|
|
603
|
-
<layout class="QVBoxLayout" name="verticalLayout_2">
|
|
604
|
-
<item>
|
|
605
|
-
<widget class="QTableWidget" name="twSubjects">
|
|
606
|
-
<property name="focusPolicy">
|
|
607
|
-
<enum>Qt::NoFocus</enum>
|
|
608
|
-
</property>
|
|
609
|
-
<property name="editTriggers">
|
|
610
|
-
<set>QAbstractItemView::NoEditTriggers</set>
|
|
611
|
-
</property>
|
|
612
|
-
<property name="alternatingRowColors">
|
|
613
|
-
<bool>true</bool>
|
|
614
|
-
</property>
|
|
615
|
-
<property name="selectionBehavior">
|
|
616
|
-
<enum>QAbstractItemView::SelectRows</enum>
|
|
617
|
-
</property>
|
|
618
|
-
<column>
|
|
619
|
-
<property name="text">
|
|
620
|
-
<string>Key</string>
|
|
621
|
-
</property>
|
|
622
|
-
</column>
|
|
623
|
-
<column>
|
|
624
|
-
<property name="text">
|
|
625
|
-
<string>Name</string>
|
|
626
|
-
</property>
|
|
627
|
-
</column>
|
|
628
|
-
<column>
|
|
629
|
-
<property name="text">
|
|
630
|
-
<string>Description</string>
|
|
631
|
-
</property>
|
|
632
|
-
</column>
|
|
633
|
-
<column>
|
|
634
|
-
<property name="text">
|
|
635
|
-
<string>Current state(s)</string>
|
|
636
|
-
</property>
|
|
637
|
-
</column>
|
|
638
|
-
</widget>
|
|
639
|
-
</item>
|
|
640
|
-
</layout>
|
|
641
|
-
</widget>
|
|
642
|
-
</widget>
|
|
643
|
-
<action name="actionDocumentation">
|
|
644
|
-
<property name="text">
|
|
645
|
-
<string>Documentation</string>
|
|
646
|
-
</property>
|
|
647
|
-
</action>
|
|
648
|
-
<action name="actionAbout">
|
|
649
|
-
<property name="text">
|
|
650
|
-
<string>About</string>
|
|
651
|
-
</property>
|
|
652
|
-
</action>
|
|
653
|
-
<action name="actionQuit">
|
|
654
|
-
<property name="text">
|
|
655
|
-
<string>Quit</string>
|
|
656
|
-
</property>
|
|
657
|
-
</action>
|
|
658
|
-
<action name="actionPause">
|
|
659
|
-
<property name="text">
|
|
660
|
-
<string>Pause</string>
|
|
661
|
-
</property>
|
|
662
|
-
<property name="toolTip">
|
|
663
|
-
<string>Pause</string>
|
|
664
|
-
</property>
|
|
665
|
-
</action>
|
|
666
|
-
<action name="actionPlay">
|
|
667
|
-
<property name="text">
|
|
668
|
-
<string>Play</string>
|
|
669
|
-
</property>
|
|
670
|
-
</action>
|
|
671
|
-
<action name="actionOpen_video_file">
|
|
672
|
-
<property name="text">
|
|
673
|
-
<string>Open media file</string>
|
|
674
|
-
</property>
|
|
675
|
-
</action>
|
|
676
|
-
<action name="actionReset">
|
|
677
|
-
<property name="text">
|
|
678
|
-
<string>Reset</string>
|
|
679
|
-
</property>
|
|
680
|
-
</action>
|
|
681
|
-
<action name="actionFaster">
|
|
682
|
-
<property name="enabled">
|
|
683
|
-
<bool>true</bool>
|
|
684
|
-
</property>
|
|
685
|
-
<property name="text">
|
|
686
|
-
<string>Faster</string>
|
|
687
|
-
</property>
|
|
688
|
-
</action>
|
|
689
|
-
<action name="actionSlower">
|
|
690
|
-
<property name="enabled">
|
|
691
|
-
<bool>true</bool>
|
|
692
|
-
</property>
|
|
693
|
-
<property name="text">
|
|
694
|
-
<string>Slower</string>
|
|
695
|
-
</property>
|
|
696
|
-
</action>
|
|
697
|
-
<action name="actionJumpForward">
|
|
698
|
-
<property name="text">
|
|
699
|
-
<string>Jump forward</string>
|
|
700
|
-
</property>
|
|
701
|
-
<property name="shortcut">
|
|
702
|
-
<string>Ctrl+F</string>
|
|
703
|
-
</property>
|
|
704
|
-
</action>
|
|
705
|
-
<action name="actionLoad_configuration">
|
|
706
|
-
<property name="text">
|
|
707
|
-
<string>Load configuration</string>
|
|
708
|
-
</property>
|
|
709
|
-
</action>
|
|
710
|
-
<action name="actionDelete_selected_events">
|
|
711
|
-
<property name="text">
|
|
712
|
-
<string>Delete selected events</string>
|
|
713
|
-
</property>
|
|
714
|
-
</action>
|
|
715
|
-
<action name="actionDelete_all_events">
|
|
716
|
-
<property name="text">
|
|
717
|
-
<string>Delete all events</string>
|
|
718
|
-
</property>
|
|
719
|
-
</action>
|
|
720
|
-
<action name="actionSort_observations">
|
|
721
|
-
<property name="text">
|
|
722
|
-
<string>Sort events</string>
|
|
723
|
-
</property>
|
|
724
|
-
</action>
|
|
725
|
-
<action name="actionLoad_observations_file">
|
|
726
|
-
<property name="text">
|
|
727
|
-
<string>Import observations</string>
|
|
728
|
-
</property>
|
|
729
|
-
</action>
|
|
730
|
-
<action name="actionSelect_observations">
|
|
731
|
-
<property name="text">
|
|
732
|
-
<string>Select events from interval</string>
|
|
733
|
-
</property>
|
|
734
|
-
</action>
|
|
735
|
-
<action name="actionConfigure_states_and_events">
|
|
736
|
-
<property name="enabled">
|
|
737
|
-
<bool>false</bool>
|
|
738
|
-
</property>
|
|
739
|
-
<property name="text">
|
|
740
|
-
<string>Configure states and events</string>
|
|
741
|
-
</property>
|
|
742
|
-
</action>
|
|
743
|
-
<action name="actionEdit_event">
|
|
744
|
-
<property name="text">
|
|
745
|
-
<string>Edit event</string>
|
|
746
|
-
</property>
|
|
747
|
-
</action>
|
|
748
|
-
<action name="actionLoad_configuration_file">
|
|
749
|
-
<property name="text">
|
|
750
|
-
<string>Load state and events configuration file</string>
|
|
751
|
-
</property>
|
|
752
|
-
</action>
|
|
753
|
-
<action name="actionMedia_file_information">
|
|
754
|
-
<property name="text">
|
|
755
|
-
<string>Media file information</string>
|
|
756
|
-
</property>
|
|
757
|
-
</action>
|
|
758
|
-
<action name="actionStart_live_observation">
|
|
759
|
-
<property name="text">
|
|
760
|
-
<string>Start observation without media file</string>
|
|
761
|
-
</property>
|
|
762
|
-
</action>
|
|
763
|
-
<action name="actionNew_project">
|
|
764
|
-
<property name="text">
|
|
765
|
-
<string>New project</string>
|
|
766
|
-
</property>
|
|
767
|
-
</action>
|
|
768
|
-
<action name="actionTime_budget">
|
|
769
|
-
<property name="enabled">
|
|
770
|
-
<bool>true</bool>
|
|
771
|
-
</property>
|
|
772
|
-
<property name="text">
|
|
773
|
-
<string>Time budget</string>
|
|
774
|
-
</property>
|
|
775
|
-
<property name="iconVisibleInMenu">
|
|
776
|
-
<bool>true</bool>
|
|
777
|
-
</property>
|
|
778
|
-
</action>
|
|
779
|
-
<action name="actionSave_project">
|
|
780
|
-
<property name="text">
|
|
781
|
-
<string>Save project</string>
|
|
782
|
-
</property>
|
|
783
|
-
<property name="shortcut">
|
|
784
|
-
<string>Ctrl+S</string>
|
|
785
|
-
</property>
|
|
786
|
-
</action>
|
|
787
|
-
<action name="actionOpen_project">
|
|
788
|
-
<property name="text">
|
|
789
|
-
<string>Open project</string>
|
|
790
|
-
</property>
|
|
791
|
-
</action>
|
|
792
|
-
<action name="actionSet_offset">
|
|
793
|
-
<property name="text">
|
|
794
|
-
<string>Set time offset</string>
|
|
795
|
-
</property>
|
|
796
|
-
</action>
|
|
797
|
-
<action name="actionEdit_project">
|
|
798
|
-
<property name="text">
|
|
799
|
-
<string>Edit project</string>
|
|
800
|
-
</property>
|
|
801
|
-
</action>
|
|
802
|
-
<action name="actionSave_project_as">
|
|
803
|
-
<property name="text">
|
|
804
|
-
<string>Save project as ...</string>
|
|
805
|
-
</property>
|
|
806
|
-
</action>
|
|
807
|
-
<action name="actionPreferences">
|
|
808
|
-
<property name="text">
|
|
809
|
-
<string>Preferences</string>
|
|
810
|
-
</property>
|
|
811
|
-
</action>
|
|
812
|
-
<action name="actionNew_observation">
|
|
813
|
-
<property name="text">
|
|
814
|
-
<string>New observation</string>
|
|
815
|
-
</property>
|
|
816
|
-
<property name="shortcut">
|
|
817
|
-
<string>Ctrl+N</string>
|
|
818
|
-
</property>
|
|
819
|
-
</action>
|
|
820
|
-
<action name="actionSave_observation">
|
|
821
|
-
<property name="text">
|
|
822
|
-
<string>Save current observation</string>
|
|
823
|
-
</property>
|
|
824
|
-
</action>
|
|
825
|
-
<action name="actionClose_observation">
|
|
826
|
-
<property name="text">
|
|
827
|
-
<string>Close observation</string>
|
|
828
|
-
</property>
|
|
829
|
-
<property name="shortcut">
|
|
830
|
-
<string>Ctrl+Q</string>
|
|
831
|
-
</property>
|
|
832
|
-
</action>
|
|
833
|
-
<action name="actionEdit_current_observation">
|
|
834
|
-
<property name="enabled">
|
|
835
|
-
<bool>false</bool>
|
|
836
|
-
</property>
|
|
837
|
-
<property name="text">
|
|
838
|
-
<string>Edit current observation</string>
|
|
839
|
-
</property>
|
|
840
|
-
</action>
|
|
841
|
-
<action name="actionOpen_observation_2">
|
|
842
|
-
<property name="enabled">
|
|
843
|
-
<bool>false</bool>
|
|
844
|
-
</property>
|
|
845
|
-
<property name="text">
|
|
846
|
-
<string>Open observation</string>
|
|
847
|
-
</property>
|
|
848
|
-
<property name="visible">
|
|
849
|
-
<bool>false</bool>
|
|
850
|
-
</property>
|
|
851
|
-
</action>
|
|
852
|
-
<action name="actionAdd_event">
|
|
853
|
-
<property name="text">
|
|
854
|
-
<string>Add event</string>
|
|
855
|
-
</property>
|
|
856
|
-
<property name="shortcut">
|
|
857
|
-
<string>Ctrl+A</string>
|
|
858
|
-
</property>
|
|
859
|
-
</action>
|
|
860
|
-
<action name="actionDeselectCurrentSubject">
|
|
861
|
-
<property name="text">
|
|
862
|
-
<string>Deselect current subject</string>
|
|
863
|
-
</property>
|
|
864
|
-
</action>
|
|
865
|
-
<action name="actionNext">
|
|
866
|
-
<property name="text">
|
|
867
|
-
<string>Next</string>
|
|
868
|
-
</property>
|
|
869
|
-
<property name="toolTip">
|
|
870
|
-
<string>Next media file</string>
|
|
871
|
-
</property>
|
|
872
|
-
<property name="iconVisibleInMenu">
|
|
873
|
-
<bool>false</bool>
|
|
874
|
-
</property>
|
|
875
|
-
</action>
|
|
876
|
-
<action name="actionPrevious">
|
|
877
|
-
<property name="text">
|
|
878
|
-
<string>Previous</string>
|
|
879
|
-
</property>
|
|
880
|
-
<property name="toolTip">
|
|
881
|
-
<string>Previous media file</string>
|
|
882
|
-
</property>
|
|
883
|
-
</action>
|
|
884
|
-
<action name="actionJumpTo">
|
|
885
|
-
<property name="enabled">
|
|
886
|
-
<bool>true</bool>
|
|
887
|
-
</property>
|
|
888
|
-
<property name="text">
|
|
889
|
-
<string>Jump to specific time</string>
|
|
890
|
-
</property>
|
|
891
|
-
</action>
|
|
892
|
-
<action name="actionJumpBackward">
|
|
893
|
-
<property name="text">
|
|
894
|
-
<string>Jump backward</string>
|
|
895
|
-
</property>
|
|
896
|
-
<property name="toolTip">
|
|
897
|
-
<string>Jump backward</string>
|
|
898
|
-
</property>
|
|
899
|
-
<property name="shortcut">
|
|
900
|
-
<string>Ctrl+B</string>
|
|
901
|
-
</property>
|
|
902
|
-
</action>
|
|
903
|
-
<action name="actionEdit_observation">
|
|
904
|
-
<property name="enabled">
|
|
905
|
-
<bool>false</bool>
|
|
906
|
-
</property>
|
|
907
|
-
<property name="text">
|
|
908
|
-
<string>Edit observation</string>
|
|
909
|
-
</property>
|
|
910
|
-
<property name="visible">
|
|
911
|
-
<bool>false</bool>
|
|
912
|
-
</property>
|
|
913
|
-
</action>
|
|
914
|
-
<action name="actionCheckUpdate">
|
|
915
|
-
<property name="text">
|
|
916
|
-
<string>Check for updates and news</string>
|
|
917
|
-
</property>
|
|
918
|
-
</action>
|
|
919
|
-
<action name="actionClose_project">
|
|
920
|
-
<property name="text">
|
|
921
|
-
<string>Close project</string>
|
|
922
|
-
</property>
|
|
923
|
-
</action>
|
|
924
|
-
<action name="actionObservationsList">
|
|
925
|
-
<property name="text">
|
|
926
|
-
<string>Observations list</string>
|
|
927
|
-
</property>
|
|
928
|
-
<property name="shortcut">
|
|
929
|
-
<string>Ctrl+L</string>
|
|
930
|
-
</property>
|
|
931
|
-
</action>
|
|
932
|
-
<action name="actionNormalSpeed">
|
|
933
|
-
<property name="text">
|
|
934
|
-
<string>Normal speed</string>
|
|
935
|
-
</property>
|
|
936
|
-
</action>
|
|
937
|
-
<action name="actionSnapshot">
|
|
938
|
-
<property name="text">
|
|
939
|
-
<string>Snapshot</string>
|
|
940
|
-
</property>
|
|
941
|
-
</action>
|
|
942
|
-
<action name="actionFrame_by_frame">
|
|
943
|
-
<property name="checkable">
|
|
944
|
-
<bool>true</bool>
|
|
945
|
-
</property>
|
|
946
|
-
<property name="text">
|
|
947
|
-
<string>Frame by frame</string>
|
|
948
|
-
</property>
|
|
949
|
-
<property name="visible">
|
|
950
|
-
<bool>false</bool>
|
|
951
|
-
</property>
|
|
952
|
-
</action>
|
|
953
|
-
<action name="actionAggregatedEventsTabularFormat">
|
|
954
|
-
<property name="text">
|
|
955
|
-
<string>Tab Separated Values (tsv)</string>
|
|
956
|
-
</property>
|
|
957
|
-
</action>
|
|
958
|
-
<action name="actionOpen_observation">
|
|
959
|
-
<property name="text">
|
|
960
|
-
<string>Start observation</string>
|
|
961
|
-
</property>
|
|
962
|
-
<property name="shortcut">
|
|
963
|
-
<string>Ctrl+O</string>
|
|
964
|
-
</property>
|
|
965
|
-
</action>
|
|
966
|
-
<action name="actionAaaa">
|
|
967
|
-
<property name="text">
|
|
968
|
-
<string>aaaa</string>
|
|
969
|
-
</property>
|
|
970
|
-
</action>
|
|
971
|
-
<action name="menuCreate_subtitles_2">
|
|
972
|
-
<property name="text">
|
|
973
|
-
<string>Create subtitles</string>
|
|
974
|
-
</property>
|
|
975
|
-
</action>
|
|
976
|
-
<action name="actionUser_guide">
|
|
977
|
-
<property name="text">
|
|
978
|
-
<string>User guide</string>
|
|
979
|
-
</property>
|
|
980
|
-
</action>
|
|
981
|
-
<action name="actionEdit_observation_2">
|
|
982
|
-
<property name="text">
|
|
983
|
-
<string>Edit observation</string>
|
|
984
|
-
</property>
|
|
985
|
-
<property name="shortcut">
|
|
986
|
-
<string>Ctrl+E</string>
|
|
987
|
-
</property>
|
|
988
|
-
</action>
|
|
989
|
-
<action name="actionCheckStateEvents">
|
|
990
|
-
<property name="text">
|
|
991
|
-
<string>Check state events</string>
|
|
992
|
-
</property>
|
|
993
|
-
</action>
|
|
994
|
-
<action name="actionRunEventOutside">
|
|
995
|
-
<property name="text">
|
|
996
|
-
<string>Run external program with selected event(s)</string>
|
|
997
|
-
</property>
|
|
998
|
-
</action>
|
|
999
|
-
<action name="actionEdit_selected_events">
|
|
1000
|
-
<property name="text">
|
|
1001
|
-
<string>Edit selected event(s)</string>
|
|
1002
|
-
</property>
|
|
1003
|
-
</action>
|
|
1004
|
-
<action name="actionShow_spectrogram">
|
|
1005
|
-
<property name="text">
|
|
1006
|
-
<string>Show the sound spectrogram</string>
|
|
1007
|
-
</property>
|
|
1008
|
-
</action>
|
|
1009
|
-
<action name="actionExport_events_as_Praat_TextGrid">
|
|
1010
|
-
<property name="text">
|
|
1011
|
-
<string>as Praat TextGrid</string>
|
|
1012
|
-
</property>
|
|
1013
|
-
</action>
|
|
1014
|
-
<action name="actionExtract_events_from_media_files">
|
|
1015
|
-
<property name="text">
|
|
1016
|
-
<string>Extract sequences from media files</string>
|
|
1017
|
-
</property>
|
|
1018
|
-
</action>
|
|
1019
|
-
<action name="action_geometric_measurements">
|
|
1020
|
-
<property name="text">
|
|
1021
|
-
<string>Geometric measurement</string>
|
|
1022
|
-
</property>
|
|
1023
|
-
</action>
|
|
1024
|
-
<action name="actionFrame_forward">
|
|
1025
|
-
<property name="text">
|
|
1026
|
-
<string>Frame forward</string>
|
|
1027
|
-
</property>
|
|
1028
|
-
</action>
|
|
1029
|
-
<action name="actionFrame_backward">
|
|
1030
|
-
<property name="text">
|
|
1031
|
-
<string>frame backward</string>
|
|
1032
|
-
</property>
|
|
1033
|
-
</action>
|
|
1034
|
-
<action name="actionFilterBehaviors">
|
|
1035
|
-
<property name="text">
|
|
1036
|
-
<string>Filter behaviors</string>
|
|
1037
|
-
</property>
|
|
1038
|
-
</action>
|
|
1039
|
-
<action name="actionShowAllBehaviors">
|
|
1040
|
-
<property name="text">
|
|
1041
|
-
<string>Show all behaviors</string>
|
|
1042
|
-
</property>
|
|
1043
|
-
<property name="toolTip">
|
|
1044
|
-
<string>Show all behaviors</string>
|
|
1045
|
-
</property>
|
|
1046
|
-
</action>
|
|
1047
|
-
<action name="actionExport_aggregated_events">
|
|
1048
|
-
<property name="text">
|
|
1049
|
-
<string>Aggregated events</string>
|
|
1050
|
-
</property>
|
|
1051
|
-
</action>
|
|
1052
|
-
<action name="actionCoding_pad">
|
|
1053
|
-
<property name="text">
|
|
1054
|
-
<string>Coding pad</string>
|
|
1055
|
-
</property>
|
|
1056
|
-
</action>
|
|
1057
|
-
<action name="actionTime_budget_by_behaviors_category">
|
|
1058
|
-
<property name="text">
|
|
1059
|
-
<string>Time budget by behavioral category</string>
|
|
1060
|
-
</property>
|
|
1061
|
-
</action>
|
|
1062
|
-
<action name="actionExport_events_as_SDIS_file">
|
|
1063
|
-
<property name="text">
|
|
1064
|
-
<string>Export events as SDIS file</string>
|
|
1065
|
-
</property>
|
|
1066
|
-
</action>
|
|
1067
|
-
<action name="actionRecode_resize_video">
|
|
1068
|
-
<property name="text">
|
|
1069
|
-
<string>Re-encode/resize video</string>
|
|
1070
|
-
</property>
|
|
1071
|
-
</action>
|
|
1072
|
-
<action name="actionMedia_file_information_2">
|
|
1073
|
-
<property name="text">
|
|
1074
|
-
<string>Media file information</string>
|
|
1075
|
-
</property>
|
|
1076
|
-
</action>
|
|
1077
|
-
<action name="actionCreate_transitions_flow_diagram">
|
|
1078
|
-
<property name="text">
|
|
1079
|
-
<string>Create transitions DOT script</string>
|
|
1080
|
-
</property>
|
|
1081
|
-
</action>
|
|
1082
|
-
<action name="actionCreate_transitions_flow_diagram_2">
|
|
1083
|
-
<property name="text">
|
|
1084
|
-
<string>Create transitions flow diagram</string>
|
|
1085
|
-
</property>
|
|
1086
|
-
</action>
|
|
1087
|
-
<action name="actionAll_transitions">
|
|
1088
|
-
<property name="text">
|
|
1089
|
-
<string>Frequencies of transitions</string>
|
|
1090
|
-
</property>
|
|
1091
|
-
</action>
|
|
1092
|
-
<action name="actionNumber_of_transitions">
|
|
1093
|
-
<property name="text">
|
|
1094
|
-
<string>Number of transitions</string>
|
|
1095
|
-
</property>
|
|
1096
|
-
</action>
|
|
1097
|
-
<action name="actionFrequencies_of_transitions_after_behaviors">
|
|
1098
|
-
<property name="text">
|
|
1099
|
-
<string>Frequencies of transitions after behaviors</string>
|
|
1100
|
-
</property>
|
|
1101
|
-
</action>
|
|
1102
|
-
<action name="actionFind_replace_events">
|
|
1103
|
-
<property name="text">
|
|
1104
|
-
<string>Find/replace in events</string>
|
|
1105
|
-
</property>
|
|
1106
|
-
</action>
|
|
1107
|
-
<action name="actionFind_events">
|
|
1108
|
-
<property name="text">
|
|
1109
|
-
<string>Find in events</string>
|
|
1110
|
-
</property>
|
|
1111
|
-
<property name="toolTip">
|
|
1112
|
-
<string>Find</string>
|
|
1113
|
-
</property>
|
|
1114
|
-
</action>
|
|
1115
|
-
<action name="actionHow_to_cite_BORIS">
|
|
1116
|
-
<property name="text">
|
|
1117
|
-
<string>How to cite BORIS</string>
|
|
1118
|
-
</property>
|
|
1119
|
-
</action>
|
|
1120
|
-
<action name="actionZoom1_1_1">
|
|
1121
|
-
<property name="checkable">
|
|
1122
|
-
<bool>true</bool>
|
|
1123
|
-
</property>
|
|
1124
|
-
<property name="text">
|
|
1125
|
-
<string>1:1 Original</string>
|
|
1126
|
-
</property>
|
|
1127
|
-
</action>
|
|
1128
|
-
<action name="actionZoom1_2_1">
|
|
1129
|
-
<property name="checkable">
|
|
1130
|
-
<bool>true</bool>
|
|
1131
|
-
</property>
|
|
1132
|
-
<property name="text">
|
|
1133
|
-
<string>2:1 Double</string>
|
|
1134
|
-
</property>
|
|
1135
|
-
</action>
|
|
1136
|
-
<action name="actionZoom1_1_2">
|
|
1137
|
-
<property name="checkable">
|
|
1138
|
-
<bool>true</bool>
|
|
1139
|
-
</property>
|
|
1140
|
-
<property name="text">
|
|
1141
|
-
<string>1:2 Half</string>
|
|
1142
|
-
</property>
|
|
1143
|
-
</action>
|
|
1144
|
-
<action name="actionZoom1_1_4">
|
|
1145
|
-
<property name="checkable">
|
|
1146
|
-
<bool>true</bool>
|
|
1147
|
-
</property>
|
|
1148
|
-
<property name="text">
|
|
1149
|
-
<string>1:4 Quarter</string>
|
|
1150
|
-
</property>
|
|
1151
|
-
</action>
|
|
1152
|
-
<action name="actionZoom1_fitwindow">
|
|
1153
|
-
<property name="checkable">
|
|
1154
|
-
<bool>true</bool>
|
|
1155
|
-
</property>
|
|
1156
|
-
<property name="text">
|
|
1157
|
-
<string>Fit to window</string>
|
|
1158
|
-
</property>
|
|
1159
|
-
</action>
|
|
1160
|
-
<action name="actionZoom2_fitwindow">
|
|
1161
|
-
<property name="checkable">
|
|
1162
|
-
<bool>true</bool>
|
|
1163
|
-
</property>
|
|
1164
|
-
<property name="text">
|
|
1165
|
-
<string>Fit to window</string>
|
|
1166
|
-
</property>
|
|
1167
|
-
</action>
|
|
1168
|
-
<action name="actionZoom2_1_4">
|
|
1169
|
-
<property name="checkable">
|
|
1170
|
-
<bool>true</bool>
|
|
1171
|
-
</property>
|
|
1172
|
-
<property name="text">
|
|
1173
|
-
<string>1:4 Quarter</string>
|
|
1174
|
-
</property>
|
|
1175
|
-
</action>
|
|
1176
|
-
<action name="actionZoom2_1_2">
|
|
1177
|
-
<property name="checkable">
|
|
1178
|
-
<bool>true</bool>
|
|
1179
|
-
</property>
|
|
1180
|
-
<property name="text">
|
|
1181
|
-
<string>1:2 Half</string>
|
|
1182
|
-
</property>
|
|
1183
|
-
</action>
|
|
1184
|
-
<action name="actionZoom2_1_1">
|
|
1185
|
-
<property name="checkable">
|
|
1186
|
-
<bool>true</bool>
|
|
1187
|
-
</property>
|
|
1188
|
-
<property name="text">
|
|
1189
|
-
<string>1:1 Original</string>
|
|
1190
|
-
</property>
|
|
1191
|
-
</action>
|
|
1192
|
-
<action name="actionZoom2_2_1">
|
|
1193
|
-
<property name="checkable">
|
|
1194
|
-
<bool>true</bool>
|
|
1195
|
-
</property>
|
|
1196
|
-
<property name="text">
|
|
1197
|
-
<string>2:1 Double</string>
|
|
1198
|
-
</property>
|
|
1199
|
-
</action>
|
|
1200
|
-
<action name="actionFilterSubjects">
|
|
1201
|
-
<property name="text">
|
|
1202
|
-
<string>Filter subjects</string>
|
|
1203
|
-
</property>
|
|
1204
|
-
<property name="toolTip">
|
|
1205
|
-
<string>Filter subjects</string>
|
|
1206
|
-
</property>
|
|
1207
|
-
</action>
|
|
1208
|
-
<action name="actionShowAllSubjects">
|
|
1209
|
-
<property name="text">
|
|
1210
|
-
<string>Show all subjects</string>
|
|
1211
|
-
</property>
|
|
1212
|
-
<property name="toolTip">
|
|
1213
|
-
<string>Show all subjects</string>
|
|
1214
|
-
</property>
|
|
1215
|
-
</action>
|
|
1216
|
-
<action name="actionSend_project">
|
|
1217
|
-
<property name="text">
|
|
1218
|
-
<string>Project server</string>
|
|
1219
|
-
</property>
|
|
1220
|
-
</action>
|
|
1221
|
-
<action name="actionViewBehavior">
|
|
1222
|
-
<property name="text">
|
|
1223
|
-
<string>View behavior</string>
|
|
1224
|
-
</property>
|
|
1225
|
-
<property name="toolTip">
|
|
1226
|
-
<string>View behavior</string>
|
|
1227
|
-
</property>
|
|
1228
|
-
</action>
|
|
1229
|
-
<action name="actionBehaviors_coding_map">
|
|
1230
|
-
<property name="text">
|
|
1231
|
-
<string>Behaviors coding map</string>
|
|
1232
|
-
</property>
|
|
1233
|
-
</action>
|
|
1234
|
-
<action name="action_create_behaviors_coding_map">
|
|
1235
|
-
<property name="text">
|
|
1236
|
-
<string>for behaviors</string>
|
|
1237
|
-
</property>
|
|
1238
|
-
</action>
|
|
1239
|
-
<action name="action_create_modifiers_coding_map">
|
|
1240
|
-
<property name="text">
|
|
1241
|
-
<string>for modifiers</string>
|
|
1242
|
-
</property>
|
|
1243
|
-
</action>
|
|
1244
|
-
<action name="actionPlot_events1">
|
|
1245
|
-
<property name="text">
|
|
1246
|
-
<string>Plot events (back compatibility)</string>
|
|
1247
|
-
</property>
|
|
1248
|
-
</action>
|
|
1249
|
-
<action name="actionPlot_events2">
|
|
1250
|
-
<property name="text">
|
|
1251
|
-
<string>Plot events</string>
|
|
1252
|
-
</property>
|
|
1253
|
-
</action>
|
|
1254
|
-
<action name="actionCohen_s_kappa">
|
|
1255
|
-
<property name="text">
|
|
1256
|
-
<string>Cohen's kappa (time-unit)</string>
|
|
1257
|
-
</property>
|
|
1258
|
-
</action>
|
|
1259
|
-
<action name="actionTime_budget_report">
|
|
1260
|
-
<property name="text">
|
|
1261
|
-
<string>Synthetic time budget</string>
|
|
1262
|
-
</property>
|
|
1263
|
-
</action>
|
|
1264
|
-
<action name="actionCheckStateEventsSingleObs">
|
|
1265
|
-
<property name="text">
|
|
1266
|
-
<string>Check state events</string>
|
|
1267
|
-
</property>
|
|
1268
|
-
</action>
|
|
1269
|
-
<action name="actionSubjects_pad">
|
|
1270
|
-
<property name="text">
|
|
1271
|
-
<string>Subjects pad</string>
|
|
1272
|
-
</property>
|
|
1273
|
-
</action>
|
|
1274
|
-
<action name="actionShow_data_files">
|
|
1275
|
-
<property name="text">
|
|
1276
|
-
<string>Show data files</string>
|
|
1277
|
-
</property>
|
|
1278
|
-
</action>
|
|
1279
|
-
<action name="actionConverters_manager">
|
|
1280
|
-
<property name="text">
|
|
1281
|
-
<string>Time converters manager</string>
|
|
1282
|
-
</property>
|
|
1283
|
-
</action>
|
|
1284
|
-
<action name="actionView_observation">
|
|
1285
|
-
<property name="text">
|
|
1286
|
-
<string>View observation</string>
|
|
1287
|
-
</property>
|
|
1288
|
-
</action>
|
|
1289
|
-
<action name="actionRemove_path_from_media_files">
|
|
1290
|
-
<property name="text">
|
|
1291
|
-
<string>Remove paths</string>
|
|
1292
|
-
</property>
|
|
1293
|
-
<property name="visible">
|
|
1294
|
-
<bool>false</bool>
|
|
1295
|
-
</property>
|
|
1296
|
-
</action>
|
|
1297
|
-
<action name="actionCheck_project">
|
|
1298
|
-
<property name="text">
|
|
1299
|
-
<string>Check project integrity</string>
|
|
1300
|
-
</property>
|
|
1301
|
-
</action>
|
|
1302
|
-
<action name="actionBehavior_bar_plot">
|
|
1303
|
-
<property name="text">
|
|
1304
|
-
<string>Plot time budget</string>
|
|
1305
|
-
</property>
|
|
1306
|
-
</action>
|
|
1307
|
-
<action name="action_obs_list">
|
|
1308
|
-
<property name="text">
|
|
1309
|
-
<string>Obs list</string>
|
|
1310
|
-
</property>
|
|
1311
|
-
<property name="toolTip">
|
|
1312
|
-
<string>Observations list</string>
|
|
1313
|
-
</property>
|
|
1314
|
-
</action>
|
|
1315
|
-
<action name="actionTest">
|
|
1316
|
-
<property name="text">
|
|
1317
|
-
<string>test</string>
|
|
1318
|
-
</property>
|
|
1319
|
-
</action>
|
|
1320
|
-
<action name="actionTest_stb2">
|
|
1321
|
-
<property name="text">
|
|
1322
|
-
<string>test stb2</string>
|
|
1323
|
-
</property>
|
|
1324
|
-
</action>
|
|
1325
|
-
<action name="actionClose_unpaired_events">
|
|
1326
|
-
<property name="text">
|
|
1327
|
-
<string>Fix unpaired events</string>
|
|
1328
|
-
</property>
|
|
1329
|
-
<property name="shortcut">
|
|
1330
|
-
<string>Ctrl+U</string>
|
|
1331
|
-
</property>
|
|
1332
|
-
</action>
|
|
1333
|
-
<action name="actionRotate_video">
|
|
1334
|
-
<property name="text">
|
|
1335
|
-
<string>Rotate video</string>
|
|
1336
|
-
</property>
|
|
1337
|
-
</action>
|
|
1338
|
-
<action name="actionExport_observations_list">
|
|
1339
|
-
<property name="text">
|
|
1340
|
-
<string>Export observations list</string>
|
|
1341
|
-
</property>
|
|
1342
|
-
</action>
|
|
1343
|
-
<action name="actionExportEvents_2">
|
|
1344
|
-
<property name="text">
|
|
1345
|
-
<string>Tabular events</string>
|
|
1346
|
-
</property>
|
|
1347
|
-
</action>
|
|
1348
|
-
<action name="actionJWatcher">
|
|
1349
|
-
<property name="text">
|
|
1350
|
-
<string>for analysis with JWatcher</string>
|
|
1351
|
-
</property>
|
|
1352
|
-
</action>
|
|
1353
|
-
<action name="actionCloseObs">
|
|
1354
|
-
<property name="enabled">
|
|
1355
|
-
<bool>true</bool>
|
|
1356
|
-
</property>
|
|
1357
|
-
<property name="text">
|
|
1358
|
-
<string>Close observation</string>
|
|
1359
|
-
</property>
|
|
1360
|
-
</action>
|
|
1361
|
-
<action name="actionFilter_events">
|
|
1362
|
-
<property name="text">
|
|
1363
|
-
<string>Filter events</string>
|
|
1364
|
-
</property>
|
|
1365
|
-
</action>
|
|
1366
|
-
<action name="actionShow_all_events">
|
|
1367
|
-
<property name="text">
|
|
1368
|
-
<string>Show all events</string>
|
|
1369
|
-
</property>
|
|
1370
|
-
<property name="toolTip">
|
|
1371
|
-
<string>Show all events</string>
|
|
1372
|
-
</property>
|
|
1373
|
-
</action>
|
|
1374
|
-
<action name="actionEdit_event_time">
|
|
1375
|
-
<property name="text">
|
|
1376
|
-
<string>Shift time of selected event(s)</string>
|
|
1377
|
-
</property>
|
|
1378
|
-
</action>
|
|
1379
|
-
<action name="actionCopy_events">
|
|
1380
|
-
<property name="text">
|
|
1381
|
-
<string>Copy events</string>
|
|
1382
|
-
</property>
|
|
1383
|
-
</action>
|
|
1384
|
-
<action name="actionPaste_events">
|
|
1385
|
-
<property name="text">
|
|
1386
|
-
<string>Paste events</string>
|
|
1387
|
-
</property>
|
|
1388
|
-
</action>
|
|
1389
|
-
<action name="actionNoldus_Observer_template">
|
|
1390
|
-
<property name="text">
|
|
1391
|
-
<string>Noldus The Observer XT (OTX, OTB, ODX)</string>
|
|
1392
|
-
</property>
|
|
1393
|
-
</action>
|
|
1394
|
-
<action name="actionExplore_project">
|
|
1395
|
-
<property name="text">
|
|
1396
|
-
<string>Explore project</string>
|
|
1397
|
-
</property>
|
|
1398
|
-
</action>
|
|
1399
|
-
<action name="actionShow_the_sound_waveform">
|
|
1400
|
-
<property name="text">
|
|
1401
|
-
<string>Show the sound waveform</string>
|
|
1402
|
-
</property>
|
|
1403
|
-
</action>
|
|
1404
|
-
<action name="actionNeedleman_Wunsch">
|
|
1405
|
-
<property name="text">
|
|
1406
|
-
<string>Needleman - Wunsch</string>
|
|
1407
|
-
</property>
|
|
1408
|
-
</action>
|
|
1409
|
-
<action name="actionExtract_frames_from_media_files">
|
|
1410
|
-
<property name="text">
|
|
1411
|
-
<string>Extract frames from media files</string>
|
|
1412
|
-
</property>
|
|
1413
|
-
</action>
|
|
1414
|
-
<action name="action_behavior_binary_table">
|
|
1415
|
-
<property name="enabled">
|
|
1416
|
-
<bool>true</bool>
|
|
1417
|
-
</property>
|
|
1418
|
-
<property name="text">
|
|
1419
|
-
<string>as behaviors binary table</string>
|
|
1420
|
-
</property>
|
|
1421
|
-
</action>
|
|
1422
|
-
<action name="actionPlot_current_observation">
|
|
1423
|
-
<property name="text">
|
|
1424
|
-
<string>Plot current observation</string>
|
|
1425
|
-
</property>
|
|
1426
|
-
</action>
|
|
1427
|
-
<action name="actionFind_in_current_obs">
|
|
1428
|
-
<property name="text">
|
|
1429
|
-
<string>Find in events</string>
|
|
1430
|
-
</property>
|
|
1431
|
-
</action>
|
|
1432
|
-
<action name="action_advanced_event_filtering">
|
|
1433
|
-
<property name="text">
|
|
1434
|
-
<string>Advanced event filtering</string>
|
|
1435
|
-
</property>
|
|
1436
|
-
</action>
|
|
1437
|
-
<action name="action_block_dockwidgets">
|
|
1438
|
-
<property name="checkable">
|
|
1439
|
-
<bool>true</bool>
|
|
1440
|
-
</property>
|
|
1441
|
-
<property name="text">
|
|
1442
|
-
<string>Lock dockwidgets</string>
|
|
1443
|
-
</property>
|
|
1444
|
-
</action>
|
|
1445
|
-
<action name="actionseparated_subjects">
|
|
1446
|
-
<property name="text">
|
|
1447
|
-
<string>separated subjects</string>
|
|
1448
|
-
</property>
|
|
1449
|
-
</action>
|
|
1450
|
-
<action name="actiongrouped_subjects">
|
|
1451
|
-
<property name="text">
|
|
1452
|
-
<string>grouped subjects</string>
|
|
1453
|
-
</property>
|
|
1454
|
-
</action>
|
|
1455
|
-
<action name="actionCurrent_Time_Budget">
|
|
1456
|
-
<property name="text">
|
|
1457
|
-
<string>Current Time Budget</string>
|
|
1458
|
-
</property>
|
|
1459
|
-
</action>
|
|
1460
|
-
<action name="actionSynthetic_binned_time_budget">
|
|
1461
|
-
<property name="text">
|
|
1462
|
-
<string>Synthetic time budget with time bin</string>
|
|
1463
|
-
</property>
|
|
1464
|
-
</action>
|
|
1465
|
-
<action name="actionZoom_level">
|
|
1466
|
-
<property name="text">
|
|
1467
|
-
<string>Zoom level</string>
|
|
1468
|
-
</property>
|
|
1469
|
-
</action>
|
|
1470
|
-
<action name="actionDisplay_subtitles">
|
|
1471
|
-
<property name="text">
|
|
1472
|
-
<string>Display subtitles</string>
|
|
1473
|
-
</property>
|
|
1474
|
-
</action>
|
|
1475
|
-
<action name="actionAdd_image_overlay_on_video">
|
|
1476
|
-
<property name="text">
|
|
1477
|
-
<string>Add</string>
|
|
1478
|
-
</property>
|
|
1479
|
-
</action>
|
|
1480
|
-
<action name="actionRemove_image_overlay">
|
|
1481
|
-
<property name="text">
|
|
1482
|
-
<string>Remove</string>
|
|
1483
|
-
</property>
|
|
1484
|
-
</action>
|
|
1485
|
-
<action name="actionPlot_events_in_real_time">
|
|
1486
|
-
<property name="text">
|
|
1487
|
-
<string>Plot events in real time</string>
|
|
1488
|
-
</property>
|
|
1489
|
-
</action>
|
|
1490
|
-
<action name="actionVideo_equalizer">
|
|
1491
|
-
<property name="text">
|
|
1492
|
-
<string>Video equalizer</string>
|
|
1493
|
-
</property>
|
|
1494
|
-
</action>
|
|
1495
|
-
<action name="actionRemove_observations">
|
|
1496
|
-
<property name="text">
|
|
1497
|
-
<string>Remove observations</string>
|
|
1498
|
-
</property>
|
|
1499
|
-
</action>
|
|
1500
|
-
<action name="action_latency">
|
|
1501
|
-
<property name="text">
|
|
1502
|
-
<string>Latency</string>
|
|
1503
|
-
</property>
|
|
1504
|
-
</action>
|
|
1505
|
-
<action name="actionUndo">
|
|
1506
|
-
<property name="text">
|
|
1507
|
-
<string>Undo</string>
|
|
1508
|
-
</property>
|
|
1509
|
-
</action>
|
|
1510
|
-
<action name="actionaaa">
|
|
1511
|
-
<property name="text">
|
|
1512
|
-
<string>aaa</string>
|
|
1513
|
-
</property>
|
|
1514
|
-
</action>
|
|
1515
|
-
<action name="action_media_file_and_images_directories_relative_path">
|
|
1516
|
-
<property name="text">
|
|
1517
|
-
<string>for media file and images directories</string>
|
|
1518
|
-
</property>
|
|
1519
|
-
</action>
|
|
1520
|
-
<action name="action_data_files_relative_path">
|
|
1521
|
-
<property name="text">
|
|
1522
|
-
<string>for data files</string>
|
|
1523
|
-
</property>
|
|
1524
|
-
</action>
|
|
1525
|
-
<action name="action_remove_media_files_and_images_directories_path">
|
|
1526
|
-
<property name="text">
|
|
1527
|
-
<string>for media file and images directories</string>
|
|
1528
|
-
</property>
|
|
1529
|
-
</action>
|
|
1530
|
-
<action name="action_remove_data_files_path">
|
|
1531
|
-
<property name="text">
|
|
1532
|
-
<string>for data files</string>
|
|
1533
|
-
</property>
|
|
1534
|
-
</action>
|
|
1535
|
-
<action name="actionPlot_current_time_budget">
|
|
1536
|
-
<property name="text">
|
|
1537
|
-
<string>Plot current time budget</string>
|
|
1538
|
-
</property>
|
|
1539
|
-
</action>
|
|
1540
|
-
<action name="actionMerge_media_files">
|
|
1541
|
-
<property name="text">
|
|
1542
|
-
<string>Merge media files</string>
|
|
1543
|
-
</property>
|
|
1544
|
-
</action>
|
|
1545
|
-
<action name="actionExport_project">
|
|
1546
|
-
<property name="text">
|
|
1547
|
-
<string>Export project</string>
|
|
1548
|
-
</property>
|
|
1549
|
-
</action>
|
|
1550
|
-
<action name="actionConfigure_twEvents_columns">
|
|
1551
|
-
<property name="text">
|
|
1552
|
-
<string>Configure columns</string>
|
|
1553
|
-
</property>
|
|
1554
|
-
</action>
|
|
1555
|
-
<action name="actionRotate_current_video">
|
|
1556
|
-
<property name="text">
|
|
1557
|
-
<string>Rotate video</string>
|
|
1558
|
-
</property>
|
|
1559
|
-
</action>
|
|
1560
|
-
<action name="action_deinterlace">
|
|
1561
|
-
<property name="checkable">
|
|
1562
|
-
<bool>true</bool>
|
|
1563
|
-
</property>
|
|
1564
|
-
<property name="text">
|
|
1565
|
-
<string>Deinterlace</string>
|
|
1566
|
-
</property>
|
|
1567
|
-
</action>
|
|
1568
|
-
</widget>
|
|
1569
|
-
<resources/>
|
|
1570
|
-
<connections/>
|
|
1571
|
-
</ui>
|