boris-behav-obs 9.7.7__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 (109) hide show
  1. boris/__init__.py +26 -0
  2. boris/__main__.py +25 -0
  3. boris/about.py +143 -0
  4. boris/add_modifier.py +635 -0
  5. boris/add_modifier_ui.py +303 -0
  6. boris/advanced_event_filtering.py +455 -0
  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 +1110 -0
  18. boris/behavior_binary_table.py +305 -0
  19. boris/behaviors_coding_map.py +239 -0
  20. boris/boris_cli.py +340 -0
  21. boris/cmd_arguments.py +49 -0
  22. boris/coding_pad.py +280 -0
  23. boris/config.py +785 -0
  24. boris/config_file.py +356 -0
  25. boris/connections.py +409 -0
  26. boris/converters.py +333 -0
  27. boris/converters_ui.py +225 -0
  28. boris/cooccurence.py +250 -0
  29. boris/core.py +5901 -0
  30. boris/core_qrc.py +15958 -0
  31. boris/core_ui.py +1107 -0
  32. boris/db_functions.py +324 -0
  33. boris/dev.py +134 -0
  34. boris/dialog.py +1108 -0
  35. boris/duration_widget.py +238 -0
  36. boris/edit_event.py +245 -0
  37. boris/edit_event_ui.py +233 -0
  38. boris/event_operations.py +1040 -0
  39. boris/events_cursor.py +61 -0
  40. boris/events_snapshots.py +596 -0
  41. boris/exclusion_matrix.py +141 -0
  42. boris/export_events.py +1006 -0
  43. boris/export_observation.py +1203 -0
  44. boris/external_processes.py +332 -0
  45. boris/geometric_measurement.py +941 -0
  46. boris/gui_utilities.py +135 -0
  47. boris/image_overlay.py +72 -0
  48. boris/import_observations.py +242 -0
  49. boris/ipc_mpv.py +325 -0
  50. boris/irr.py +634 -0
  51. boris/latency.py +244 -0
  52. boris/measurement_widget.py +161 -0
  53. boris/media_file.py +115 -0
  54. boris/menu_options.py +213 -0
  55. boris/modifier_coding_map_creator.py +1013 -0
  56. boris/modifiers_coding_map.py +157 -0
  57. boris/mpv.py +2016 -0
  58. boris/mpv2.py +2193 -0
  59. boris/observation.py +1453 -0
  60. boris/observation_operations.py +2538 -0
  61. boris/observation_ui.py +679 -0
  62. boris/observations_list.py +337 -0
  63. boris/otx_parser.py +442 -0
  64. boris/param_panel.py +201 -0
  65. boris/param_panel_ui.py +305 -0
  66. boris/player_dock_widget.py +198 -0
  67. boris/plot_data_module.py +536 -0
  68. boris/plot_events.py +634 -0
  69. boris/plot_events_rt.py +237 -0
  70. boris/plot_spectrogram_rt.py +316 -0
  71. boris/plot_waveform_rt.py +230 -0
  72. boris/plugins.py +431 -0
  73. boris/portion/__init__.py +31 -0
  74. boris/portion/const.py +95 -0
  75. boris/portion/dict.py +365 -0
  76. boris/portion/func.py +52 -0
  77. boris/portion/interval.py +581 -0
  78. boris/portion/io.py +181 -0
  79. boris/preferences.py +510 -0
  80. boris/preferences_ui.py +770 -0
  81. boris/project.py +2007 -0
  82. boris/project_functions.py +2041 -0
  83. boris/project_import_export.py +1096 -0
  84. boris/project_ui.py +794 -0
  85. boris/qrc_boris.py +10389 -0
  86. boris/qrc_boris5.py +2579 -0
  87. boris/select_modifiers.py +312 -0
  88. boris/select_observations.py +210 -0
  89. boris/select_subj_behav.py +286 -0
  90. boris/state_events.py +197 -0
  91. boris/subjects_pad.py +106 -0
  92. boris/synthetic_time_budget.py +290 -0
  93. boris/time_budget_functions.py +1136 -0
  94. boris/time_budget_widget.py +1039 -0
  95. boris/transitions.py +365 -0
  96. boris/utilities.py +1810 -0
  97. boris/version.py +24 -0
  98. boris/video_equalizer.py +159 -0
  99. boris/video_equalizer_ui.py +248 -0
  100. boris/video_operations.py +310 -0
  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.7.dist-info/METADATA +139 -0
  105. boris_behav_obs-9.7.7.dist-info/RECORD +109 -0
  106. boris_behav_obs-9.7.7.dist-info/WHEEL +5 -0
  107. boris_behav_obs-9.7.7.dist-info/entry_points.txt +2 -0
  108. boris_behav_obs-9.7.7.dist-info/licenses/LICENSE.TXT +674 -0
  109. boris_behav_obs-9.7.7.dist-info/top_level.txt +1 -0
@@ -0,0 +1,770 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ ################################################################################
4
+ ## Form generated from reading UI file 'preferences.ui'
5
+ ##
6
+ ## Created by: Qt User Interface Compiler version 6.10.0
7
+ ##
8
+ ## WARNING! All changes made in this file will be lost when recompiling UI file!
9
+ ################################################################################
10
+
11
+ from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
12
+ QMetaObject, QObject, QPoint, QRect,
13
+ QSize, QTime, QUrl, Qt)
14
+ from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
15
+ QFont, QFontDatabase, QGradient, QIcon,
16
+ QImage, QKeySequence, QLinearGradient, QPainter,
17
+ QPalette, QPixmap, QRadialGradient, QTransform)
18
+ from PySide6.QtWidgets import (QApplication, QCheckBox, QComboBox, QDialog,
19
+ QDoubleSpinBox, QFormLayout, QGroupBox, QHBoxLayout,
20
+ QLabel, QLineEdit, QListWidget, QListWidgetItem,
21
+ QPlainTextEdit, QPushButton, QSizePolicy, QSpacerItem,
22
+ QSpinBox, QSplitter, QTabWidget, QVBoxLayout,
23
+ QWidget)
24
+
25
+ class Ui_prefDialog(object):
26
+ def setupUi(self, prefDialog):
27
+ if not prefDialog.objectName():
28
+ prefDialog.setObjectName(u"prefDialog")
29
+ prefDialog.setWindowModality(Qt.WindowModality.WindowModal)
30
+ prefDialog.resize(904, 554)
31
+ self.horizontalLayout_17 = QHBoxLayout(prefDialog)
32
+ self.horizontalLayout_17.setObjectName(u"horizontalLayout_17")
33
+ self.verticalLayout_2 = QVBoxLayout()
34
+ self.verticalLayout_2.setObjectName(u"verticalLayout_2")
35
+ self.tabWidget = QTabWidget(prefDialog)
36
+ self.tabWidget.setObjectName(u"tabWidget")
37
+ self.tabWidget.setEnabled(True)
38
+ self.tab_project = QWidget()
39
+ self.tab_project.setObjectName(u"tab_project")
40
+ self.verticalLayout_5 = QVBoxLayout(self.tab_project)
41
+ self.verticalLayout_5.setObjectName(u"verticalLayout_5")
42
+ self.horizontalLayout_14 = QHBoxLayout()
43
+ self.horizontalLayout_14.setObjectName(u"horizontalLayout_14")
44
+ self.label = QLabel(self.tab_project)
45
+ self.label.setObjectName(u"label")
46
+
47
+ self.horizontalLayout_14.addWidget(self.label)
48
+
49
+ self.cbTimeFormat = QComboBox(self.tab_project)
50
+ self.cbTimeFormat.addItem("")
51
+ self.cbTimeFormat.addItem("")
52
+ self.cbTimeFormat.setObjectName(u"cbTimeFormat")
53
+
54
+ self.horizontalLayout_14.addWidget(self.cbTimeFormat)
55
+
56
+
57
+ self.verticalLayout_5.addLayout(self.horizontalLayout_14)
58
+
59
+ self.horizontalLayout_15 = QHBoxLayout()
60
+ self.horizontalLayout_15.setObjectName(u"horizontalLayout_15")
61
+ self.label_6 = QLabel(self.tab_project)
62
+ self.label_6.setObjectName(u"label_6")
63
+
64
+ self.horizontalLayout_15.addWidget(self.label_6)
65
+
66
+ self.sbAutomaticBackup = QSpinBox(self.tab_project)
67
+ self.sbAutomaticBackup.setObjectName(u"sbAutomaticBackup")
68
+ self.sbAutomaticBackup.setMinimum(-10000)
69
+ self.sbAutomaticBackup.setMaximum(10000)
70
+ self.sbAutomaticBackup.setValue(10)
71
+
72
+ self.horizontalLayout_15.addWidget(self.sbAutomaticBackup)
73
+
74
+
75
+ self.verticalLayout_5.addLayout(self.horizontalLayout_15)
76
+
77
+ self.horizontalLayout_13 = QHBoxLayout()
78
+ self.horizontalLayout_13.setObjectName(u"horizontalLayout_13")
79
+ self.label_3 = QLabel(self.tab_project)
80
+ self.label_3.setObjectName(u"label_3")
81
+
82
+ self.horizontalLayout_13.addWidget(self.label_3)
83
+
84
+ self.leSeparator = QLineEdit(self.tab_project)
85
+ self.leSeparator.setObjectName(u"leSeparator")
86
+
87
+ self.horizontalLayout_13.addWidget(self.leSeparator)
88
+
89
+
90
+ self.verticalLayout_5.addLayout(self.horizontalLayout_13)
91
+
92
+ self.cbCheckForNewVersion = QCheckBox(self.tab_project)
93
+ self.cbCheckForNewVersion.setObjectName(u"cbCheckForNewVersion")
94
+
95
+ self.verticalLayout_5.addWidget(self.cbCheckForNewVersion)
96
+
97
+ self.horizontalLayout_11 = QHBoxLayout()
98
+ self.horizontalLayout_11.setObjectName(u"horizontalLayout_11")
99
+ self.lb_hwdec = QLabel(self.tab_project)
100
+ self.lb_hwdec.setObjectName(u"lb_hwdec")
101
+
102
+ self.horizontalLayout_11.addWidget(self.lb_hwdec)
103
+
104
+ self.cb_hwdec = QComboBox(self.tab_project)
105
+ self.cb_hwdec.setObjectName(u"cb_hwdec")
106
+
107
+ self.horizontalLayout_11.addWidget(self.cb_hwdec)
108
+
109
+
110
+ self.verticalLayout_5.addLayout(self.horizontalLayout_11)
111
+
112
+ self.horizontalLayout_9 = QHBoxLayout()
113
+ self.horizontalLayout_9.setObjectName(u"horizontalLayout_9")
114
+ self.lb_project_file_indent = QLabel(self.tab_project)
115
+ self.lb_project_file_indent.setObjectName(u"lb_project_file_indent")
116
+
117
+ self.horizontalLayout_9.addWidget(self.lb_project_file_indent)
118
+
119
+ self.combo_project_file_indentation = QComboBox(self.tab_project)
120
+ self.combo_project_file_indentation.setObjectName(u"combo_project_file_indentation")
121
+
122
+ self.horizontalLayout_9.addWidget(self.combo_project_file_indentation)
123
+
124
+
125
+ self.verticalLayout_5.addLayout(self.horizontalLayout_9)
126
+
127
+ self.cb_check_integrity_at_opening = QCheckBox(self.tab_project)
128
+ self.cb_check_integrity_at_opening.setObjectName(u"cb_check_integrity_at_opening")
129
+
130
+ self.verticalLayout_5.addWidget(self.cb_check_integrity_at_opening)
131
+
132
+ self.verticalSpacer_2 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
133
+
134
+ self.verticalLayout_5.addItem(self.verticalSpacer_2)
135
+
136
+ self.tabWidget.addTab(self.tab_project, "")
137
+ self.tab_observations = QWidget()
138
+ self.tab_observations.setObjectName(u"tab_observations")
139
+ self.verticalLayout = QVBoxLayout(self.tab_observations)
140
+ self.verticalLayout.setObjectName(u"verticalLayout")
141
+ self.horizontalLayout_4 = QHBoxLayout()
142
+ self.horizontalLayout_4.setObjectName(u"horizontalLayout_4")
143
+ self.label_4 = QLabel(self.tab_observations)
144
+ self.label_4.setObjectName(u"label_4")
145
+
146
+ self.horizontalLayout_4.addWidget(self.label_4)
147
+
148
+ self.sbffSpeed = QDoubleSpinBox(self.tab_observations)
149
+ self.sbffSpeed.setObjectName(u"sbffSpeed")
150
+
151
+ self.horizontalLayout_4.addWidget(self.sbffSpeed)
152
+
153
+
154
+ self.verticalLayout.addLayout(self.horizontalLayout_4)
155
+
156
+ self.cb_adapt_fast_jump = QCheckBox(self.tab_observations)
157
+ self.cb_adapt_fast_jump.setObjectName(u"cb_adapt_fast_jump")
158
+
159
+ self.verticalLayout.addWidget(self.cb_adapt_fast_jump)
160
+
161
+ self.horizontalLayout_5 = QHBoxLayout()
162
+ self.horizontalLayout_5.setObjectName(u"horizontalLayout_5")
163
+ self.label_5 = QLabel(self.tab_observations)
164
+ self.label_5.setObjectName(u"label_5")
165
+
166
+ self.horizontalLayout_5.addWidget(self.label_5)
167
+
168
+ self.sbSpeedStep = QDoubleSpinBox(self.tab_observations)
169
+ self.sbSpeedStep.setObjectName(u"sbSpeedStep")
170
+ self.sbSpeedStep.setDecimals(1)
171
+ self.sbSpeedStep.setMinimum(0.100000000000000)
172
+ self.sbSpeedStep.setMaximum(10.000000000000000)
173
+ self.sbSpeedStep.setSingleStep(0.100000000000000)
174
+ self.sbSpeedStep.setValue(0.100000000000000)
175
+
176
+ self.horizontalLayout_5.addWidget(self.sbSpeedStep)
177
+
178
+
179
+ self.verticalLayout.addLayout(self.horizontalLayout_5)
180
+
181
+ self.horizontalLayout_6 = QHBoxLayout()
182
+ self.horizontalLayout_6.setObjectName(u"horizontalLayout_6")
183
+ self.label_2 = QLabel(self.tab_observations)
184
+ self.label_2.setObjectName(u"label_2")
185
+
186
+ self.horizontalLayout_6.addWidget(self.label_2)
187
+
188
+ self.sbRepositionTimeOffset = QSpinBox(self.tab_observations)
189
+ self.sbRepositionTimeOffset.setObjectName(u"sbRepositionTimeOffset")
190
+ self.sbRepositionTimeOffset.setMinimum(-10000)
191
+ self.sbRepositionTimeOffset.setMaximum(10000)
192
+ self.sbRepositionTimeOffset.setValue(-3)
193
+
194
+ self.horizontalLayout_6.addWidget(self.sbRepositionTimeOffset)
195
+
196
+
197
+ self.verticalLayout.addLayout(self.horizontalLayout_6)
198
+
199
+ self.cbConfirmSound = QCheckBox(self.tab_observations)
200
+ self.cbConfirmSound.setObjectName(u"cbConfirmSound")
201
+
202
+ self.verticalLayout.addWidget(self.cbConfirmSound)
203
+
204
+ self.cbCloseSameEvent = QCheckBox(self.tab_observations)
205
+ self.cbCloseSameEvent.setObjectName(u"cbCloseSameEvent")
206
+
207
+ self.verticalLayout.addWidget(self.cbCloseSameEvent)
208
+
209
+ self.horizontalLayout_8 = QHBoxLayout()
210
+ self.horizontalLayout_8.setObjectName(u"horizontalLayout_8")
211
+ self.label_8 = QLabel(self.tab_observations)
212
+ self.label_8.setObjectName(u"label_8")
213
+
214
+ self.horizontalLayout_8.addWidget(self.label_8)
215
+
216
+ self.sbBeepEvery = QSpinBox(self.tab_observations)
217
+ self.sbBeepEvery.setObjectName(u"sbBeepEvery")
218
+
219
+ self.horizontalLayout_8.addWidget(self.sbBeepEvery)
220
+
221
+
222
+ self.verticalLayout.addLayout(self.horizontalLayout_8)
223
+
224
+ self.cb_display_subtitles = QCheckBox(self.tab_observations)
225
+ self.cb_display_subtitles.setObjectName(u"cb_display_subtitles")
226
+
227
+ self.verticalLayout.addWidget(self.cb_display_subtitles)
228
+
229
+ self.cbTrackingCursorAboveEvent = QCheckBox(self.tab_observations)
230
+ self.cbTrackingCursorAboveEvent.setObjectName(u"cbTrackingCursorAboveEvent")
231
+
232
+ self.verticalLayout.addWidget(self.cbTrackingCursorAboveEvent)
233
+
234
+ self.cbAlertNoFocalSubject = QCheckBox(self.tab_observations)
235
+ self.cbAlertNoFocalSubject.setObjectName(u"cbAlertNoFocalSubject")
236
+
237
+ self.verticalLayout.addWidget(self.cbAlertNoFocalSubject)
238
+
239
+ self.cb_pause_before_addevent = QCheckBox(self.tab_observations)
240
+ self.cb_pause_before_addevent.setObjectName(u"cb_pause_before_addevent")
241
+
242
+ self.verticalLayout.addWidget(self.cb_pause_before_addevent)
243
+
244
+ self.horizontalLayout_23 = QHBoxLayout()
245
+ self.horizontalLayout_23.setObjectName(u"horizontalLayout_23")
246
+ self.label_24 = QLabel(self.tab_observations)
247
+ self.label_24.setObjectName(u"label_24")
248
+ self.label_24.setEnabled(False)
249
+
250
+ self.horizontalLayout_23.addWidget(self.label_24)
251
+
252
+ self.sb_frame_step_size = QSpinBox(self.tab_observations)
253
+ self.sb_frame_step_size.setObjectName(u"sb_frame_step_size")
254
+ self.sb_frame_step_size.setEnabled(False)
255
+ self.sb_frame_step_size.setMinimum(1)
256
+ self.sb_frame_step_size.setMaximum(1000)
257
+ self.sb_frame_step_size.setValue(1)
258
+
259
+ self.horizontalLayout_23.addWidget(self.sb_frame_step_size)
260
+
261
+
262
+ self.verticalLayout.addLayout(self.horizontalLayout_23)
263
+
264
+ self.verticalSpacer_4 = QSpacerItem(20, 391, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
265
+
266
+ self.verticalLayout.addItem(self.verticalSpacer_4)
267
+
268
+ self.tabWidget.addTab(self.tab_observations, "")
269
+ self.tab_analysis_plugins = QWidget()
270
+ self.tab_analysis_plugins.setObjectName(u"tab_analysis_plugins")
271
+ self.verticalLayout_15 = QVBoxLayout(self.tab_analysis_plugins)
272
+ self.verticalLayout_15.setObjectName(u"verticalLayout_15")
273
+ self.splitter_2 = QSplitter(self.tab_analysis_plugins)
274
+ self.splitter_2.setObjectName(u"splitter_2")
275
+ self.splitter_2.setOrientation(Qt.Orientation.Horizontal)
276
+ self.layoutWidget = QWidget(self.splitter_2)
277
+ self.layoutWidget.setObjectName(u"layoutWidget")
278
+ self.verticalLayout_11 = QVBoxLayout(self.layoutWidget)
279
+ self.verticalLayout_11.setObjectName(u"verticalLayout_11")
280
+ self.verticalLayout_11.setContentsMargins(0, 0, 0, 0)
281
+ self.label_13 = QLabel(self.layoutWidget)
282
+ self.label_13.setObjectName(u"label_13")
283
+
284
+ self.verticalLayout_11.addWidget(self.label_13)
285
+
286
+ self.lv_all_plugins = QListWidget(self.layoutWidget)
287
+ self.lv_all_plugins.setObjectName(u"lv_all_plugins")
288
+
289
+ self.verticalLayout_11.addWidget(self.lv_all_plugins)
290
+
291
+ self.label_15 = QLabel(self.layoutWidget)
292
+ self.label_15.setObjectName(u"label_15")
293
+
294
+ self.verticalLayout_11.addWidget(self.label_15)
295
+
296
+ self.horizontalLayout_16 = QHBoxLayout()
297
+ self.horizontalLayout_16.setObjectName(u"horizontalLayout_16")
298
+ self.le_personal_plugins_dir = QLineEdit(self.layoutWidget)
299
+ self.le_personal_plugins_dir.setObjectName(u"le_personal_plugins_dir")
300
+ self.le_personal_plugins_dir.setReadOnly(True)
301
+
302
+ self.horizontalLayout_16.addWidget(self.le_personal_plugins_dir)
303
+
304
+ self.pb_browse_plugins_dir = QPushButton(self.layoutWidget)
305
+ self.pb_browse_plugins_dir.setObjectName(u"pb_browse_plugins_dir")
306
+
307
+ self.horizontalLayout_16.addWidget(self.pb_browse_plugins_dir)
308
+
309
+
310
+ self.verticalLayout_11.addLayout(self.horizontalLayout_16)
311
+
312
+ self.lw_personal_plugins = QListWidget(self.layoutWidget)
313
+ self.lw_personal_plugins.setObjectName(u"lw_personal_plugins")
314
+
315
+ self.verticalLayout_11.addWidget(self.lw_personal_plugins)
316
+
317
+ self.splitter_2.addWidget(self.layoutWidget)
318
+ self.splitter = QSplitter(self.splitter_2)
319
+ self.splitter.setObjectName(u"splitter")
320
+ self.splitter.setOrientation(Qt.Orientation.Vertical)
321
+ self.layoutWidget1 = QWidget(self.splitter)
322
+ self.layoutWidget1.setObjectName(u"layoutWidget1")
323
+ self.verticalLayout_12 = QVBoxLayout(self.layoutWidget1)
324
+ self.verticalLayout_12.setObjectName(u"verticalLayout_12")
325
+ self.verticalLayout_12.setContentsMargins(0, 0, 0, 0)
326
+ self.label_14 = QLabel(self.layoutWidget1)
327
+ self.label_14.setObjectName(u"label_14")
328
+
329
+ self.verticalLayout_12.addWidget(self.label_14)
330
+
331
+ self.pte_plugin_description = QPlainTextEdit(self.layoutWidget1)
332
+ self.pte_plugin_description.setObjectName(u"pte_plugin_description")
333
+ self.pte_plugin_description.setReadOnly(True)
334
+
335
+ self.verticalLayout_12.addWidget(self.pte_plugin_description)
336
+
337
+ self.splitter.addWidget(self.layoutWidget1)
338
+ self.layoutWidget2 = QWidget(self.splitter)
339
+ self.layoutWidget2.setObjectName(u"layoutWidget2")
340
+ self.verticalLayout_14 = QVBoxLayout(self.layoutWidget2)
341
+ self.verticalLayout_14.setObjectName(u"verticalLayout_14")
342
+ self.verticalLayout_14.setContentsMargins(0, 0, 0, 0)
343
+ self.label_23 = QLabel(self.layoutWidget2)
344
+ self.label_23.setObjectName(u"label_23")
345
+
346
+ self.verticalLayout_14.addWidget(self.label_23)
347
+
348
+ self.pte_plugin_code = QPlainTextEdit(self.layoutWidget2)
349
+ self.pte_plugin_code.setObjectName(u"pte_plugin_code")
350
+ self.pte_plugin_code.setLineWrapMode(QPlainTextEdit.LineWrapMode.NoWrap)
351
+
352
+ self.verticalLayout_14.addWidget(self.pte_plugin_code)
353
+
354
+ self.splitter.addWidget(self.layoutWidget2)
355
+ self.splitter_2.addWidget(self.splitter)
356
+
357
+ self.verticalLayout_15.addWidget(self.splitter_2)
358
+
359
+ self.tabWidget.addTab(self.tab_analysis_plugins, "")
360
+ self.tab_ffmpeg = QWidget()
361
+ self.tab_ffmpeg.setObjectName(u"tab_ffmpeg")
362
+ self.verticalLayout_4 = QVBoxLayout(self.tab_ffmpeg)
363
+ self.verticalLayout_4.setObjectName(u"verticalLayout_4")
364
+ self.verticalLayout_3 = QVBoxLayout()
365
+ self.verticalLayout_3.setObjectName(u"verticalLayout_3")
366
+ self.lbFFmpegPath = QLabel(self.tab_ffmpeg)
367
+ self.lbFFmpegPath.setObjectName(u"lbFFmpegPath")
368
+ self.lbFFmpegPath.setScaledContents(False)
369
+ self.lbFFmpegPath.setWordWrap(True)
370
+
371
+ self.verticalLayout_3.addWidget(self.lbFFmpegPath)
372
+
373
+ self.horizontalLayout = QHBoxLayout()
374
+ self.horizontalLayout.setObjectName(u"horizontalLayout")
375
+
376
+ self.verticalLayout_3.addLayout(self.horizontalLayout)
377
+
378
+ self.horizontalLayout_3 = QHBoxLayout()
379
+ self.horizontalLayout_3.setObjectName(u"horizontalLayout_3")
380
+ self.lbFFmpegCacheDir = QLabel(self.tab_ffmpeg)
381
+ self.lbFFmpegCacheDir.setObjectName(u"lbFFmpegCacheDir")
382
+
383
+ self.horizontalLayout_3.addWidget(self.lbFFmpegCacheDir)
384
+
385
+ self.leFFmpegCacheDir = QLineEdit(self.tab_ffmpeg)
386
+ self.leFFmpegCacheDir.setObjectName(u"leFFmpegCacheDir")
387
+
388
+ self.horizontalLayout_3.addWidget(self.leFFmpegCacheDir)
389
+
390
+ self.pbBrowseFFmpegCacheDir = QPushButton(self.tab_ffmpeg)
391
+ self.pbBrowseFFmpegCacheDir.setObjectName(u"pbBrowseFFmpegCacheDir")
392
+
393
+ self.horizontalLayout_3.addWidget(self.pbBrowseFFmpegCacheDir)
394
+
395
+
396
+ self.verticalLayout_3.addLayout(self.horizontalLayout_3)
397
+
398
+ self.verticalSpacer = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
399
+
400
+ self.verticalLayout_3.addItem(self.verticalSpacer)
401
+
402
+
403
+ self.verticalLayout_4.addLayout(self.verticalLayout_3)
404
+
405
+ self.tabWidget.addTab(self.tab_ffmpeg, "")
406
+ self.tab_spectro = QWidget()
407
+ self.tab_spectro.setObjectName(u"tab_spectro")
408
+ self.verticalLayout_13 = QVBoxLayout(self.tab_spectro)
409
+ self.verticalLayout_13.setObjectName(u"verticalLayout_13")
410
+ self.groupBox = QGroupBox(self.tab_spectro)
411
+ self.groupBox.setObjectName(u"groupBox")
412
+ self.verticalLayout_8 = QVBoxLayout(self.groupBox)
413
+ self.verticalLayout_8.setObjectName(u"verticalLayout_8")
414
+ self.horizontalLayout_7 = QHBoxLayout()
415
+ self.horizontalLayout_7.setObjectName(u"horizontalLayout_7")
416
+ self.label_7 = QLabel(self.groupBox)
417
+ self.label_7.setObjectName(u"label_7")
418
+
419
+ self.horizontalLayout_7.addWidget(self.label_7)
420
+
421
+ self.cbSpectrogramColorMap = QComboBox(self.groupBox)
422
+ self.cbSpectrogramColorMap.setObjectName(u"cbSpectrogramColorMap")
423
+
424
+ self.horizontalLayout_7.addWidget(self.cbSpectrogramColorMap)
425
+
426
+ self.horizontalSpacer_2 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
427
+
428
+ self.horizontalLayout_7.addItem(self.horizontalSpacer_2)
429
+
430
+
431
+ self.verticalLayout_8.addLayout(self.horizontalLayout_7)
432
+
433
+ self.horizontalLayout_10 = QHBoxLayout()
434
+ self.horizontalLayout_10.setObjectName(u"horizontalLayout_10")
435
+ self.label_12 = QLabel(self.groupBox)
436
+ self.label_12.setObjectName(u"label_12")
437
+
438
+ self.horizontalLayout_10.addWidget(self.label_12)
439
+
440
+ self.sb_time_interval = QSpinBox(self.groupBox)
441
+ self.sb_time_interval.setObjectName(u"sb_time_interval")
442
+ self.sb_time_interval.setMinimum(2)
443
+ self.sb_time_interval.setMaximum(360)
444
+ self.sb_time_interval.setValue(10)
445
+
446
+ self.horizontalLayout_10.addWidget(self.sb_time_interval)
447
+
448
+ self.horizontalSpacer_3 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
449
+
450
+ self.horizontalLayout_10.addItem(self.horizontalSpacer_3)
451
+
452
+
453
+ self.verticalLayout_8.addLayout(self.horizontalLayout_10)
454
+
455
+ self.horizontalLayout_18 = QHBoxLayout()
456
+ self.horizontalLayout_18.setObjectName(u"horizontalLayout_18")
457
+ self.label_16 = QLabel(self.groupBox)
458
+ self.label_16.setObjectName(u"label_16")
459
+
460
+ self.horizontalLayout_18.addWidget(self.label_16)
461
+
462
+ self.cb_window_type = QComboBox(self.groupBox)
463
+ self.cb_window_type.addItem("")
464
+ self.cb_window_type.addItem("")
465
+ self.cb_window_type.addItem("")
466
+ self.cb_window_type.setObjectName(u"cb_window_type")
467
+
468
+ self.horizontalLayout_18.addWidget(self.cb_window_type)
469
+
470
+ self.horizontalSpacer_4 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
471
+
472
+ self.horizontalLayout_18.addItem(self.horizontalSpacer_4)
473
+
474
+
475
+ self.verticalLayout_8.addLayout(self.horizontalLayout_18)
476
+
477
+ self.horizontalLayout_19 = QHBoxLayout()
478
+ self.horizontalLayout_19.setObjectName(u"horizontalLayout_19")
479
+ self.label_17 = QLabel(self.groupBox)
480
+ self.label_17.setObjectName(u"label_17")
481
+
482
+ self.horizontalLayout_19.addWidget(self.label_17)
483
+
484
+ self.cb_NFFT = QComboBox(self.groupBox)
485
+ self.cb_NFFT.addItem("")
486
+ self.cb_NFFT.addItem("")
487
+ self.cb_NFFT.addItem("")
488
+ self.cb_NFFT.addItem("")
489
+ self.cb_NFFT.setObjectName(u"cb_NFFT")
490
+
491
+ self.horizontalLayout_19.addWidget(self.cb_NFFT)
492
+
493
+ self.horizontalSpacer_5 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
494
+
495
+ self.horizontalLayout_19.addItem(self.horizontalSpacer_5)
496
+
497
+
498
+ self.verticalLayout_8.addLayout(self.horizontalLayout_19)
499
+
500
+ self.horizontalLayout_20 = QHBoxLayout()
501
+ self.horizontalLayout_20.setObjectName(u"horizontalLayout_20")
502
+ self.label_18 = QLabel(self.groupBox)
503
+ self.label_18.setObjectName(u"label_18")
504
+
505
+ self.horizontalLayout_20.addWidget(self.label_18)
506
+
507
+ self.sb_noverlap = QSpinBox(self.groupBox)
508
+ self.sb_noverlap.setObjectName(u"sb_noverlap")
509
+ self.sb_noverlap.setMaximum(900)
510
+ self.sb_noverlap.setSingleStep(10)
511
+ self.sb_noverlap.setValue(128)
512
+
513
+ self.horizontalLayout_20.addWidget(self.sb_noverlap)
514
+
515
+ self.horizontalSpacer_6 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
516
+
517
+ self.horizontalLayout_20.addItem(self.horizontalSpacer_6)
518
+
519
+
520
+ self.verticalLayout_8.addLayout(self.horizontalLayout_20)
521
+
522
+ self.horizontalLayout_21 = QHBoxLayout()
523
+ self.horizontalLayout_21.setObjectName(u"horizontalLayout_21")
524
+ self.label_19 = QLabel(self.groupBox)
525
+ self.label_19.setObjectName(u"label_19")
526
+
527
+ self.horizontalLayout_21.addWidget(self.label_19)
528
+
529
+ self.sb_vmin = QSpinBox(self.groupBox)
530
+ self.sb_vmin.setObjectName(u"sb_vmin")
531
+ self.sb_vmin.setMinimum(-200)
532
+ self.sb_vmin.setMaximum(0)
533
+ self.sb_vmin.setValue(-100)
534
+
535
+ self.horizontalLayout_21.addWidget(self.sb_vmin)
536
+
537
+ self.label_21 = QLabel(self.groupBox)
538
+ self.label_21.setObjectName(u"label_21")
539
+
540
+ self.horizontalLayout_21.addWidget(self.label_21)
541
+
542
+ self.horizontalSpacer_7 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
543
+
544
+ self.horizontalLayout_21.addItem(self.horizontalSpacer_7)
545
+
546
+
547
+ self.verticalLayout_8.addLayout(self.horizontalLayout_21)
548
+
549
+ self.horizontalLayout_22 = QHBoxLayout()
550
+ self.horizontalLayout_22.setObjectName(u"horizontalLayout_22")
551
+ self.label_20 = QLabel(self.groupBox)
552
+ self.label_20.setObjectName(u"label_20")
553
+
554
+ self.horizontalLayout_22.addWidget(self.label_20)
555
+
556
+ self.sb_vmax = QSpinBox(self.groupBox)
557
+ self.sb_vmax.setObjectName(u"sb_vmax")
558
+ self.sb_vmax.setMinimum(-40)
559
+ self.sb_vmax.setMaximum(0)
560
+ self.sb_vmax.setValue(-20)
561
+
562
+ self.horizontalLayout_22.addWidget(self.sb_vmax)
563
+
564
+ self.label_22 = QLabel(self.groupBox)
565
+ self.label_22.setObjectName(u"label_22")
566
+
567
+ self.horizontalLayout_22.addWidget(self.label_22)
568
+
569
+ self.horizontalSpacer_8 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
570
+
571
+ self.horizontalLayout_22.addItem(self.horizontalSpacer_8)
572
+
573
+
574
+ self.verticalLayout_8.addLayout(self.horizontalLayout_22)
575
+
576
+
577
+ self.verticalLayout_13.addWidget(self.groupBox)
578
+
579
+ self.verticalSpacer_3 = QSpacerItem(20, 319, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
580
+
581
+ self.verticalLayout_13.addItem(self.verticalSpacer_3)
582
+
583
+ self.tabWidget.addTab(self.tab_spectro, "")
584
+ self.tab_colors = QWidget()
585
+ self.tab_colors.setObjectName(u"tab_colors")
586
+ self.verticalLayout_10 = QVBoxLayout(self.tab_colors)
587
+ self.verticalLayout_10.setObjectName(u"verticalLayout_10")
588
+ self.horizontalLayout_12 = QHBoxLayout()
589
+ self.horizontalLayout_12.setObjectName(u"horizontalLayout_12")
590
+ self.verticalLayout_6 = QVBoxLayout()
591
+ self.verticalLayout_6.setObjectName(u"verticalLayout_6")
592
+ self.label_10 = QLabel(self.tab_colors)
593
+ self.label_10.setObjectName(u"label_10")
594
+ self.label_10.setOpenExternalLinks(True)
595
+
596
+ self.verticalLayout_6.addWidget(self.label_10)
597
+
598
+ self.te_behav_colors = QPlainTextEdit(self.tab_colors)
599
+ self.te_behav_colors.setObjectName(u"te_behav_colors")
600
+
601
+ self.verticalLayout_6.addWidget(self.te_behav_colors)
602
+
603
+ self.pb_reset_behav_colors = QPushButton(self.tab_colors)
604
+ self.pb_reset_behav_colors.setObjectName(u"pb_reset_behav_colors")
605
+
606
+ self.verticalLayout_6.addWidget(self.pb_reset_behav_colors)
607
+
608
+
609
+ self.horizontalLayout_12.addLayout(self.verticalLayout_6)
610
+
611
+ self.verticalLayout_9 = QVBoxLayout()
612
+ self.verticalLayout_9.setObjectName(u"verticalLayout_9")
613
+ self.label_11 = QLabel(self.tab_colors)
614
+ self.label_11.setObjectName(u"label_11")
615
+ self.label_11.setOpenExternalLinks(True)
616
+
617
+ self.verticalLayout_9.addWidget(self.label_11)
618
+
619
+ self.te_category_colors = QPlainTextEdit(self.tab_colors)
620
+ self.te_category_colors.setObjectName(u"te_category_colors")
621
+
622
+ self.verticalLayout_9.addWidget(self.te_category_colors)
623
+
624
+ self.pb_reset_category_colors = QPushButton(self.tab_colors)
625
+ self.pb_reset_category_colors.setObjectName(u"pb_reset_category_colors")
626
+
627
+ self.verticalLayout_9.addWidget(self.pb_reset_category_colors)
628
+
629
+
630
+ self.horizontalLayout_12.addLayout(self.verticalLayout_9)
631
+
632
+
633
+ self.verticalLayout_10.addLayout(self.horizontalLayout_12)
634
+
635
+ self.tabWidget.addTab(self.tab_colors, "")
636
+ self.tab_interface = QWidget()
637
+ self.tab_interface.setObjectName(u"tab_interface")
638
+ self.verticalLayout_7 = QVBoxLayout(self.tab_interface)
639
+ self.verticalLayout_7.setObjectName(u"verticalLayout_7")
640
+ self.formLayout = QFormLayout()
641
+ self.formLayout.setObjectName(u"formLayout")
642
+ self.label_9 = QLabel(self.tab_interface)
643
+ self.label_9.setObjectName(u"label_9")
644
+
645
+ self.formLayout.setWidget(0, QFormLayout.ItemRole.LabelRole, self.label_9)
646
+
647
+ self.sb_toolbar_icon_size = QSpinBox(self.tab_interface)
648
+ self.sb_toolbar_icon_size.setObjectName(u"sb_toolbar_icon_size")
649
+ self.sb_toolbar_icon_size.setMinimum(12)
650
+ self.sb_toolbar_icon_size.setMaximum(128)
651
+ self.sb_toolbar_icon_size.setValue(24)
652
+
653
+ self.formLayout.setWidget(0, QFormLayout.ItemRole.FieldRole, self.sb_toolbar_icon_size)
654
+
655
+
656
+ self.verticalLayout_7.addLayout(self.formLayout)
657
+
658
+ self.verticalSpacer_5 = QSpacerItem(20, 386, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
659
+
660
+ self.verticalLayout_7.addItem(self.verticalSpacer_5)
661
+
662
+ self.tabWidget.addTab(self.tab_interface, "")
663
+
664
+ self.verticalLayout_2.addWidget(self.tabWidget)
665
+
666
+ self.horizontalLayout_2 = QHBoxLayout()
667
+ self.horizontalLayout_2.setObjectName(u"horizontalLayout_2")
668
+ self.horizontalSpacer = QSpacerItem(241, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
669
+
670
+ self.horizontalLayout_2.addItem(self.horizontalSpacer)
671
+
672
+ self.pb_refresh = QPushButton(prefDialog)
673
+ self.pb_refresh.setObjectName(u"pb_refresh")
674
+
675
+ self.horizontalLayout_2.addWidget(self.pb_refresh)
676
+
677
+ self.pbCancel = QPushButton(prefDialog)
678
+ self.pbCancel.setObjectName(u"pbCancel")
679
+
680
+ self.horizontalLayout_2.addWidget(self.pbCancel)
681
+
682
+ self.pbOK = QPushButton(prefDialog)
683
+ self.pbOK.setObjectName(u"pbOK")
684
+
685
+ self.horizontalLayout_2.addWidget(self.pbOK)
686
+
687
+
688
+ self.verticalLayout_2.addLayout(self.horizontalLayout_2)
689
+
690
+
691
+ self.horizontalLayout_17.addLayout(self.verticalLayout_2)
692
+
693
+
694
+ self.retranslateUi(prefDialog)
695
+
696
+ self.tabWidget.setCurrentIndex(1)
697
+
698
+
699
+ QMetaObject.connectSlotsByName(prefDialog)
700
+ # setupUi
701
+
702
+ def retranslateUi(self, prefDialog):
703
+ prefDialog.setWindowTitle(QCoreApplication.translate("prefDialog", u"Preferences", None))
704
+ self.label.setText(QCoreApplication.translate("prefDialog", u"Default project time format", None))
705
+ self.cbTimeFormat.setItemText(0, QCoreApplication.translate("prefDialog", u"seconds", None))
706
+ self.cbTimeFormat.setItemText(1, QCoreApplication.translate("prefDialog", u"hh:mm:ss.mss", None))
707
+
708
+ self.label_6.setText(QCoreApplication.translate("prefDialog", u"Auto-save project every (minutes)", None))
709
+ self.label_3.setText(QCoreApplication.translate("prefDialog", u"Separator for behavioural strings (events export)", None))
710
+ self.leSeparator.setText(QCoreApplication.translate("prefDialog", u"|", None))
711
+ self.cbCheckForNewVersion.setText(QCoreApplication.translate("prefDialog", u"Check for new version and news", None))
712
+ self.lb_hwdec.setText(QCoreApplication.translate("prefDialog", u"MPV player hardware video decoding", None))
713
+ self.lb_project_file_indent.setText(QCoreApplication.translate("prefDialog", u"Project file indentation type", None))
714
+ self.cb_check_integrity_at_opening.setText(QCoreApplication.translate("prefDialog", u"Check project integrity when opening and saving project (recommended)", None))
715
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_project), QCoreApplication.translate("prefDialog", u"Project", None))
716
+ self.label_4.setText(QCoreApplication.translate("prefDialog", u"Fast forward/backward value (seconds)", None))
717
+ self.cb_adapt_fast_jump.setText(QCoreApplication.translate("prefDialog", u"Adapt the fast forward/backward jump to playback speed", None))
718
+ self.label_5.setText(QCoreApplication.translate("prefDialog", u"Playback speed step value", None))
719
+ self.label_2.setText(QCoreApplication.translate("prefDialog", u"Time offset for video/audio reposition (seconds)", None))
720
+ self.cbConfirmSound.setText(QCoreApplication.translate("prefDialog", u"Play sound when a key is pressed", None))
721
+ self.cbCloseSameEvent.setText(QCoreApplication.translate("prefDialog", u"Close the same current event independently of modifiers", None))
722
+ self.label_8.setText(QCoreApplication.translate("prefDialog", u"Beep every (seconds)", None))
723
+ self.cb_display_subtitles.setText(QCoreApplication.translate("prefDialog", u"Display subtitles", None))
724
+ self.cbTrackingCursorAboveEvent.setText(QCoreApplication.translate("prefDialog", u"Tracking cursor above current event", None))
725
+ self.cbAlertNoFocalSubject.setText(QCoreApplication.translate("prefDialog", u"Alert if focal subject is not set", None))
726
+ self.cb_pause_before_addevent.setText(QCoreApplication.translate("prefDialog", u"Pause media before \"Add event\" command", None))
727
+ self.label_24.setText(QCoreApplication.translate("prefDialog", u"Frame step size", None))
728
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_observations), QCoreApplication.translate("prefDialog", u"Observations", None))
729
+ self.label_13.setText(QCoreApplication.translate("prefDialog", u"BORIS plugins", None))
730
+ self.label_15.setText(QCoreApplication.translate("prefDialog", u"Personal plugins", None))
731
+ self.pb_browse_plugins_dir.setText(QCoreApplication.translate("prefDialog", u"Browse", None))
732
+ self.label_14.setText(QCoreApplication.translate("prefDialog", u"Plugin info", None))
733
+ self.label_23.setText(QCoreApplication.translate("prefDialog", u"Plugin code", None))
734
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_analysis_plugins), QCoreApplication.translate("prefDialog", u"Analysis plugins", None))
735
+ self.lbFFmpegPath.setText(QCoreApplication.translate("prefDialog", u"FFmpeg path:", None))
736
+ self.lbFFmpegCacheDir.setText(QCoreApplication.translate("prefDialog", u"FFmpeg cache directory", None))
737
+ self.pbBrowseFFmpegCacheDir.setText(QCoreApplication.translate("prefDialog", u"...", None))
738
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_ffmpeg), QCoreApplication.translate("prefDialog", u"FFmpeg framework", None))
739
+ self.groupBox.setTitle(QCoreApplication.translate("prefDialog", u"Spectrogram", None))
740
+ self.label_7.setText(QCoreApplication.translate("prefDialog", u"Color map", None))
741
+ self.label_12.setText(QCoreApplication.translate("prefDialog", u"Default time interval (s)", None))
742
+ self.label_16.setText(QCoreApplication.translate("prefDialog", u"Window type", None))
743
+ self.cb_window_type.setItemText(0, QCoreApplication.translate("prefDialog", u"hanning", None))
744
+ self.cb_window_type.setItemText(1, QCoreApplication.translate("prefDialog", u"hamming", None))
745
+ self.cb_window_type.setItemText(2, QCoreApplication.translate("prefDialog", u"blackmanharris", None))
746
+
747
+ self.label_17.setText(QCoreApplication.translate("prefDialog", u"NFFT", None))
748
+ self.cb_NFFT.setItemText(0, QCoreApplication.translate("prefDialog", u"256", None))
749
+ self.cb_NFFT.setItemText(1, QCoreApplication.translate("prefDialog", u"512", None))
750
+ self.cb_NFFT.setItemText(2, QCoreApplication.translate("prefDialog", u"1024", None))
751
+ self.cb_NFFT.setItemText(3, QCoreApplication.translate("prefDialog", u"2048", None))
752
+
753
+ self.label_18.setText(QCoreApplication.translate("prefDialog", u"noverlap", None))
754
+ self.label_19.setText(QCoreApplication.translate("prefDialog", u"vmin", None))
755
+ self.label_21.setText(QCoreApplication.translate("prefDialog", u"dBFS", None))
756
+ self.label_20.setText(QCoreApplication.translate("prefDialog", u"vmax", None))
757
+ self.label_22.setText(QCoreApplication.translate("prefDialog", u"dBFS", None))
758
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_spectro), QCoreApplication.translate("prefDialog", u"Spectrogram/Wave form", None))
759
+ self.label_10.setText(QCoreApplication.translate("prefDialog", u"<html><head/><body><p>List of colors for behaviors. See <a href=\"https://matplotlib.org/api/colors_api.html\"><span style=\" text-decoration: underline; color:#0000ff;\">matplotlib colors</span></a></p></body></html>", None))
760
+ self.pb_reset_behav_colors.setText(QCoreApplication.translate("prefDialog", u"Reset colors to default", None))
761
+ self.label_11.setText(QCoreApplication.translate("prefDialog", u"<html><head/><body><p>List of colors for behavioral categories. See <a href=\"https://matplotlib.org/api/colors_api.html\"><span style=\" text-decoration: underline; color:#0000ff;\">matplotlib colors</span></a></p></body></html>", None))
762
+ self.pb_reset_category_colors.setText(QCoreApplication.translate("prefDialog", u"Reset colors to default", None))
763
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_colors), QCoreApplication.translate("prefDialog", u"Plot colors", None))
764
+ self.label_9.setText(QCoreApplication.translate("prefDialog", u"Toolbar icons size", None))
765
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_interface), QCoreApplication.translate("prefDialog", u"Interface", None))
766
+ self.pb_refresh.setText(QCoreApplication.translate("prefDialog", u"Refresh", None))
767
+ self.pbCancel.setText(QCoreApplication.translate("prefDialog", u"Cancel", None))
768
+ self.pbOK.setText(QCoreApplication.translate("prefDialog", u"OK", None))
769
+ # retranslateUi
770
+