boris-behav-obs 8.27.9__py2.py3-none-any.whl → 9.0.1__py2.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/about.py +7 -5
- boris/add_modifier.py +35 -35
- boris/add_modifier_ui.py +229 -129
- boris/advanced_event_filtering.py +3 -3
- boris/analysis_plugins/__init__.py +0 -0
- boris/analysis_plugins/number_of_occurences.py +60 -0
- boris/analysis_plugins/number_of_occurences_by_independent_variable.py +72 -0
- boris/analysis_plugins/time_budget.py +95 -0
- boris/behav_coding_map_creator.py +103 -108
- boris/behavior_binary_table.py +1 -1
- boris/behaviors_coding_map.py +8 -8
- boris/coding_pad.py +6 -6
- boris/config.py +6 -0
- boris/config_file.py +1 -1
- boris/connections.py +4 -2
- boris/converters.py +2 -3
- boris/converters_ui.py +187 -110
- boris/cooccurence.py +2 -2
- boris/core.py +340 -94
- boris/core_qrc.py +16088 -13246
- boris/core_ui.py +922 -812
- boris/db_functions.py +3 -1
- boris/dialog.py +14 -13
- boris/duration_widget.py +5 -5
- boris/edit_event.py +1 -1
- boris/edit_event_ui.py +162 -88
- boris/event_operations.py +4 -25
- boris/events_cursor.py +17 -9
- boris/events_snapshots.py +5 -5
- boris/exclusion_matrix.py +1 -1
- boris/export_events.py +38 -28
- boris/export_observation.py +1 -1
- boris/external_processes.py +3 -5
- boris/geometric_measurement.py +49 -26
- boris/gui_utilities.py +31 -30
- boris/import_observations.py +2 -4
- boris/irr.py +1 -1
- boris/latency.py +1 -1
- boris/map_creator.py +77 -89
- boris/measurement_widget.py +4 -4
- boris/media_file.py +2 -4
- boris/menu_options.py +1 -3
- boris/modifiers_coding_map.py +4 -4
- boris/mpv2.py +0 -2
- boris/observation.py +124 -29
- boris/observation_operations.py +18 -40
- boris/observation_ui.py +566 -374
- boris/observations_list.py +6 -6
- boris/param_panel.py +2 -2
- boris/param_panel_ui.py +246 -141
- boris/player_dock_widget.py +16 -21
- boris/plot_data_module.py +6 -6
- boris/plot_events_rt.py +7 -8
- boris/plot_spectrogram_rt.py +7 -8
- boris/plot_waveform_rt.py +6 -7
- boris/plugins.py +79 -0
- boris/preferences.py +127 -17
- boris/preferences_ui.py +464 -240
- boris/project.py +69 -72
- boris/project_functions.py +233 -31
- boris/project_import_export.py +59 -67
- boris/project_ui.py +672 -440
- boris/qrc_boris.py +6 -3
- boris/qrc_boris5.py +6 -3
- boris/select_modifiers.py +2 -2
- boris/select_observations.py +2 -2
- boris/select_subj_behav.py +3 -3
- boris/state_events.py +1 -1
- boris/subjects_pad.py +5 -5
- boris/synthetic_time_budget.py +2 -2
- boris/time_budget_functions.py +15 -0
- boris/time_budget_widget.py +4 -4
- boris/transitions.py +34 -25
- boris/utilities.py +95 -2
- boris/version.py +2 -2
- boris/video_equalizer.py +4 -4
- boris/video_equalizer_ui.py +199 -130
- boris/video_operations.py +1 -1
- boris/view_df.py +106 -0
- boris/view_df_ui.py +75 -0
- boris/write_event.py +9 -1
- {boris_behav_obs-8.27.9.dist-info → boris_behav_obs-9.0.1.dist-info}/METADATA +5 -5
- boris_behav_obs-9.0.1.dist-info/RECORD +103 -0
- {boris_behav_obs-8.27.9.dist-info → boris_behav_obs-9.0.1.dist-info}/WHEEL +1 -1
- boris/qdarkstyle/__init__.py +0 -479
- boris/qdarkstyle/__main__.py +0 -66
- boris/qdarkstyle/colorsystem.py +0 -38
- boris/qdarkstyle/dark/__init__.py +0 -1
- boris/qdarkstyle/dark/darkstyle_rc.py +0 -11379
- boris/qdarkstyle/dark/palette.py +0 -38
- boris/qdarkstyle/example/__init__.py +0 -4
- boris/qdarkstyle/example/__main__.py +0 -386
- boris/qdarkstyle/example/ui/__init__.py +0 -4
- boris/qdarkstyle/light/__init__.py +0 -1
- boris/qdarkstyle/light/lightstyle_rc.py +0 -11305
- boris/qdarkstyle/light/palette.py +0 -37
- boris/qdarkstyle/palette.py +0 -102
- boris/qdarkstyle/utils/__init__.py +0 -73
- boris/qdarkstyle/utils/__main__.py +0 -96
- boris/qdarkstyle/utils/images.py +0 -449
- boris/qdarkstyle/utils/scss.py +0 -318
- boris/vlc_local.py +0 -83
- boris_behav_obs-8.27.9.dist-info/RECORD +0 -114
- {boris_behav_obs-8.27.9.dist-info → boris_behav_obs-9.0.1.dist-info}/LICENSE.TXT +0 -0
- {boris_behav_obs-8.27.9.dist-info → boris_behav_obs-9.0.1.dist-info}/entry_points.txt +0 -0
- {boris_behav_obs-8.27.9.dist-info → boris_behav_obs-9.0.1.dist-info}/top_level.txt +0 -0
boris/converters_ui.py
CHANGED
|
@@ -1,148 +1,225 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
################################################################################
|
|
4
|
+
## Form generated from reading UI file 'converters.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
|
+
################################################################################
|
|
8
10
|
|
|
9
|
-
from
|
|
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, QHBoxLayout, QHeaderView,
|
|
19
|
+
QLabel, QLineEdit, QPlainTextEdit, QPushButton,
|
|
20
|
+
QSizePolicy, QSpacerItem, QTableWidget, QTableWidgetItem,
|
|
21
|
+
QVBoxLayout, QWidget)
|
|
10
22
|
|
|
11
23
|
class Ui_converters(object):
|
|
12
24
|
def setupUi(self, converters):
|
|
13
|
-
converters.
|
|
25
|
+
if not converters.objectName():
|
|
26
|
+
converters.setObjectName(u"converters")
|
|
14
27
|
converters.resize(1029, 530)
|
|
15
|
-
self.verticalLayout =
|
|
16
|
-
self.verticalLayout.setObjectName("verticalLayout")
|
|
17
|
-
self.label_4 =
|
|
18
|
-
self.label_4.setObjectName("label_4")
|
|
28
|
+
self.verticalLayout = QVBoxLayout(converters)
|
|
29
|
+
self.verticalLayout.setObjectName(u"verticalLayout")
|
|
30
|
+
self.label_4 = QLabel(converters)
|
|
31
|
+
self.label_4.setObjectName(u"label_4")
|
|
32
|
+
|
|
19
33
|
self.verticalLayout.addWidget(self.label_4)
|
|
20
|
-
|
|
21
|
-
self.tw_converters
|
|
22
|
-
self.tw_converters.
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
self.tw_converters.
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
self.tw_converters.
|
|
31
|
-
|
|
32
|
-
self.tw_converters.
|
|
34
|
+
|
|
35
|
+
self.tw_converters = QTableWidget(converters)
|
|
36
|
+
if (self.tw_converters.columnCount() < 3):
|
|
37
|
+
self.tw_converters.setColumnCount(3)
|
|
38
|
+
__qtablewidgetitem = QTableWidgetItem()
|
|
39
|
+
self.tw_converters.setHorizontalHeaderItem(0, __qtablewidgetitem)
|
|
40
|
+
__qtablewidgetitem1 = QTableWidgetItem()
|
|
41
|
+
self.tw_converters.setHorizontalHeaderItem(1, __qtablewidgetitem1)
|
|
42
|
+
__qtablewidgetitem2 = QTableWidgetItem()
|
|
43
|
+
self.tw_converters.setHorizontalHeaderItem(2, __qtablewidgetitem2)
|
|
44
|
+
self.tw_converters.setObjectName(u"tw_converters")
|
|
45
|
+
self.tw_converters.setEditTriggers(QAbstractItemView.NoEditTriggers)
|
|
46
|
+
self.tw_converters.setSelectionMode(QAbstractItemView.SingleSelection)
|
|
47
|
+
self.tw_converters.setSelectionBehavior(QAbstractItemView.SelectRows)
|
|
48
|
+
self.tw_converters.setSortingEnabled(True)
|
|
49
|
+
|
|
33
50
|
self.verticalLayout.addWidget(self.tw_converters)
|
|
34
|
-
|
|
35
|
-
self.horizontalLayout
|
|
36
|
-
self.
|
|
37
|
-
self.pb_add_converter
|
|
51
|
+
|
|
52
|
+
self.horizontalLayout = QHBoxLayout()
|
|
53
|
+
self.horizontalLayout.setObjectName(u"horizontalLayout")
|
|
54
|
+
self.pb_add_converter = QPushButton(converters)
|
|
55
|
+
self.pb_add_converter.setObjectName(u"pb_add_converter")
|
|
56
|
+
|
|
38
57
|
self.horizontalLayout.addWidget(self.pb_add_converter)
|
|
39
|
-
|
|
40
|
-
self.pb_modify_converter
|
|
58
|
+
|
|
59
|
+
self.pb_modify_converter = QPushButton(converters)
|
|
60
|
+
self.pb_modify_converter.setObjectName(u"pb_modify_converter")
|
|
61
|
+
|
|
41
62
|
self.horizontalLayout.addWidget(self.pb_modify_converter)
|
|
42
|
-
|
|
43
|
-
self.pb_delete_converter
|
|
63
|
+
|
|
64
|
+
self.pb_delete_converter = QPushButton(converters)
|
|
65
|
+
self.pb_delete_converter.setObjectName(u"pb_delete_converter")
|
|
66
|
+
|
|
44
67
|
self.horizontalLayout.addWidget(self.pb_delete_converter)
|
|
45
|
-
|
|
46
|
-
self.pb_load_from_file
|
|
68
|
+
|
|
69
|
+
self.pb_load_from_file = QPushButton(converters)
|
|
70
|
+
self.pb_load_from_file.setObjectName(u"pb_load_from_file")
|
|
71
|
+
|
|
47
72
|
self.horizontalLayout.addWidget(self.pb_load_from_file)
|
|
48
|
-
|
|
49
|
-
self.pb_load_from_repo
|
|
73
|
+
|
|
74
|
+
self.pb_load_from_repo = QPushButton(converters)
|
|
75
|
+
self.pb_load_from_repo.setObjectName(u"pb_load_from_repo")
|
|
76
|
+
|
|
50
77
|
self.horizontalLayout.addWidget(self.pb_load_from_repo)
|
|
51
|
-
|
|
52
|
-
self.
|
|
78
|
+
|
|
79
|
+
self.horizontalSpacer = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
|
|
80
|
+
|
|
81
|
+
self.horizontalLayout.addItem(self.horizontalSpacer)
|
|
82
|
+
|
|
83
|
+
|
|
53
84
|
self.verticalLayout.addLayout(self.horizontalLayout)
|
|
54
|
-
|
|
55
|
-
self.horizontalLayout_3
|
|
56
|
-
self.
|
|
57
|
-
self.label_2
|
|
58
|
-
self.label_2.setObjectName("label_2")
|
|
85
|
+
|
|
86
|
+
self.horizontalLayout_3 = QHBoxLayout()
|
|
87
|
+
self.horizontalLayout_3.setObjectName(u"horizontalLayout_3")
|
|
88
|
+
self.label_2 = QLabel(converters)
|
|
89
|
+
self.label_2.setObjectName(u"label_2")
|
|
90
|
+
self.label_2.setMinimumSize(QSize(120, 0))
|
|
91
|
+
|
|
59
92
|
self.horizontalLayout_3.addWidget(self.label_2)
|
|
60
|
-
|
|
61
|
-
self.le_converter_name
|
|
93
|
+
|
|
94
|
+
self.le_converter_name = QLineEdit(converters)
|
|
95
|
+
self.le_converter_name.setObjectName(u"le_converter_name")
|
|
96
|
+
|
|
62
97
|
self.horizontalLayout_3.addWidget(self.le_converter_name)
|
|
63
|
-
|
|
64
|
-
self.
|
|
98
|
+
|
|
99
|
+
self.horizontalSpacer_3 = QSpacerItem(10, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
|
|
100
|
+
|
|
101
|
+
self.horizontalLayout_3.addItem(self.horizontalSpacer_3)
|
|
102
|
+
|
|
103
|
+
|
|
65
104
|
self.verticalLayout.addLayout(self.horizontalLayout_3)
|
|
66
|
-
|
|
67
|
-
self.horizontalLayout_5
|
|
68
|
-
self.
|
|
69
|
-
self.label_3
|
|
70
|
-
self.label_3.setObjectName("label_3")
|
|
105
|
+
|
|
106
|
+
self.horizontalLayout_5 = QHBoxLayout()
|
|
107
|
+
self.horizontalLayout_5.setObjectName(u"horizontalLayout_5")
|
|
108
|
+
self.label_3 = QLabel(converters)
|
|
109
|
+
self.label_3.setObjectName(u"label_3")
|
|
110
|
+
self.label_3.setMinimumSize(QSize(120, 0))
|
|
111
|
+
|
|
71
112
|
self.horizontalLayout_5.addWidget(self.label_3)
|
|
72
|
-
|
|
73
|
-
self.le_converter_description
|
|
113
|
+
|
|
114
|
+
self.le_converter_description = QLineEdit(converters)
|
|
115
|
+
self.le_converter_description.setObjectName(u"le_converter_description")
|
|
116
|
+
|
|
74
117
|
self.horizontalLayout_5.addWidget(self.le_converter_description)
|
|
75
|
-
|
|
76
|
-
self.
|
|
118
|
+
|
|
119
|
+
self.horizontalSpacer_4 = QSpacerItem(10, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
|
|
120
|
+
|
|
121
|
+
self.horizontalLayout_5.addItem(self.horizontalSpacer_4)
|
|
122
|
+
|
|
123
|
+
|
|
77
124
|
self.verticalLayout.addLayout(self.horizontalLayout_5)
|
|
78
|
-
|
|
79
|
-
self.horizontalLayout_2
|
|
80
|
-
self.
|
|
81
|
-
self.verticalLayout_3
|
|
82
|
-
self.
|
|
83
|
-
self.label
|
|
125
|
+
|
|
126
|
+
self.horizontalLayout_2 = QHBoxLayout()
|
|
127
|
+
self.horizontalLayout_2.setObjectName(u"horizontalLayout_2")
|
|
128
|
+
self.verticalLayout_3 = QVBoxLayout()
|
|
129
|
+
self.verticalLayout_3.setObjectName(u"verticalLayout_3")
|
|
130
|
+
self.label = QLabel(converters)
|
|
131
|
+
self.label.setObjectName(u"label")
|
|
132
|
+
|
|
84
133
|
self.verticalLayout_3.addWidget(self.label)
|
|
85
|
-
|
|
86
|
-
self.pb_code_help
|
|
134
|
+
|
|
135
|
+
self.pb_code_help = QPushButton(converters)
|
|
136
|
+
self.pb_code_help.setObjectName(u"pb_code_help")
|
|
137
|
+
|
|
87
138
|
self.verticalLayout_3.addWidget(self.pb_code_help)
|
|
88
|
-
|
|
89
|
-
self.
|
|
139
|
+
|
|
140
|
+
self.verticalSpacer_2 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
|
|
141
|
+
|
|
142
|
+
self.verticalLayout_3.addItem(self.verticalSpacer_2)
|
|
143
|
+
|
|
144
|
+
|
|
90
145
|
self.horizontalLayout_2.addLayout(self.verticalLayout_3)
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
146
|
+
|
|
147
|
+
self.pteCode = QPlainTextEdit(converters)
|
|
148
|
+
self.pteCode.setObjectName(u"pteCode")
|
|
149
|
+
font = QFont()
|
|
150
|
+
font.setFamilies([u"Monospace"])
|
|
94
151
|
self.pteCode.setFont(font)
|
|
95
|
-
|
|
152
|
+
|
|
96
153
|
self.horizontalLayout_2.addWidget(self.pteCode)
|
|
97
|
-
|
|
98
|
-
self.verticalLayout_2
|
|
99
|
-
self.
|
|
100
|
-
self.pb_save_converter
|
|
154
|
+
|
|
155
|
+
self.verticalLayout_2 = QVBoxLayout()
|
|
156
|
+
self.verticalLayout_2.setObjectName(u"verticalLayout_2")
|
|
157
|
+
self.pb_save_converter = QPushButton(converters)
|
|
158
|
+
self.pb_save_converter.setObjectName(u"pb_save_converter")
|
|
159
|
+
|
|
101
160
|
self.verticalLayout_2.addWidget(self.pb_save_converter)
|
|
102
|
-
|
|
103
|
-
self.pb_cancel_converter
|
|
161
|
+
|
|
162
|
+
self.pb_cancel_converter = QPushButton(converters)
|
|
163
|
+
self.pb_cancel_converter.setObjectName(u"pb_cancel_converter")
|
|
164
|
+
|
|
104
165
|
self.verticalLayout_2.addWidget(self.pb_cancel_converter)
|
|
105
|
-
|
|
106
|
-
self.
|
|
166
|
+
|
|
167
|
+
self.verticalSpacer = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
|
|
168
|
+
|
|
169
|
+
self.verticalLayout_2.addItem(self.verticalSpacer)
|
|
170
|
+
|
|
171
|
+
|
|
107
172
|
self.horizontalLayout_2.addLayout(self.verticalLayout_2)
|
|
173
|
+
|
|
174
|
+
|
|
108
175
|
self.verticalLayout.addLayout(self.horizontalLayout_2)
|
|
109
|
-
|
|
110
|
-
self.horizontalLayout_4
|
|
111
|
-
|
|
112
|
-
self.
|
|
113
|
-
|
|
114
|
-
self.
|
|
176
|
+
|
|
177
|
+
self.horizontalLayout_4 = QHBoxLayout()
|
|
178
|
+
self.horizontalLayout_4.setObjectName(u"horizontalLayout_4")
|
|
179
|
+
self.horizontalSpacer_2 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
|
|
180
|
+
|
|
181
|
+
self.horizontalLayout_4.addItem(self.horizontalSpacer_2)
|
|
182
|
+
|
|
183
|
+
self.pb_cancel_widget = QPushButton(converters)
|
|
184
|
+
self.pb_cancel_widget.setObjectName(u"pb_cancel_widget")
|
|
185
|
+
|
|
115
186
|
self.horizontalLayout_4.addWidget(self.pb_cancel_widget)
|
|
116
|
-
|
|
117
|
-
self.pbOK
|
|
187
|
+
|
|
188
|
+
self.pbOK = QPushButton(converters)
|
|
189
|
+
self.pbOK.setObjectName(u"pbOK")
|
|
190
|
+
|
|
118
191
|
self.horizontalLayout_4.addWidget(self.pbOK)
|
|
192
|
+
|
|
193
|
+
|
|
119
194
|
self.verticalLayout.addLayout(self.horizontalLayout_4)
|
|
120
195
|
|
|
196
|
+
|
|
121
197
|
self.retranslateUi(converters)
|
|
122
|
-
|
|
198
|
+
|
|
199
|
+
QMetaObject.connectSlotsByName(converters)
|
|
200
|
+
# setupUi
|
|
123
201
|
|
|
124
202
|
def retranslateUi(self, converters):
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
self.
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
self.
|
|
136
|
-
self.
|
|
137
|
-
self.
|
|
138
|
-
self.
|
|
139
|
-
self.
|
|
140
|
-
self.
|
|
141
|
-
self.
|
|
142
|
-
self.
|
|
143
|
-
self.
|
|
144
|
-
self.
|
|
145
|
-
self.
|
|
146
|
-
|
|
147
|
-
self.pbOK.setText(_translate("converters", "OK"))
|
|
203
|
+
converters.setWindowTitle(QCoreApplication.translate("converters", u"Time converters", None))
|
|
204
|
+
self.label_4.setText(QCoreApplication.translate("converters", u"Converters", None))
|
|
205
|
+
___qtablewidgetitem = self.tw_converters.horizontalHeaderItem(0)
|
|
206
|
+
___qtablewidgetitem.setText(QCoreApplication.translate("converters", u"Name", None));
|
|
207
|
+
___qtablewidgetitem1 = self.tw_converters.horizontalHeaderItem(1)
|
|
208
|
+
___qtablewidgetitem1.setText(QCoreApplication.translate("converters", u"Description", None));
|
|
209
|
+
___qtablewidgetitem2 = self.tw_converters.horizontalHeaderItem(2)
|
|
210
|
+
___qtablewidgetitem2.setText(QCoreApplication.translate("converters", u"Code", None));
|
|
211
|
+
self.pb_add_converter.setText(QCoreApplication.translate("converters", u"Add new converter", None))
|
|
212
|
+
self.pb_modify_converter.setText(QCoreApplication.translate("converters", u"Modify converter", None))
|
|
213
|
+
self.pb_delete_converter.setText(QCoreApplication.translate("converters", u"Delete converter", None))
|
|
214
|
+
self.pb_load_from_file.setText(QCoreApplication.translate("converters", u"Load converters from file", None))
|
|
215
|
+
self.pb_load_from_repo.setText(QCoreApplication.translate("converters", u"Load converters from BORIS repository", None))
|
|
216
|
+
self.label_2.setText(QCoreApplication.translate("converters", u"Name", None))
|
|
217
|
+
self.label_3.setText(QCoreApplication.translate("converters", u"Description", None))
|
|
218
|
+
self.label.setText(QCoreApplication.translate("converters", u"Python code", None))
|
|
219
|
+
self.pb_code_help.setText(QCoreApplication.translate("converters", u"Help", None))
|
|
220
|
+
self.pb_save_converter.setText(QCoreApplication.translate("converters", u"Save converter", None))
|
|
221
|
+
self.pb_cancel_converter.setText(QCoreApplication.translate("converters", u"Cancel", None))
|
|
222
|
+
self.pb_cancel_widget.setText(QCoreApplication.translate("converters", u"Cancel", None))
|
|
223
|
+
self.pbOK.setText(QCoreApplication.translate("converters", u"OK", None))
|
|
224
|
+
# retranslateUi
|
|
148
225
|
|
boris/cooccurence.py
CHANGED
|
@@ -31,8 +31,8 @@ from . import select_observations
|
|
|
31
31
|
|
|
32
32
|
from . import project_functions, observation_operations
|
|
33
33
|
|
|
34
|
-
from
|
|
35
|
-
from
|
|
34
|
+
from PySide6.QtWidgets import QMessageBox
|
|
35
|
+
from PySide6.QtGui import QFont, QTextOption
|
|
36
36
|
from . import portion as I
|
|
37
37
|
import itertools
|
|
38
38
|
import logging
|