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
boris/project_ui.py ADDED
@@ -0,0 +1,794 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ ################################################################################
4
+ ## Form generated from reading UI file 'project.ui'
5
+ ##
6
+ ## Created by: Qt User Interface Compiler version 6.8.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 (QAbstractItemView, QApplication, QComboBox, QDateTimeEdit,
19
+ QDialog, QFrame, QHBoxLayout, QHeaderView,
20
+ QLabel, QLineEdit, QPlainTextEdit, QPushButton,
21
+ QRadioButton, QSizePolicy, QSpacerItem, QTabWidget,
22
+ QTableWidget, QTableWidgetItem, QVBoxLayout, QWidget)
23
+
24
+ class Ui_dlgProject(object):
25
+ def setupUi(self, dlgProject):
26
+ if not dlgProject.objectName():
27
+ dlgProject.setObjectName(u"dlgProject")
28
+ dlgProject.resize(1202, 697)
29
+ self.verticalLayout_7 = QVBoxLayout(dlgProject)
30
+ self.verticalLayout_7.setObjectName(u"verticalLayout_7")
31
+ self.verticalLayout_6 = QVBoxLayout()
32
+ self.verticalLayout_6.setObjectName(u"verticalLayout_6")
33
+ self.tabProject = QTabWidget(dlgProject)
34
+ self.tabProject.setObjectName(u"tabProject")
35
+ self.tabInformation = QWidget()
36
+ self.tabInformation.setObjectName(u"tabInformation")
37
+ self.verticalLayout = QVBoxLayout(self.tabInformation)
38
+ self.verticalLayout.setObjectName(u"verticalLayout")
39
+ self.horizontalLayout_15 = QHBoxLayout()
40
+ self.horizontalLayout_15.setObjectName(u"horizontalLayout_15")
41
+ self.label = QLabel(self.tabInformation)
42
+ self.label.setObjectName(u"label")
43
+
44
+ self.horizontalLayout_15.addWidget(self.label)
45
+
46
+ self.leProjectName = QLineEdit(self.tabInformation)
47
+ self.leProjectName.setObjectName(u"leProjectName")
48
+
49
+ self.horizontalLayout_15.addWidget(self.leProjectName)
50
+
51
+
52
+ self.verticalLayout.addLayout(self.horizontalLayout_15)
53
+
54
+ self.lbProjectFilePath = QLabel(self.tabInformation)
55
+ self.lbProjectFilePath.setObjectName(u"lbProjectFilePath")
56
+
57
+ self.verticalLayout.addWidget(self.lbProjectFilePath)
58
+
59
+ self.horizontalLayout_18 = QHBoxLayout()
60
+ self.horizontalLayout_18.setObjectName(u"horizontalLayout_18")
61
+ self.label_7 = QLabel(self.tabInformation)
62
+ self.label_7.setObjectName(u"label_7")
63
+
64
+ self.horizontalLayout_18.addWidget(self.label_7)
65
+
66
+ self.dteDate = QDateTimeEdit(self.tabInformation)
67
+ self.dteDate.setObjectName(u"dteDate")
68
+ self.dteDate.setCalendarPopup(True)
69
+
70
+ self.horizontalLayout_18.addWidget(self.dteDate)
71
+
72
+ self.horizontalSpacer_10 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
73
+
74
+ self.horizontalLayout_18.addItem(self.horizontalSpacer_10)
75
+
76
+
77
+ self.verticalLayout.addLayout(self.horizontalLayout_18)
78
+
79
+ self.label_6 = QLabel(self.tabInformation)
80
+ self.label_6.setObjectName(u"label_6")
81
+ self.label_6.setAlignment(Qt.AlignLeading|Qt.AlignLeft|Qt.AlignTop)
82
+
83
+ self.verticalLayout.addWidget(self.label_6)
84
+
85
+ self.teDescription = QPlainTextEdit(self.tabInformation)
86
+ self.teDescription.setObjectName(u"teDescription")
87
+
88
+ self.verticalLayout.addWidget(self.teDescription)
89
+
90
+ self.horizontalLayout_19 = QHBoxLayout()
91
+ self.horizontalLayout_19.setObjectName(u"horizontalLayout_19")
92
+ self.lbTimeFormat = QLabel(self.tabInformation)
93
+ self.lbTimeFormat.setObjectName(u"lbTimeFormat")
94
+
95
+ self.horizontalLayout_19.addWidget(self.lbTimeFormat)
96
+
97
+ self.rbSeconds = QRadioButton(self.tabInformation)
98
+ self.rbSeconds.setObjectName(u"rbSeconds")
99
+ self.rbSeconds.setChecked(True)
100
+
101
+ self.horizontalLayout_19.addWidget(self.rbSeconds)
102
+
103
+ self.rbHMS = QRadioButton(self.tabInformation)
104
+ self.rbHMS.setObjectName(u"rbHMS")
105
+
106
+ self.horizontalLayout_19.addWidget(self.rbHMS)
107
+
108
+ self.horizontalSpacer_2 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
109
+
110
+ self.horizontalLayout_19.addItem(self.horizontalSpacer_2)
111
+
112
+
113
+ self.verticalLayout.addLayout(self.horizontalLayout_19)
114
+
115
+ self.lb_project_format_version = QLabel(self.tabInformation)
116
+ self.lb_project_format_version.setObjectName(u"lb_project_format_version")
117
+
118
+ self.verticalLayout.addWidget(self.lb_project_format_version)
119
+
120
+ self.tabProject.addTab(self.tabInformation, "")
121
+ self.tabEthogram = QWidget()
122
+ self.tabEthogram.setObjectName(u"tabEthogram")
123
+ self.verticalLayout_10 = QVBoxLayout(self.tabEthogram)
124
+ self.verticalLayout_10.setObjectName(u"verticalLayout_10")
125
+ self.verticalLayout_5 = QVBoxLayout()
126
+ self.verticalLayout_5.setObjectName(u"verticalLayout_5")
127
+ self.horizontalLayout_11 = QHBoxLayout()
128
+ self.horizontalLayout_11.setObjectName(u"horizontalLayout_11")
129
+ self.twBehaviors = QTableWidget(self.tabEthogram)
130
+ if (self.twBehaviors.columnCount() < 9):
131
+ self.twBehaviors.setColumnCount(9)
132
+ __qtablewidgetitem = QTableWidgetItem()
133
+ self.twBehaviors.setHorizontalHeaderItem(0, __qtablewidgetitem)
134
+ __qtablewidgetitem1 = QTableWidgetItem()
135
+ self.twBehaviors.setHorizontalHeaderItem(1, __qtablewidgetitem1)
136
+ __qtablewidgetitem2 = QTableWidgetItem()
137
+ self.twBehaviors.setHorizontalHeaderItem(2, __qtablewidgetitem2)
138
+ __qtablewidgetitem3 = QTableWidgetItem()
139
+ self.twBehaviors.setHorizontalHeaderItem(3, __qtablewidgetitem3)
140
+ __qtablewidgetitem4 = QTableWidgetItem()
141
+ self.twBehaviors.setHorizontalHeaderItem(4, __qtablewidgetitem4)
142
+ __qtablewidgetitem5 = QTableWidgetItem()
143
+ self.twBehaviors.setHorizontalHeaderItem(5, __qtablewidgetitem5)
144
+ __qtablewidgetitem6 = QTableWidgetItem()
145
+ self.twBehaviors.setHorizontalHeaderItem(6, __qtablewidgetitem6)
146
+ __qtablewidgetitem7 = QTableWidgetItem()
147
+ self.twBehaviors.setHorizontalHeaderItem(7, __qtablewidgetitem7)
148
+ __qtablewidgetitem8 = QTableWidgetItem()
149
+ self.twBehaviors.setHorizontalHeaderItem(8, __qtablewidgetitem8)
150
+ self.twBehaviors.setObjectName(u"twBehaviors")
151
+ self.twBehaviors.setAutoFillBackground(False)
152
+ self.twBehaviors.setFrameShadow(QFrame.Sunken)
153
+ self.twBehaviors.setMidLineWidth(0)
154
+ self.twBehaviors.setAlternatingRowColors(True)
155
+ self.twBehaviors.setSelectionMode(QAbstractItemView.SingleSelection)
156
+ self.twBehaviors.setSelectionBehavior(QAbstractItemView.SelectRows)
157
+ self.twBehaviors.setSortingEnabled(False)
158
+ self.twBehaviors.horizontalHeader().setProperty(u"showSortIndicator", False)
159
+ self.twBehaviors.verticalHeader().setProperty(u"showSortIndicator", False)
160
+
161
+ self.horizontalLayout_11.addWidget(self.twBehaviors)
162
+
163
+ self.verticalLayout_11 = QVBoxLayout()
164
+ self.verticalLayout_11.setObjectName(u"verticalLayout_11")
165
+ self.pb_behavior = QPushButton(self.tabEthogram)
166
+ self.pb_behavior.setObjectName(u"pb_behavior")
167
+
168
+ self.verticalLayout_11.addWidget(self.pb_behavior)
169
+
170
+ self.pb_import = QPushButton(self.tabEthogram)
171
+ self.pb_import.setObjectName(u"pb_import")
172
+
173
+ self.verticalLayout_11.addWidget(self.pb_import)
174
+
175
+ self.pbBehaviorsCategories = QPushButton(self.tabEthogram)
176
+ self.pbBehaviorsCategories.setObjectName(u"pbBehaviorsCategories")
177
+
178
+ self.verticalLayout_11.addWidget(self.pbBehaviorsCategories)
179
+
180
+ self.verticalSpacer_3 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
181
+
182
+ self.verticalLayout_11.addItem(self.verticalSpacer_3)
183
+
184
+ self.pb_exclusion_matrix = QPushButton(self.tabEthogram)
185
+ self.pb_exclusion_matrix.setObjectName(u"pb_exclusion_matrix")
186
+
187
+ self.verticalLayout_11.addWidget(self.pb_exclusion_matrix)
188
+
189
+ self.pbExportEthogram = QPushButton(self.tabEthogram)
190
+ self.pbExportEthogram.setObjectName(u"pbExportEthogram")
191
+
192
+ self.verticalLayout_11.addWidget(self.pbExportEthogram)
193
+
194
+
195
+ self.horizontalLayout_11.addLayout(self.verticalLayout_11)
196
+
197
+
198
+ self.verticalLayout_5.addLayout(self.horizontalLayout_11)
199
+
200
+ self.lbObservationsState = QLabel(self.tabEthogram)
201
+ self.lbObservationsState.setObjectName(u"lbObservationsState")
202
+
203
+ self.verticalLayout_5.addWidget(self.lbObservationsState)
204
+
205
+
206
+ self.verticalLayout_10.addLayout(self.verticalLayout_5)
207
+
208
+ self.tabProject.addTab(self.tabEthogram, "")
209
+ self.tabSubjects = QWidget()
210
+ self.tabSubjects.setObjectName(u"tabSubjects")
211
+ self.verticalLayout_16 = QVBoxLayout(self.tabSubjects)
212
+ self.verticalLayout_16.setObjectName(u"verticalLayout_16")
213
+ self.verticalLayout_14 = QVBoxLayout()
214
+ self.verticalLayout_14.setObjectName(u"verticalLayout_14")
215
+ self.horizontalLayout_12 = QHBoxLayout()
216
+ self.horizontalLayout_12.setObjectName(u"horizontalLayout_12")
217
+ self.twSubjects = QTableWidget(self.tabSubjects)
218
+ if (self.twSubjects.columnCount() < 3):
219
+ self.twSubjects.setColumnCount(3)
220
+ __qtablewidgetitem9 = QTableWidgetItem()
221
+ self.twSubjects.setHorizontalHeaderItem(0, __qtablewidgetitem9)
222
+ __qtablewidgetitem10 = QTableWidgetItem()
223
+ self.twSubjects.setHorizontalHeaderItem(1, __qtablewidgetitem10)
224
+ __qtablewidgetitem11 = QTableWidgetItem()
225
+ self.twSubjects.setHorizontalHeaderItem(2, __qtablewidgetitem11)
226
+ self.twSubjects.setObjectName(u"twSubjects")
227
+ self.twSubjects.setAutoFillBackground(False)
228
+ self.twSubjects.setFrameShadow(QFrame.Sunken)
229
+ self.twSubjects.setMidLineWidth(0)
230
+ self.twSubjects.setSelectionMode(QAbstractItemView.SingleSelection)
231
+ self.twSubjects.setSelectionBehavior(QAbstractItemView.SelectRows)
232
+ self.twSubjects.setSortingEnabled(False)
233
+
234
+ self.horizontalLayout_12.addWidget(self.twSubjects)
235
+
236
+ self.verticalLayout_15 = QVBoxLayout()
237
+ self.verticalLayout_15.setObjectName(u"verticalLayout_15")
238
+ self.pb_subjects = QPushButton(self.tabSubjects)
239
+ self.pb_subjects.setObjectName(u"pb_subjects")
240
+
241
+ self.verticalLayout_15.addWidget(self.pb_subjects)
242
+
243
+ self.pbImportSubjectsFromProject = QPushButton(self.tabSubjects)
244
+ self.pbImportSubjectsFromProject.setObjectName(u"pbImportSubjectsFromProject")
245
+
246
+ self.verticalLayout_15.addWidget(self.pbImportSubjectsFromProject)
247
+
248
+ self.verticalSpacer_2 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
249
+
250
+ self.verticalLayout_15.addItem(self.verticalSpacer_2)
251
+
252
+ self.pb_export_subjects = QPushButton(self.tabSubjects)
253
+ self.pb_export_subjects.setObjectName(u"pb_export_subjects")
254
+
255
+ self.verticalLayout_15.addWidget(self.pb_export_subjects)
256
+
257
+
258
+ self.horizontalLayout_12.addLayout(self.verticalLayout_15)
259
+
260
+
261
+ self.verticalLayout_14.addLayout(self.horizontalLayout_12)
262
+
263
+ self.lbSubjectsState = QLabel(self.tabSubjects)
264
+ self.lbSubjectsState.setObjectName(u"lbSubjectsState")
265
+
266
+ self.verticalLayout_14.addWidget(self.lbSubjectsState)
267
+
268
+
269
+ self.verticalLayout_16.addLayout(self.verticalLayout_14)
270
+
271
+ self.tabProject.addTab(self.tabSubjects, "")
272
+ self.tabIndependentVariables = QWidget()
273
+ self.tabIndependentVariables.setObjectName(u"tabIndependentVariables")
274
+ self.horizontalLayout_14 = QHBoxLayout(self.tabIndependentVariables)
275
+ self.horizontalLayout_14.setObjectName(u"horizontalLayout_14")
276
+ self.horizontalLayout_13 = QHBoxLayout()
277
+ self.horizontalLayout_13.setObjectName(u"horizontalLayout_13")
278
+ self.verticalLayout_2 = QVBoxLayout()
279
+ self.verticalLayout_2.setObjectName(u"verticalLayout_2")
280
+ self.twVariables = QTableWidget(self.tabIndependentVariables)
281
+ if (self.twVariables.columnCount() < 5):
282
+ self.twVariables.setColumnCount(5)
283
+ __qtablewidgetitem12 = QTableWidgetItem()
284
+ self.twVariables.setHorizontalHeaderItem(0, __qtablewidgetitem12)
285
+ __qtablewidgetitem13 = QTableWidgetItem()
286
+ self.twVariables.setHorizontalHeaderItem(1, __qtablewidgetitem13)
287
+ __qtablewidgetitem14 = QTableWidgetItem()
288
+ self.twVariables.setHorizontalHeaderItem(2, __qtablewidgetitem14)
289
+ __qtablewidgetitem15 = QTableWidgetItem()
290
+ self.twVariables.setHorizontalHeaderItem(3, __qtablewidgetitem15)
291
+ __qtablewidgetitem16 = QTableWidgetItem()
292
+ self.twVariables.setHorizontalHeaderItem(4, __qtablewidgetitem16)
293
+ self.twVariables.setObjectName(u"twVariables")
294
+ self.twVariables.setAutoFillBackground(False)
295
+ self.twVariables.setFrameShadow(QFrame.Sunken)
296
+ self.twVariables.setMidLineWidth(0)
297
+ self.twVariables.setEditTriggers(QAbstractItemView.NoEditTriggers)
298
+ self.twVariables.setDragDropOverwriteMode(False)
299
+ self.twVariables.setAlternatingRowColors(True)
300
+ self.twVariables.setSelectionMode(QAbstractItemView.SingleSelection)
301
+ self.twVariables.setSelectionBehavior(QAbstractItemView.SelectRows)
302
+ self.twVariables.setSortingEnabled(False)
303
+ self.twVariables.horizontalHeader().setProperty(u"showSortIndicator", False)
304
+
305
+ self.verticalLayout_2.addWidget(self.twVariables)
306
+
307
+ self.horizontalLayout_3 = QHBoxLayout()
308
+ self.horizontalLayout_3.setObjectName(u"horizontalLayout_3")
309
+ self.label_2 = QLabel(self.tabIndependentVariables)
310
+ self.label_2.setObjectName(u"label_2")
311
+ self.label_2.setMinimumSize(QSize(120, 0))
312
+
313
+ self.horizontalLayout_3.addWidget(self.label_2)
314
+
315
+ self.leLabel = QLineEdit(self.tabIndependentVariables)
316
+ self.leLabel.setObjectName(u"leLabel")
317
+
318
+ self.horizontalLayout_3.addWidget(self.leLabel)
319
+
320
+ self.horizontalSpacer_3 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
321
+
322
+ self.horizontalLayout_3.addItem(self.horizontalSpacer_3)
323
+
324
+
325
+ self.verticalLayout_2.addLayout(self.horizontalLayout_3)
326
+
327
+ self.horizontalLayout_5 = QHBoxLayout()
328
+ self.horizontalLayout_5.setObjectName(u"horizontalLayout_5")
329
+ self.label_3 = QLabel(self.tabIndependentVariables)
330
+ self.label_3.setObjectName(u"label_3")
331
+ self.label_3.setMinimumSize(QSize(120, 0))
332
+
333
+ self.horizontalLayout_5.addWidget(self.label_3)
334
+
335
+ self.leDescription = QLineEdit(self.tabIndependentVariables)
336
+ self.leDescription.setObjectName(u"leDescription")
337
+
338
+ self.horizontalLayout_5.addWidget(self.leDescription)
339
+
340
+ self.horizontalSpacer_4 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
341
+
342
+ self.horizontalLayout_5.addItem(self.horizontalSpacer_4)
343
+
344
+
345
+ self.verticalLayout_2.addLayout(self.horizontalLayout_5)
346
+
347
+ self.horizontalLayout_6 = QHBoxLayout()
348
+ self.horizontalLayout_6.setObjectName(u"horizontalLayout_6")
349
+ self.label_8 = QLabel(self.tabIndependentVariables)
350
+ self.label_8.setObjectName(u"label_8")
351
+ self.label_8.setMinimumSize(QSize(120, 0))
352
+
353
+ self.horizontalLayout_6.addWidget(self.label_8)
354
+
355
+ self.cbType = QComboBox(self.tabIndependentVariables)
356
+ self.cbType.setObjectName(u"cbType")
357
+ self.cbType.setMinimumSize(QSize(120, 0))
358
+
359
+ self.horizontalLayout_6.addWidget(self.cbType)
360
+
361
+ self.horizontalSpacer_5 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
362
+
363
+ self.horizontalLayout_6.addItem(self.horizontalSpacer_5)
364
+
365
+
366
+ self.verticalLayout_2.addLayout(self.horizontalLayout_6)
367
+
368
+ self.horizontalLayout_7 = QHBoxLayout()
369
+ self.horizontalLayout_7.setObjectName(u"horizontalLayout_7")
370
+ self.label_4 = QLabel(self.tabIndependentVariables)
371
+ self.label_4.setObjectName(u"label_4")
372
+ self.label_4.setMinimumSize(QSize(120, 0))
373
+
374
+ self.horizontalLayout_7.addWidget(self.label_4)
375
+
376
+ self.lePredefined = QLineEdit(self.tabIndependentVariables)
377
+ self.lePredefined.setObjectName(u"lePredefined")
378
+
379
+ self.horizontalLayout_7.addWidget(self.lePredefined)
380
+
381
+ self.horizontalSpacer_6 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
382
+
383
+ self.horizontalLayout_7.addItem(self.horizontalSpacer_6)
384
+
385
+
386
+ self.verticalLayout_2.addLayout(self.horizontalLayout_7)
387
+
388
+ self.horizontalLayout_8 = QHBoxLayout()
389
+ self.horizontalLayout_8.setObjectName(u"horizontalLayout_8")
390
+ self.label_9 = QLabel(self.tabIndependentVariables)
391
+ self.label_9.setObjectName(u"label_9")
392
+ self.label_9.setMinimumSize(QSize(120, 0))
393
+
394
+ self.horizontalLayout_8.addWidget(self.label_9)
395
+
396
+ self.dte_default_date = QDateTimeEdit(self.tabIndependentVariables)
397
+ self.dte_default_date.setObjectName(u"dte_default_date")
398
+
399
+ self.horizontalLayout_8.addWidget(self.dte_default_date)
400
+
401
+ self.horizontalSpacer_7 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
402
+
403
+ self.horizontalLayout_8.addItem(self.horizontalSpacer_7)
404
+
405
+
406
+ self.verticalLayout_2.addLayout(self.horizontalLayout_8)
407
+
408
+ self.horizontalLayout_9 = QHBoxLayout()
409
+ self.horizontalLayout_9.setObjectName(u"horizontalLayout_9")
410
+ self.label_5 = QLabel(self.tabIndependentVariables)
411
+ self.label_5.setObjectName(u"label_5")
412
+
413
+ self.horizontalLayout_9.addWidget(self.label_5)
414
+
415
+ self.leSetValues = QLineEdit(self.tabIndependentVariables)
416
+ self.leSetValues.setObjectName(u"leSetValues")
417
+
418
+ self.horizontalLayout_9.addWidget(self.leSetValues)
419
+
420
+ self.horizontalSpacer_8 = QSpacerItem(40, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
421
+
422
+ self.horizontalLayout_9.addItem(self.horizontalSpacer_8)
423
+
424
+
425
+ self.verticalLayout_2.addLayout(self.horizontalLayout_9)
426
+
427
+
428
+ self.horizontalLayout_13.addLayout(self.verticalLayout_2)
429
+
430
+ self.verticalLayout_12 = QVBoxLayout()
431
+ self.verticalLayout_12.setObjectName(u"verticalLayout_12")
432
+ self.pbAddVariable = QPushButton(self.tabIndependentVariables)
433
+ self.pbAddVariable.setObjectName(u"pbAddVariable")
434
+
435
+ self.verticalLayout_12.addWidget(self.pbAddVariable)
436
+
437
+ self.pbRemoveVariable = QPushButton(self.tabIndependentVariables)
438
+ self.pbRemoveVariable.setObjectName(u"pbRemoveVariable")
439
+
440
+ self.verticalLayout_12.addWidget(self.pbRemoveVariable)
441
+
442
+ self.pbImportVarFromProject = QPushButton(self.tabIndependentVariables)
443
+ self.pbImportVarFromProject.setObjectName(u"pbImportVarFromProject")
444
+
445
+ self.verticalLayout_12.addWidget(self.pbImportVarFromProject)
446
+
447
+ self.verticalSpacer_4 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
448
+
449
+ self.verticalLayout_12.addItem(self.verticalSpacer_4)
450
+
451
+
452
+ self.horizontalLayout_13.addLayout(self.verticalLayout_12)
453
+
454
+
455
+ self.horizontalLayout_14.addLayout(self.horizontalLayout_13)
456
+
457
+ self.tabProject.addTab(self.tabIndependentVariables, "")
458
+ self.tabBehavCodingMap = QWidget()
459
+ self.tabBehavCodingMap.setObjectName(u"tabBehavCodingMap")
460
+ self.verticalLayout_8 = QVBoxLayout(self.tabBehavCodingMap)
461
+ self.verticalLayout_8.setObjectName(u"verticalLayout_8")
462
+ self.horizontalLayout = QHBoxLayout()
463
+ self.horizontalLayout.setObjectName(u"horizontalLayout")
464
+ self.twBehavCodingMap = QTableWidget(self.tabBehavCodingMap)
465
+ if (self.twBehavCodingMap.columnCount() < 2):
466
+ self.twBehavCodingMap.setColumnCount(2)
467
+ __qtablewidgetitem17 = QTableWidgetItem()
468
+ self.twBehavCodingMap.setHorizontalHeaderItem(0, __qtablewidgetitem17)
469
+ __qtablewidgetitem18 = QTableWidgetItem()
470
+ self.twBehavCodingMap.setHorizontalHeaderItem(1, __qtablewidgetitem18)
471
+ self.twBehavCodingMap.setObjectName(u"twBehavCodingMap")
472
+ self.twBehavCodingMap.setAutoFillBackground(False)
473
+ self.twBehavCodingMap.setFrameShadow(QFrame.Sunken)
474
+ self.twBehavCodingMap.setMidLineWidth(0)
475
+ self.twBehavCodingMap.setSelectionMode(QAbstractItemView.SingleSelection)
476
+ self.twBehavCodingMap.setSelectionBehavior(QAbstractItemView.SelectRows)
477
+ self.twBehavCodingMap.setSortingEnabled(False)
478
+
479
+ self.horizontalLayout.addWidget(self.twBehavCodingMap)
480
+
481
+ self.verticalLayout_4 = QVBoxLayout()
482
+ self.verticalLayout_4.setObjectName(u"verticalLayout_4")
483
+ self.pbAddBehaviorsCodingMap = QPushButton(self.tabBehavCodingMap)
484
+ self.pbAddBehaviorsCodingMap.setObjectName(u"pbAddBehaviorsCodingMap")
485
+
486
+ self.verticalLayout_4.addWidget(self.pbAddBehaviorsCodingMap)
487
+
488
+ self.pbRemoveBehaviorsCodingMap = QPushButton(self.tabBehavCodingMap)
489
+ self.pbRemoveBehaviorsCodingMap.setObjectName(u"pbRemoveBehaviorsCodingMap")
490
+
491
+ self.verticalLayout_4.addWidget(self.pbRemoveBehaviorsCodingMap)
492
+
493
+ self.verticalSpacer = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
494
+
495
+ self.verticalLayout_4.addItem(self.verticalSpacer)
496
+
497
+
498
+ self.horizontalLayout.addLayout(self.verticalLayout_4)
499
+
500
+
501
+ self.verticalLayout_8.addLayout(self.horizontalLayout)
502
+
503
+ self.tabProject.addTab(self.tabBehavCodingMap, "")
504
+ self.tab_time_converters = QWidget()
505
+ self.tab_time_converters.setObjectName(u"tab_time_converters")
506
+ self.verticalLayout_18 = QVBoxLayout(self.tab_time_converters)
507
+ self.verticalLayout_18.setObjectName(u"verticalLayout_18")
508
+ self.label_11 = QLabel(self.tab_time_converters)
509
+ self.label_11.setObjectName(u"label_11")
510
+
511
+ self.verticalLayout_18.addWidget(self.label_11)
512
+
513
+ self.horizontalLayout_16 = QHBoxLayout()
514
+ self.horizontalLayout_16.setObjectName(u"horizontalLayout_16")
515
+ self.tw_converters = QTableWidget(self.tab_time_converters)
516
+ if (self.tw_converters.columnCount() < 3):
517
+ self.tw_converters.setColumnCount(3)
518
+ __qtablewidgetitem19 = QTableWidgetItem()
519
+ self.tw_converters.setHorizontalHeaderItem(0, __qtablewidgetitem19)
520
+ __qtablewidgetitem20 = QTableWidgetItem()
521
+ self.tw_converters.setHorizontalHeaderItem(1, __qtablewidgetitem20)
522
+ __qtablewidgetitem21 = QTableWidgetItem()
523
+ self.tw_converters.setHorizontalHeaderItem(2, __qtablewidgetitem21)
524
+ self.tw_converters.setObjectName(u"tw_converters")
525
+ self.tw_converters.setEditTriggers(QAbstractItemView.NoEditTriggers)
526
+ self.tw_converters.setSelectionMode(QAbstractItemView.SingleSelection)
527
+ self.tw_converters.setSelectionBehavior(QAbstractItemView.SelectRows)
528
+ self.tw_converters.setSortingEnabled(False)
529
+
530
+ self.horizontalLayout_16.addWidget(self.tw_converters)
531
+
532
+ self.verticalLayout_17 = QVBoxLayout()
533
+ self.verticalLayout_17.setObjectName(u"verticalLayout_17")
534
+ self.pb_add_converter = QPushButton(self.tab_time_converters)
535
+ self.pb_add_converter.setObjectName(u"pb_add_converter")
536
+
537
+ self.verticalLayout_17.addWidget(self.pb_add_converter)
538
+
539
+ self.pb_modify_converter = QPushButton(self.tab_time_converters)
540
+ self.pb_modify_converter.setObjectName(u"pb_modify_converter")
541
+
542
+ self.verticalLayout_17.addWidget(self.pb_modify_converter)
543
+
544
+ self.pb_delete_converter = QPushButton(self.tab_time_converters)
545
+ self.pb_delete_converter.setObjectName(u"pb_delete_converter")
546
+
547
+ self.verticalLayout_17.addWidget(self.pb_delete_converter)
548
+
549
+ self.pb_load_from_file = QPushButton(self.tab_time_converters)
550
+ self.pb_load_from_file.setObjectName(u"pb_load_from_file")
551
+
552
+ self.verticalLayout_17.addWidget(self.pb_load_from_file)
553
+
554
+ self.pb_load_from_repo = QPushButton(self.tab_time_converters)
555
+ self.pb_load_from_repo.setObjectName(u"pb_load_from_repo")
556
+
557
+ self.verticalLayout_17.addWidget(self.pb_load_from_repo)
558
+
559
+ self.verticalSpacer_7 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
560
+
561
+ self.verticalLayout_17.addItem(self.verticalSpacer_7)
562
+
563
+
564
+ self.horizontalLayout_16.addLayout(self.verticalLayout_17)
565
+
566
+
567
+ self.verticalLayout_18.addLayout(self.horizontalLayout_16)
568
+
569
+ self.horizontalLayout_17 = QHBoxLayout()
570
+ self.horizontalLayout_17.setObjectName(u"horizontalLayout_17")
571
+ self.label_13 = QLabel(self.tab_time_converters)
572
+ self.label_13.setObjectName(u"label_13")
573
+ self.label_13.setMinimumSize(QSize(120, 0))
574
+
575
+ self.horizontalLayout_17.addWidget(self.label_13)
576
+
577
+ self.le_converter_name = QLineEdit(self.tab_time_converters)
578
+ self.le_converter_name.setObjectName(u"le_converter_name")
579
+
580
+ self.horizontalLayout_17.addWidget(self.le_converter_name)
581
+
582
+ self.horizontalSpacer_11 = QSpacerItem(10, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
583
+
584
+ self.horizontalLayout_17.addItem(self.horizontalSpacer_11)
585
+
586
+
587
+ self.verticalLayout_18.addLayout(self.horizontalLayout_17)
588
+
589
+ self.horizontalLayout_10 = QHBoxLayout()
590
+ self.horizontalLayout_10.setObjectName(u"horizontalLayout_10")
591
+ self.label_10 = QLabel(self.tab_time_converters)
592
+ self.label_10.setObjectName(u"label_10")
593
+ self.label_10.setMinimumSize(QSize(120, 0))
594
+
595
+ self.horizontalLayout_10.addWidget(self.label_10)
596
+
597
+ self.le_converter_description = QLineEdit(self.tab_time_converters)
598
+ self.le_converter_description.setObjectName(u"le_converter_description")
599
+
600
+ self.horizontalLayout_10.addWidget(self.le_converter_description)
601
+
602
+ self.horizontalSpacer_9 = QSpacerItem(10, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
603
+
604
+ self.horizontalLayout_10.addItem(self.horizontalSpacer_9)
605
+
606
+
607
+ self.verticalLayout_18.addLayout(self.horizontalLayout_10)
608
+
609
+ self.horizontalLayout_2 = QHBoxLayout()
610
+ self.horizontalLayout_2.setObjectName(u"horizontalLayout_2")
611
+ self.verticalLayout_9 = QVBoxLayout()
612
+ self.verticalLayout_9.setObjectName(u"verticalLayout_9")
613
+ self.label_12 = QLabel(self.tab_time_converters)
614
+ self.label_12.setObjectName(u"label_12")
615
+
616
+ self.verticalLayout_9.addWidget(self.label_12)
617
+
618
+ self.pb_code_help = QPushButton(self.tab_time_converters)
619
+ self.pb_code_help.setObjectName(u"pb_code_help")
620
+
621
+ self.verticalLayout_9.addWidget(self.pb_code_help)
622
+
623
+ self.verticalSpacer_5 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
624
+
625
+ self.verticalLayout_9.addItem(self.verticalSpacer_5)
626
+
627
+
628
+ self.horizontalLayout_2.addLayout(self.verticalLayout_9)
629
+
630
+ self.pteCode = QPlainTextEdit(self.tab_time_converters)
631
+ self.pteCode.setObjectName(u"pteCode")
632
+ font = QFont()
633
+ font.setFamilies([u"Monospace"])
634
+ self.pteCode.setFont(font)
635
+
636
+ self.horizontalLayout_2.addWidget(self.pteCode)
637
+
638
+ self.verticalLayout_13 = QVBoxLayout()
639
+ self.verticalLayout_13.setObjectName(u"verticalLayout_13")
640
+ self.pb_save_converter = QPushButton(self.tab_time_converters)
641
+ self.pb_save_converter.setObjectName(u"pb_save_converter")
642
+
643
+ self.verticalLayout_13.addWidget(self.pb_save_converter)
644
+
645
+ self.pb_cancel_converter = QPushButton(self.tab_time_converters)
646
+ self.pb_cancel_converter.setObjectName(u"pb_cancel_converter")
647
+
648
+ self.verticalLayout_13.addWidget(self.pb_cancel_converter)
649
+
650
+ self.verticalSpacer_6 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
651
+
652
+ self.verticalLayout_13.addItem(self.verticalSpacer_6)
653
+
654
+
655
+ self.horizontalLayout_2.addLayout(self.verticalLayout_13)
656
+
657
+
658
+ self.verticalLayout_18.addLayout(self.horizontalLayout_2)
659
+
660
+ self.tabProject.addTab(self.tab_time_converters, "")
661
+
662
+ self.verticalLayout_6.addWidget(self.tabProject)
663
+
664
+ self.horizontalLayout_4 = QHBoxLayout()
665
+ self.horizontalLayout_4.setObjectName(u"horizontalLayout_4")
666
+ self.horizontalSpacer = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
667
+
668
+ self.horizontalLayout_4.addItem(self.horizontalSpacer)
669
+
670
+ self.pbCancel = QPushButton(dlgProject)
671
+ self.pbCancel.setObjectName(u"pbCancel")
672
+
673
+ self.horizontalLayout_4.addWidget(self.pbCancel)
674
+
675
+ self.pbOK = QPushButton(dlgProject)
676
+ self.pbOK.setObjectName(u"pbOK")
677
+
678
+ self.horizontalLayout_4.addWidget(self.pbOK)
679
+
680
+
681
+ self.verticalLayout_6.addLayout(self.horizontalLayout_4)
682
+
683
+
684
+ self.verticalLayout_7.addLayout(self.verticalLayout_6)
685
+
686
+
687
+ self.retranslateUi(dlgProject)
688
+
689
+ self.tabProject.setCurrentIndex(3)
690
+
691
+
692
+ QMetaObject.connectSlotsByName(dlgProject)
693
+ # setupUi
694
+
695
+ def retranslateUi(self, dlgProject):
696
+ dlgProject.setWindowTitle(QCoreApplication.translate("dlgProject", u"Project", None))
697
+ self.label.setText(QCoreApplication.translate("dlgProject", u"Project name", None))
698
+ self.lbProjectFilePath.setText(QCoreApplication.translate("dlgProject", u"Project file path:", None))
699
+ self.label_7.setText(QCoreApplication.translate("dlgProject", u"Project date and time", None))
700
+ self.dteDate.setDisplayFormat(QCoreApplication.translate("dlgProject", u"yyyy-MM-dd hh:mm", None))
701
+ self.label_6.setText(QCoreApplication.translate("dlgProject", u"Project description", None))
702
+ self.lbTimeFormat.setText(QCoreApplication.translate("dlgProject", u"Project time format", None))
703
+ self.rbSeconds.setText(QCoreApplication.translate("dlgProject", u"seconds", None))
704
+ self.rbHMS.setText(QCoreApplication.translate("dlgProject", u"hh:mm:ss.mss", None))
705
+ self.lb_project_format_version.setText(QCoreApplication.translate("dlgProject", u"Project format version:", None))
706
+ self.tabProject.setTabText(self.tabProject.indexOf(self.tabInformation), QCoreApplication.translate("dlgProject", u"Information", None))
707
+ ___qtablewidgetitem = self.twBehaviors.horizontalHeaderItem(0)
708
+ ___qtablewidgetitem.setText(QCoreApplication.translate("dlgProject", u"Behavior type", None));
709
+ ___qtablewidgetitem1 = self.twBehaviors.horizontalHeaderItem(1)
710
+ ___qtablewidgetitem1.setText(QCoreApplication.translate("dlgProject", u"Key", None));
711
+ ___qtablewidgetitem2 = self.twBehaviors.horizontalHeaderItem(2)
712
+ ___qtablewidgetitem2.setText(QCoreApplication.translate("dlgProject", u"Code", None));
713
+ ___qtablewidgetitem3 = self.twBehaviors.horizontalHeaderItem(3)
714
+ ___qtablewidgetitem3.setText(QCoreApplication.translate("dlgProject", u"Description", None));
715
+ ___qtablewidgetitem4 = self.twBehaviors.horizontalHeaderItem(4)
716
+ ___qtablewidgetitem4.setText(QCoreApplication.translate("dlgProject", u"Color", None));
717
+ ___qtablewidgetitem5 = self.twBehaviors.horizontalHeaderItem(5)
718
+ ___qtablewidgetitem5.setText(QCoreApplication.translate("dlgProject", u"Category", None));
719
+ ___qtablewidgetitem6 = self.twBehaviors.horizontalHeaderItem(6)
720
+ ___qtablewidgetitem6.setText(QCoreApplication.translate("dlgProject", u"Modifiers", None));
721
+ ___qtablewidgetitem7 = self.twBehaviors.horizontalHeaderItem(7)
722
+ ___qtablewidgetitem7.setText(QCoreApplication.translate("dlgProject", u"Exclusion", None));
723
+ ___qtablewidgetitem8 = self.twBehaviors.horizontalHeaderItem(8)
724
+ ___qtablewidgetitem8.setText(QCoreApplication.translate("dlgProject", u"Modifiers coding map", None));
725
+ self.pb_behavior.setText(QCoreApplication.translate("dlgProject", u"Behavior", None))
726
+ self.pb_import.setText(QCoreApplication.translate("dlgProject", u"Import ethogram", None))
727
+ self.pbBehaviorsCategories.setText(QCoreApplication.translate("dlgProject", u"Behavioral categories", None))
728
+ self.pb_exclusion_matrix.setText(QCoreApplication.translate("dlgProject", u"Exclusion matrix", None))
729
+ self.pbExportEthogram.setText(QCoreApplication.translate("dlgProject", u"Export ethogram", None))
730
+ self.lbObservationsState.setText(QCoreApplication.translate("dlgProject", u"TextLabel", None))
731
+ self.tabProject.setTabText(self.tabProject.indexOf(self.tabEthogram), QCoreApplication.translate("dlgProject", u"Ethogram", None))
732
+ ___qtablewidgetitem9 = self.twSubjects.horizontalHeaderItem(0)
733
+ ___qtablewidgetitem9.setText(QCoreApplication.translate("dlgProject", u"Key", None));
734
+ ___qtablewidgetitem10 = self.twSubjects.horizontalHeaderItem(1)
735
+ ___qtablewidgetitem10.setText(QCoreApplication.translate("dlgProject", u"Subject name", None));
736
+ ___qtablewidgetitem11 = self.twSubjects.horizontalHeaderItem(2)
737
+ ___qtablewidgetitem11.setText(QCoreApplication.translate("dlgProject", u"Description", None));
738
+ self.pb_subjects.setText(QCoreApplication.translate("dlgProject", u"Subjects", None))
739
+ self.pbImportSubjectsFromProject.setText(QCoreApplication.translate("dlgProject", u"Import subjects", None))
740
+ self.pb_export_subjects.setText(QCoreApplication.translate("dlgProject", u"Export subjects", None))
741
+ self.lbSubjectsState.setText(QCoreApplication.translate("dlgProject", u"TextLabel", None))
742
+ self.tabProject.setTabText(self.tabProject.indexOf(self.tabSubjects), QCoreApplication.translate("dlgProject", u"Subjects", None))
743
+ ___qtablewidgetitem12 = self.twVariables.horizontalHeaderItem(0)
744
+ ___qtablewidgetitem12.setText(QCoreApplication.translate("dlgProject", u"Label", None));
745
+ ___qtablewidgetitem13 = self.twVariables.horizontalHeaderItem(1)
746
+ ___qtablewidgetitem13.setText(QCoreApplication.translate("dlgProject", u"Description", None));
747
+ ___qtablewidgetitem14 = self.twVariables.horizontalHeaderItem(2)
748
+ ___qtablewidgetitem14.setText(QCoreApplication.translate("dlgProject", u"Type", None));
749
+ ___qtablewidgetitem15 = self.twVariables.horizontalHeaderItem(3)
750
+ ___qtablewidgetitem15.setText(QCoreApplication.translate("dlgProject", u"Predefined value", None));
751
+ ___qtablewidgetitem16 = self.twVariables.horizontalHeaderItem(4)
752
+ ___qtablewidgetitem16.setText(QCoreApplication.translate("dlgProject", u"Set of values", None));
753
+ self.label_2.setText(QCoreApplication.translate("dlgProject", u"Label", None))
754
+ self.label_3.setText(QCoreApplication.translate("dlgProject", u"Description", None))
755
+ self.label_8.setText(QCoreApplication.translate("dlgProject", u"Type", None))
756
+ self.label_4.setText(QCoreApplication.translate("dlgProject", u"Predefined value", None))
757
+ self.label_9.setText(QCoreApplication.translate("dlgProject", u"Predefined timestamp", None))
758
+ self.dte_default_date.setDisplayFormat(QCoreApplication.translate("dlgProject", u"yyyy-MM-dd hh:mm:ss.zzz", None))
759
+ self.label_5.setText(QCoreApplication.translate("dlgProject", u"Set of values (separated by comma)", None))
760
+ self.pbAddVariable.setText(QCoreApplication.translate("dlgProject", u"Add variable", None))
761
+ self.pbRemoveVariable.setText(QCoreApplication.translate("dlgProject", u"Remove variable", None))
762
+ self.pbImportVarFromProject.setText(QCoreApplication.translate("dlgProject", u"Import variables\n"
763
+ "from a BORIS project", None))
764
+ self.tabProject.setTabText(self.tabProject.indexOf(self.tabIndependentVariables), QCoreApplication.translate("dlgProject", u"Independent variables", None))
765
+ ___qtablewidgetitem17 = self.twBehavCodingMap.horizontalHeaderItem(0)
766
+ ___qtablewidgetitem17.setText(QCoreApplication.translate("dlgProject", u"Name", None));
767
+ ___qtablewidgetitem18 = self.twBehavCodingMap.horizontalHeaderItem(1)
768
+ ___qtablewidgetitem18.setText(QCoreApplication.translate("dlgProject", u"Behavior codes", None));
769
+ self.pbAddBehaviorsCodingMap.setText(QCoreApplication.translate("dlgProject", u"Add a behaviors coding map", None))
770
+ self.pbRemoveBehaviorsCodingMap.setText(QCoreApplication.translate("dlgProject", u"Remove behaviors coding map", None))
771
+ self.tabProject.setTabText(self.tabProject.indexOf(self.tabBehavCodingMap), QCoreApplication.translate("dlgProject", u"Behaviors coding map", None))
772
+ self.label_11.setText(QCoreApplication.translate("dlgProject", u"Time converters for external data", None))
773
+ ___qtablewidgetitem19 = self.tw_converters.horizontalHeaderItem(0)
774
+ ___qtablewidgetitem19.setText(QCoreApplication.translate("dlgProject", u"Name", None));
775
+ ___qtablewidgetitem20 = self.tw_converters.horizontalHeaderItem(1)
776
+ ___qtablewidgetitem20.setText(QCoreApplication.translate("dlgProject", u"Description", None));
777
+ ___qtablewidgetitem21 = self.tw_converters.horizontalHeaderItem(2)
778
+ ___qtablewidgetitem21.setText(QCoreApplication.translate("dlgProject", u"Code", None));
779
+ self.pb_add_converter.setText(QCoreApplication.translate("dlgProject", u"Add new converter", None))
780
+ self.pb_modify_converter.setText(QCoreApplication.translate("dlgProject", u"Modify converter", None))
781
+ self.pb_delete_converter.setText(QCoreApplication.translate("dlgProject", u"Delete converter", None))
782
+ self.pb_load_from_file.setText(QCoreApplication.translate("dlgProject", u"Load converters from file", None))
783
+ self.pb_load_from_repo.setText(QCoreApplication.translate("dlgProject", u"Load converters from BORIS repository", None))
784
+ self.label_13.setText(QCoreApplication.translate("dlgProject", u"Name", None))
785
+ self.label_10.setText(QCoreApplication.translate("dlgProject", u"Description", None))
786
+ self.label_12.setText(QCoreApplication.translate("dlgProject", u"Python code", None))
787
+ self.pb_code_help.setText(QCoreApplication.translate("dlgProject", u"Help", None))
788
+ self.pb_save_converter.setText(QCoreApplication.translate("dlgProject", u"Save converter", None))
789
+ self.pb_cancel_converter.setText(QCoreApplication.translate("dlgProject", u"Cancel", None))
790
+ self.tabProject.setTabText(self.tabProject.indexOf(self.tab_time_converters), QCoreApplication.translate("dlgProject", u"Converters", None))
791
+ self.pbCancel.setText(QCoreApplication.translate("dlgProject", u"Cancel", None))
792
+ self.pbOK.setText(QCoreApplication.translate("dlgProject", u"OK", None))
793
+ # retranslateUi
794
+