bec-widgets 0.99.15__py3-none-any.whl → 0.101.0__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.
- CHANGELOG.md +24 -26
- PKG-INFO +1 -1
- bec_widgets/cli/client.py +30 -11
- bec_widgets/qt_utils/toolbar.py +2 -0
- bec_widgets/utils/bec_widget.py +56 -2
- bec_widgets/utils/colors.py +19 -23
- bec_widgets/widgets/dark_mode_button/dark_mode_button.py +14 -1
- bec_widgets/widgets/figure/plots/plot_base.py +14 -12
- bec_widgets/widgets/figure/plots/waveform/waveform.py +6 -5
- bec_widgets/widgets/lmfit_dialog/__init__.py +0 -0
- bec_widgets/widgets/lmfit_dialog/lm_fit_dialog.pyproject +1 -0
- bec_widgets/widgets/lmfit_dialog/lm_fit_dialog_plugin.py +54 -0
- bec_widgets/widgets/lmfit_dialog/lmfit_dialog.py +194 -0
- bec_widgets/widgets/lmfit_dialog/lmfit_dialog_compact.ui +120 -0
- bec_widgets/widgets/lmfit_dialog/lmfit_dialog_vertical.ui +147 -0
- bec_widgets/widgets/lmfit_dialog/register_lm_fit_dialog.py +15 -0
- bec_widgets/widgets/waveform/waveform_popups/dap_summary_dialog/dap_summary_dialog.py +15 -55
- bec_widgets/widgets/waveform/waveform_widget.py +8 -7
- {bec_widgets-0.99.15.dist-info → bec_widgets-0.101.0.dist-info}/METADATA +1 -1
- {bec_widgets-0.99.15.dist-info → bec_widgets-0.101.0.dist-info}/RECORD +24 -18
- pyproject.toml +1 -1
- bec_widgets/widgets/waveform/waveform_popups/dap_summary_dialog/dap_summary.ui +0 -127
- {bec_widgets-0.99.15.dist-info → bec_widgets-0.101.0.dist-info}/WHEEL +0 -0
- {bec_widgets-0.99.15.dist-info → bec_widgets-0.101.0.dist-info}/entry_points.txt +0 -0
- {bec_widgets-0.99.15.dist-info → bec_widgets-0.101.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,120 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<ui version="4.0">
|
3
|
+
<class>Form</class>
|
4
|
+
<widget class="QWidget" name="Form">
|
5
|
+
<property name="geometry">
|
6
|
+
<rect>
|
7
|
+
<x>0</x>
|
8
|
+
<y>0</y>
|
9
|
+
<width>655</width>
|
10
|
+
<height>520</height>
|
11
|
+
</rect>
|
12
|
+
</property>
|
13
|
+
<property name="windowTitle">
|
14
|
+
<string>Form</string>
|
15
|
+
</property>
|
16
|
+
<layout class="QGridLayout" name="gridLayout">
|
17
|
+
<item row="0" column="0">
|
18
|
+
<widget class="QSplitter" name="splitter_2">
|
19
|
+
<property name="sizePolicy">
|
20
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
21
|
+
<horstretch>1</horstretch>
|
22
|
+
<verstretch>0</verstretch>
|
23
|
+
</sizepolicy>
|
24
|
+
</property>
|
25
|
+
<property name="frameShape">
|
26
|
+
<enum>QFrame::Shape::VLine</enum>
|
27
|
+
</property>
|
28
|
+
<property name="frameShadow">
|
29
|
+
<enum>QFrame::Shadow::Plain</enum>
|
30
|
+
</property>
|
31
|
+
<property name="lineWidth">
|
32
|
+
<number>1</number>
|
33
|
+
</property>
|
34
|
+
<property name="orientation">
|
35
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
36
|
+
</property>
|
37
|
+
<property name="opaqueResize">
|
38
|
+
<bool>true</bool>
|
39
|
+
</property>
|
40
|
+
<property name="childrenCollapsible">
|
41
|
+
<bool>true</bool>
|
42
|
+
</property>
|
43
|
+
<widget class="QGroupBox" name="group_curve_selection">
|
44
|
+
<property name="title">
|
45
|
+
<string>Select Curve</string>
|
46
|
+
</property>
|
47
|
+
<layout class="QVBoxLayout" name="verticalLayout">
|
48
|
+
<item>
|
49
|
+
<widget class="QListWidget" name="curve_list"/>
|
50
|
+
</item>
|
51
|
+
</layout>
|
52
|
+
</widget>
|
53
|
+
<widget class="QSplitter" name="splitter">
|
54
|
+
<property name="sizePolicy">
|
55
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
56
|
+
<horstretch>2</horstretch>
|
57
|
+
<verstretch>0</verstretch>
|
58
|
+
</sizepolicy>
|
59
|
+
</property>
|
60
|
+
<property name="orientation">
|
61
|
+
<enum>Qt::Orientation::Vertical</enum>
|
62
|
+
</property>
|
63
|
+
<widget class="QGroupBox" name="group_summary">
|
64
|
+
<property name="title">
|
65
|
+
<string>Fit Summary</string>
|
66
|
+
</property>
|
67
|
+
<layout class="QVBoxLayout" name="verticalLayout_2">
|
68
|
+
<item>
|
69
|
+
<widget class="QTreeWidget" name="summary_tree">
|
70
|
+
<property name="uniformRowHeights">
|
71
|
+
<bool>false</bool>
|
72
|
+
</property>
|
73
|
+
<column>
|
74
|
+
<property name="text">
|
75
|
+
<string>Property</string>
|
76
|
+
</property>
|
77
|
+
</column>
|
78
|
+
<column>
|
79
|
+
<property name="text">
|
80
|
+
<string>Value</string>
|
81
|
+
</property>
|
82
|
+
</column>
|
83
|
+
</widget>
|
84
|
+
</item>
|
85
|
+
</layout>
|
86
|
+
</widget>
|
87
|
+
<widget class="QGroupBox" name="group_parameters">
|
88
|
+
<property name="title">
|
89
|
+
<string>Parameter Details</string>
|
90
|
+
</property>
|
91
|
+
<layout class="QVBoxLayout" name="verticalLayout_3">
|
92
|
+
<item>
|
93
|
+
<widget class="QTreeWidget" name="param_tree">
|
94
|
+
<column>
|
95
|
+
<property name="text">
|
96
|
+
<string>Parameter</string>
|
97
|
+
</property>
|
98
|
+
</column>
|
99
|
+
<column>
|
100
|
+
<property name="text">
|
101
|
+
<string>Value</string>
|
102
|
+
</property>
|
103
|
+
</column>
|
104
|
+
<column>
|
105
|
+
<property name="text">
|
106
|
+
<string>Std</string>
|
107
|
+
</property>
|
108
|
+
</column>
|
109
|
+
</widget>
|
110
|
+
</item>
|
111
|
+
</layout>
|
112
|
+
</widget>
|
113
|
+
</widget>
|
114
|
+
</widget>
|
115
|
+
</item>
|
116
|
+
</layout>
|
117
|
+
</widget>
|
118
|
+
<resources/>
|
119
|
+
<connections/>
|
120
|
+
</ui>
|
@@ -0,0 +1,147 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<ui version="4.0">
|
3
|
+
<class>Form</class>
|
4
|
+
<widget class="QWidget" name="Form">
|
5
|
+
<property name="geometry">
|
6
|
+
<rect>
|
7
|
+
<x>0</x>
|
8
|
+
<y>0</y>
|
9
|
+
<width>274</width>
|
10
|
+
<height>568</height>
|
11
|
+
</rect>
|
12
|
+
</property>
|
13
|
+
<property name="sizePolicy">
|
14
|
+
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
15
|
+
<horstretch>0</horstretch>
|
16
|
+
<verstretch>0</verstretch>
|
17
|
+
</sizepolicy>
|
18
|
+
</property>
|
19
|
+
<property name="windowTitle">
|
20
|
+
<string>Form</string>
|
21
|
+
</property>
|
22
|
+
<layout class="QVBoxLayout" name="verticalLayout_4" stretch="0,0,0">
|
23
|
+
<item>
|
24
|
+
<widget class="QGroupBox" name="group_curve_selection">
|
25
|
+
<property name="title">
|
26
|
+
<string>Select Curve</string>
|
27
|
+
</property>
|
28
|
+
<layout class="QVBoxLayout" name="verticalLayout" stretch="3">
|
29
|
+
<item>
|
30
|
+
<widget class="QListWidget" name="curve_list"/>
|
31
|
+
</item>
|
32
|
+
</layout>
|
33
|
+
</widget>
|
34
|
+
</item>
|
35
|
+
<item>
|
36
|
+
<widget class="QGroupBox" name="group_summary">
|
37
|
+
<property name="sizePolicy">
|
38
|
+
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
|
39
|
+
<horstretch>0</horstretch>
|
40
|
+
<verstretch>0</verstretch>
|
41
|
+
</sizepolicy>
|
42
|
+
</property>
|
43
|
+
<property name="minimumSize">
|
44
|
+
<size>
|
45
|
+
<width>250</width>
|
46
|
+
<height>200</height>
|
47
|
+
</size>
|
48
|
+
</property>
|
49
|
+
<property name="title">
|
50
|
+
<string>Fit Summary</string>
|
51
|
+
</property>
|
52
|
+
<layout class="QVBoxLayout" name="verticalLayout_2">
|
53
|
+
<item>
|
54
|
+
<widget class="QTreeWidget" name="summary_tree">
|
55
|
+
<property name="sizePolicy">
|
56
|
+
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
57
|
+
<horstretch>0</horstretch>
|
58
|
+
<verstretch>0</verstretch>
|
59
|
+
</sizepolicy>
|
60
|
+
</property>
|
61
|
+
<property name="minimumSize">
|
62
|
+
<size>
|
63
|
+
<width>0</width>
|
64
|
+
<height>0</height>
|
65
|
+
</size>
|
66
|
+
</property>
|
67
|
+
<property name="uniformRowHeights">
|
68
|
+
<bool>false</bool>
|
69
|
+
</property>
|
70
|
+
<attribute name="headerDefaultSectionSize">
|
71
|
+
<number>80</number>
|
72
|
+
</attribute>
|
73
|
+
<column>
|
74
|
+
<property name="text">
|
75
|
+
<string>Property</string>
|
76
|
+
</property>
|
77
|
+
</column>
|
78
|
+
<column>
|
79
|
+
<property name="text">
|
80
|
+
<string>Value</string>
|
81
|
+
</property>
|
82
|
+
</column>
|
83
|
+
</widget>
|
84
|
+
</item>
|
85
|
+
</layout>
|
86
|
+
</widget>
|
87
|
+
</item>
|
88
|
+
<item>
|
89
|
+
<widget class="QGroupBox" name="group_parameters">
|
90
|
+
<property name="sizePolicy">
|
91
|
+
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
|
92
|
+
<horstretch>0</horstretch>
|
93
|
+
<verstretch>0</verstretch>
|
94
|
+
</sizepolicy>
|
95
|
+
</property>
|
96
|
+
<property name="minimumSize">
|
97
|
+
<size>
|
98
|
+
<width>250</width>
|
99
|
+
<height>200</height>
|
100
|
+
</size>
|
101
|
+
</property>
|
102
|
+
<property name="title">
|
103
|
+
<string>Parameter Details</string>
|
104
|
+
</property>
|
105
|
+
<layout class="QVBoxLayout" name="verticalLayout_3">
|
106
|
+
<item>
|
107
|
+
<widget class="QTreeWidget" name="param_tree">
|
108
|
+
<property name="sizePolicy">
|
109
|
+
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
110
|
+
<horstretch>0</horstretch>
|
111
|
+
<verstretch>0</verstretch>
|
112
|
+
</sizepolicy>
|
113
|
+
</property>
|
114
|
+
<property name="minimumSize">
|
115
|
+
<size>
|
116
|
+
<width>0</width>
|
117
|
+
<height>0</height>
|
118
|
+
</size>
|
119
|
+
</property>
|
120
|
+
<attribute name="headerDefaultSectionSize">
|
121
|
+
<number>80</number>
|
122
|
+
</attribute>
|
123
|
+
<column>
|
124
|
+
<property name="text">
|
125
|
+
<string>Parameter</string>
|
126
|
+
</property>
|
127
|
+
</column>
|
128
|
+
<column>
|
129
|
+
<property name="text">
|
130
|
+
<string>Value</string>
|
131
|
+
</property>
|
132
|
+
</column>
|
133
|
+
<column>
|
134
|
+
<property name="text">
|
135
|
+
<string>Std</string>
|
136
|
+
</property>
|
137
|
+
</column>
|
138
|
+
</widget>
|
139
|
+
</item>
|
140
|
+
</layout>
|
141
|
+
</widget>
|
142
|
+
</item>
|
143
|
+
</layout>
|
144
|
+
</widget>
|
145
|
+
<resources/>
|
146
|
+
<connections/>
|
147
|
+
</ui>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
def main(): # pragma: no cover
|
2
|
+
from qtpy import PYSIDE6
|
3
|
+
|
4
|
+
if not PYSIDE6:
|
5
|
+
print("PYSIDE6 is not available in the environment. Cannot patch designer.")
|
6
|
+
return
|
7
|
+
from PySide6.QtDesigner import QPyDesignerCustomWidgetCollection
|
8
|
+
|
9
|
+
from bec_widgets.widgets.lmfit_dialog.lm_fit_dialog_plugin import LMFitDialogPlugin
|
10
|
+
|
11
|
+
QPyDesignerCustomWidgetCollection.addCustomWidget(LMFitDialogPlugin())
|
12
|
+
|
13
|
+
|
14
|
+
if __name__ == "__main__": # pragma: no cover
|
15
|
+
main()
|
@@ -4,66 +4,26 @@ from qtpy.QtWidgets import QDialog, QTreeWidgetItem, QVBoxLayout
|
|
4
4
|
|
5
5
|
from bec_widgets.qt_utils.error_popups import SafeSlot as Slot
|
6
6
|
from bec_widgets.utils import UILoader
|
7
|
+
from bec_widgets.widgets.lmfit_dialog.lmfit_dialog import LMFitDialog
|
7
8
|
|
8
9
|
|
9
10
|
class FitSummaryWidget(QDialog):
|
11
|
+
|
10
12
|
def __init__(self, parent=None, target_widget=None):
|
11
13
|
super().__init__(parent=parent)
|
12
14
|
|
13
|
-
self.target_widget = target_widget
|
14
|
-
self.summary_data = self.target_widget.get_dap_summary()
|
15
|
-
|
16
15
|
self.setModal(True)
|
17
|
-
|
18
|
-
|
19
|
-
self.ui = UILoader(self).loader(os.path.join(current_path, "dap_summary.ui"))
|
16
|
+
self.target_widget = target_widget
|
17
|
+
self.dap_dialog = LMFitDialog(parent=self, ui_file="lmfit_dialog_compact.ui")
|
20
18
|
self.layout = QVBoxLayout(self)
|
21
|
-
self.layout.addWidget(self.
|
22
|
-
|
23
|
-
self.
|
24
|
-
self.
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
for
|
30
|
-
|
31
|
-
|
32
|
-
def display_fit_details(self, current):
|
33
|
-
if current:
|
34
|
-
curve_name = current.text()
|
35
|
-
data = self.summary_data[curve_name]
|
36
|
-
if data is None:
|
37
|
-
return
|
38
|
-
self.refresh_trees(data)
|
39
|
-
|
40
|
-
@Slot()
|
41
|
-
def refresh_dap(self):
|
42
|
-
self.ui.curve_list.clear()
|
43
|
-
self.summary_data = self.target_widget.get_dap_summary()
|
44
|
-
self.populate_curve_list()
|
45
|
-
|
46
|
-
def refresh_trees(self, data):
|
47
|
-
self.update_summary_tree(data)
|
48
|
-
self.update_param_tree(data["params"])
|
49
|
-
|
50
|
-
def update_summary_tree(self, data):
|
51
|
-
self.ui.summary_tree.clear()
|
52
|
-
properties = [
|
53
|
-
("Model", data.get("model", "")),
|
54
|
-
("Method", data.get("method", "")),
|
55
|
-
("Chi-Squared", str(data.get("chisqr", ""))),
|
56
|
-
("Reduced Chi-Squared", str(data.get("redchi", ""))),
|
57
|
-
("AIC", str(data.get("aic", ""))),
|
58
|
-
("BIC", str(data.get("bic", ""))),
|
59
|
-
("R-Squared", str(data.get("rsquared", ""))),
|
60
|
-
("Message", data.get("message", "")),
|
61
|
-
]
|
62
|
-
for prop, val in properties:
|
63
|
-
QTreeWidgetItem(self.ui.summary_tree, [prop, val])
|
64
|
-
|
65
|
-
def update_param_tree(self, params):
|
66
|
-
self.ui.param_tree.clear()
|
67
|
-
for param in params:
|
68
|
-
param_name, param_value, param_std = param[0], str(param[1]), str(param[7])
|
69
|
-
QTreeWidgetItem(self.ui.param_tree, [param_name, param_value, param_std])
|
19
|
+
self.layout.addWidget(self.dap_dialog)
|
20
|
+
self.target_widget.dap_summary_update.connect(self.dap_dialog.update_summary_tree)
|
21
|
+
self.setLayout(self.layout)
|
22
|
+
self._get_dap_from_target_widget()
|
23
|
+
|
24
|
+
def _get_dap_from_target_widget(self) -> None:
|
25
|
+
"""Get the DAP data from the target widget and update the DAP dialog manually on creation."""
|
26
|
+
dap_summary = self.target_widget.get_dap_summary()
|
27
|
+
for curve_id, data in dap_summary.items():
|
28
|
+
md = {"curve_id": curve_id}
|
29
|
+
self.dap_dialog.update_summary_tree(data=data, metadata=md)
|
@@ -55,8 +55,8 @@ class BECWaveformWidget(BECWidget, QWidget):
|
|
55
55
|
]
|
56
56
|
scan_signal_update = Signal()
|
57
57
|
async_signal_update = Signal()
|
58
|
-
|
59
|
-
|
58
|
+
dap_summary_update = Signal(dict, dict)
|
59
|
+
dap_params_update = Signal(dict, dict)
|
60
60
|
autorange_signal = Signal()
|
61
61
|
new_scan = Signal()
|
62
62
|
crosshair_position_changed = Signal(tuple)
|
@@ -218,7 +218,7 @@ class BECWaveformWidget(BECWidget, QWidget):
|
|
218
218
|
def show_fit_summary_dialog(self):
|
219
219
|
dialog = FitSummaryWidget(target_widget=self)
|
220
220
|
dialog.resize(800, 600)
|
221
|
-
dialog.
|
221
|
+
dialog.exec()
|
222
222
|
|
223
223
|
###################################
|
224
224
|
# User Access Methods from Waveform
|
@@ -257,7 +257,7 @@ class BECWaveformWidget(BECWidget, QWidget):
|
|
257
257
|
"""
|
258
258
|
self.waveform.set_colormap(colormap)
|
259
259
|
|
260
|
-
@SafeSlot(popup_error=True)
|
260
|
+
@SafeSlot(str, popup_error=True)
|
261
261
|
def set_x(self, x_name: str, x_entry: str | None = None):
|
262
262
|
"""
|
263
263
|
Change the x axis of the plot widget.
|
@@ -272,7 +272,7 @@ class BECWaveformWidget(BECWidget, QWidget):
|
|
272
272
|
"""
|
273
273
|
self.waveform.set_x(x_name, x_entry)
|
274
274
|
|
275
|
-
@SafeSlot(popup_error=True)
|
275
|
+
@SafeSlot(str, popup_error=True)
|
276
276
|
def plot(
|
277
277
|
self,
|
278
278
|
arg1: list | np.ndarray | str | None = None,
|
@@ -331,15 +331,16 @@ class BECWaveformWidget(BECWidget, QWidget):
|
|
331
331
|
**kwargs,
|
332
332
|
)
|
333
333
|
|
334
|
-
@SafeSlot(popup_error=True)
|
334
|
+
@SafeSlot(str, str, str, popup_error=True)
|
335
335
|
def add_dap(
|
336
336
|
self,
|
337
337
|
x_name: str,
|
338
338
|
y_name: str,
|
339
|
+
dap: str,
|
339
340
|
x_entry: str | None = None,
|
340
341
|
y_entry: str | None = None,
|
341
342
|
color: str | None = None,
|
342
|
-
dap: str = "GaussianModel",
|
343
|
+
# dap: str = "GaussianModel",
|
343
344
|
validate_bec: bool = True,
|
344
345
|
**kwargs,
|
345
346
|
) -> BECCurve:
|
@@ -2,11 +2,11 @@
|
|
2
2
|
.gitlab-ci.yml,sha256=HE_stq5wl-0wE5ZetfEmaaDbectk20jX7Z2cxwsBegg,8348
|
3
3
|
.pylintrc,sha256=eeY8YwSI74oFfq6IYIbCqnx3Vk8ZncKaatv96n_Y8Rs,18544
|
4
4
|
.readthedocs.yaml,sha256=aSOc277LqXcsTI6lgvm_JY80lMlr69GbPKgivua2cS0,603
|
5
|
-
CHANGELOG.md,sha256=
|
5
|
+
CHANGELOG.md,sha256=6RUIXVV1FuM3_7TuNkxIHYQddeGb56Fx1mIlcTI29ss,6594
|
6
6
|
LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
|
7
|
-
PKG-INFO,sha256=
|
7
|
+
PKG-INFO,sha256=Mikp7NvbMPYwdD8rtGYW_lMVdY0B8HmOsnlVF-fy5mA,1334
|
8
8
|
README.md,sha256=Od69x-RS85Hph0-WwWACwal4yUd67XkEn4APEfHhHFw,2649
|
9
|
-
pyproject.toml,sha256=
|
9
|
+
pyproject.toml,sha256=D8jXP_3VO8qU5fKbBIS7LRgam7O3evOJvLkkPvanF3A,2544
|
10
10
|
.git_hooks/pre-commit,sha256=n3RofIZHJl8zfJJIUomcMyYGFi_rwq4CC19z0snz3FI,286
|
11
11
|
.gitlab/issue_templates/bug_report_template.md,sha256=gAuyEwl7XlnebBrkiJ9AqffSNOywmr8vygUFWKTuQeI,386
|
12
12
|
.gitlab/issue_templates/documentation_update_template.md,sha256=FHLdb3TS_D9aL4CYZCjyXSulbaW5mrN2CmwTaeLPbNw,860
|
@@ -22,7 +22,7 @@ bec_widgets/assets/status_icons/running.svg,sha256=nlc6rKh_f-uOxQSk0BkBNyWnPAJU5
|
|
22
22
|
bec_widgets/assets/status_icons/warning.svg,sha256=CNx88p9kbDG51s9ztKf-cfYan4JdDBbk3-IFKfOOFlI,364
|
23
23
|
bec_widgets/cli/__init__.py,sha256=d0Q6Fn44e7wFfLabDOBxpcJ1DPKWlFunGYDUBmO-4hA,22
|
24
24
|
bec_widgets/cli/auto_updates.py,sha256=DwzRChcFIWPH2kCYvp8H7dXvyYSKGYv6LwCmK2sDR2E,5676
|
25
|
-
bec_widgets/cli/client.py,sha256=
|
25
|
+
bec_widgets/cli/client.py,sha256=Sajhkf2hQJICfMSsB3nGLW5X2y50jwK2ICXxLSS4RXI,78465
|
26
26
|
bec_widgets/cli/client_utils.py,sha256=l35LtTkD7PdvVCckjMU8-y6f5a5pp1u6cFPpD-Dkvow,11713
|
27
27
|
bec_widgets/cli/generate_cli.py,sha256=Ea5px9KblUlcGg-1JbJBTIU7laGg2n8PM7Efw9WVVzM,5889
|
28
28
|
bec_widgets/cli/rpc_register.py,sha256=QxXUZu5XNg00Yf5O3UHWOXg3-f_pzKjjoZYMOa-MOJc,2216
|
@@ -46,14 +46,14 @@ bec_widgets/qt_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
46
46
|
bec_widgets/qt_utils/error_popups.py,sha256=y9gKKWaafp468ioHr96nBhf02ZpEgjDc-BAVOTWh-e8,7680
|
47
47
|
bec_widgets/qt_utils/redis_message_waiter.py,sha256=fvL_QgC0cTDv_FPJdRyp5AKjf401EJU4z3r38p47ydY,1745
|
48
48
|
bec_widgets/qt_utils/settings_dialog.py,sha256=NhtzTer_xzlB2lLLrGklkI1QYLJEWQpJoZbCz4o5daI,3645
|
49
|
-
bec_widgets/qt_utils/toolbar.py,sha256=
|
49
|
+
bec_widgets/qt_utils/toolbar.py,sha256=oP1Lxos03MuwSTonPeILknHEXfZlKsuK13jrXoI2pck,8530
|
50
50
|
bec_widgets/utils/__init__.py,sha256=1930ji1Jj6dVuY81Wd2kYBhHYNV-2R0bN_L4o9zBj1U,533
|
51
51
|
bec_widgets/utils/bec_connector.py,sha256=SivHKXVyNVqeu3kCXYEPpbleTVw8g1cW0FKq1QrQgco,9987
|
52
52
|
bec_widgets/utils/bec_designer.py,sha256=Z3MeMju-KmTz8POtm23VQfp4rvtD2sF6eIOKQkl2F7w,4729
|
53
53
|
bec_widgets/utils/bec_dispatcher.py,sha256=NkObWO_gRO9Uobz-fy0gVTZqQsbFRaKj6fbjYZoErFI,6400
|
54
54
|
bec_widgets/utils/bec_table.py,sha256=nA2b8ukSeUfquFMAxGrUVOqdrzMoDYD6O_4EYbOG2zk,717
|
55
|
-
bec_widgets/utils/bec_widget.py,sha256=
|
56
|
-
bec_widgets/utils/colors.py,sha256=
|
55
|
+
bec_widgets/utils/bec_widget.py,sha256=ANFx-Ll5mjOjmILniTH5jKBITDijUtfFLb1eoiXoFws,2881
|
56
|
+
bec_widgets/utils/colors.py,sha256=N3GbVBpExfC1m_dnYFDoua-iRLM90E5kTKVOIkZVmDM,12372
|
57
57
|
bec_widgets/utils/container_utils.py,sha256=0wr3ZfuMiAFKCrQHVjxjw-Vuk8wsHdridqcjy2eY840,1531
|
58
58
|
bec_widgets/utils/crosshair.py,sha256=8lik9k69WI2WMj5FGLbrKtny9duxqXUJAhpX8tHoyp0,11543
|
59
59
|
bec_widgets/utils/entry_validator.py,sha256=3skJIsUwTYicT76AMHm_M78RiWtUgyD2zb-Rxo2HdHQ,1313
|
@@ -110,7 +110,7 @@ bec_widgets/widgets/colormap_selector/colormap_selector_plugin.py,sha256=c5Kk4do
|
|
110
110
|
bec_widgets/widgets/colormap_selector/register_colormap_selector.py,sha256=bfw7RWmTmMLTLxGT-izSwcGtxGLKvL3jdivJw2z8oN4,512
|
111
111
|
bec_widgets/widgets/console/console.py,sha256=NG0cBuqqPX4hC-sHhk_UEkT-nHhhN9Y7karJITPLzyo,17864
|
112
112
|
bec_widgets/widgets/dark_mode_button/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
113
|
-
bec_widgets/widgets/dark_mode_button/dark_mode_button.py,sha256=
|
113
|
+
bec_widgets/widgets/dark_mode_button/dark_mode_button.py,sha256=ZvCDO_FWtEn6M1Jxaw8x8GifsulJc2NsaXNvLKAKBs0,3259
|
114
114
|
bec_widgets/widgets/dark_mode_button/dark_mode_button.pyproject,sha256=Lbi9zb6HNlIq14k6hlzR-oz6PIFShBuF7QxE6d87d64,34
|
115
115
|
bec_widgets/widgets/dark_mode_button/dark_mode_button_plugin.py,sha256=RJWeBEqR9BueUxUSuPcU-AmnzfIzt3j4jtsIacp-2Ug,1335
|
116
116
|
bec_widgets/widgets/dark_mode_button/register_dark_mode_button.py,sha256=_4Fw6j1KLuluko8X2B7zf_DT5eA07G0CqR-aRMAn0iA,489
|
@@ -143,7 +143,7 @@ bec_widgets/widgets/figure/figure.py,sha256=kd7enVkT7df79HWzYjCzAZ1qF8jtlzqNfo7Y
|
|
143
143
|
bec_widgets/widgets/figure/plots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
144
144
|
bec_widgets/widgets/figure/plots/axis_settings.py,sha256=QxRpQwgfBr1H0HTjfOpiXi_-n8I0BaZhS8LRXNeVfFg,3544
|
145
145
|
bec_widgets/widgets/figure/plots/axis_settings.ui,sha256=a2qIuK9lyi9HCyrSvPr6wxzmm1FymaWcpmyOhMIiFt8,11013
|
146
|
-
bec_widgets/widgets/figure/plots/plot_base.py,sha256=
|
146
|
+
bec_widgets/widgets/figure/plots/plot_base.py,sha256=mCrQS9itby4jnwUGCQXqTQzGnP-yLZoyqI2flQvXsuc,15135
|
147
147
|
bec_widgets/widgets/figure/plots/image/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
148
148
|
bec_widgets/widgets/figure/plots/image/image.py,sha256=y2MqgJv6Njv-huDN_exn0Fq1rAh5vs_assKCKHgQH6I,24941
|
149
149
|
bec_widgets/widgets/figure/plots/image/image_item.py,sha256=RljjbkqJEr2cKDlqj1j5GQ1h89jpqOV-OpFz1TbED8I,10937
|
@@ -151,7 +151,7 @@ bec_widgets/widgets/figure/plots/image/image_processor.py,sha256=GeTtWjbldy6VejM
|
|
151
151
|
bec_widgets/widgets/figure/plots/motor_map/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
152
152
|
bec_widgets/widgets/figure/plots/motor_map/motor_map.py,sha256=wgARzsm98Y8SHPPwVp1LzNlXCxKEi6a8by8yYzIWsbY,18319
|
153
153
|
bec_widgets/widgets/figure/plots/waveform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
154
|
-
bec_widgets/widgets/figure/plots/waveform/waveform.py,sha256=
|
154
|
+
bec_widgets/widgets/figure/plots/waveform/waveform.py,sha256=TDPtS4s0Kc-1KPidymxW1JPLwV77dqZHO316GYfzu08,51841
|
155
155
|
bec_widgets/widgets/figure/plots/waveform/waveform_curve.py,sha256=FlQFKm4r2xSrV9TSP0SWuD3lfAUO3COUHxMYz7Xxs5E,8653
|
156
156
|
bec_widgets/widgets/image/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
157
157
|
bec_widgets/widgets/image/bec_image_widget.pyproject,sha256=PHisdBo5_5UCApd27GkizzqgfdjsDx2bFZa_p9LiSW8,30
|
@@ -160,6 +160,13 @@ bec_widgets/widgets/image/image_widget.py,sha256=8a4nR9JsPstIJSBrFiA1nkazTSmYuXa
|
|
160
160
|
bec_widgets/widgets/image/register_bec_image_widget.py,sha256=01YLZQTMSSIXvH1TSL-1AYsRs1a4EbSwKLVAwh9AjeA,478
|
161
161
|
bec_widgets/widgets/jupyter_console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
162
|
bec_widgets/widgets/jupyter_console/jupyter_console.py,sha256=-e7HQOECeH5eDrJYh4BFIzRL78LDkooU4otabyN0aX4,2343
|
163
|
+
bec_widgets/widgets/lmfit_dialog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
164
|
+
bec_widgets/widgets/lmfit_dialog/lm_fit_dialog.pyproject,sha256=PTvg1ddrW_R2_gd1cfA8UyxeVlgg5B-y71-F3lY6vKI,30
|
165
|
+
bec_widgets/widgets/lmfit_dialog/lm_fit_dialog_plugin.py,sha256=X73Wn6tBkRSfhBEbg0ZZGIMCG6ujkidoJMXTQPuk2Y8,1267
|
166
|
+
bec_widgets/widgets/lmfit_dialog/lmfit_dialog.py,sha256=0rUNECLs3S4hcqV115H87JQsqSWQLVb5S9iiCbG9PVs,6450
|
167
|
+
bec_widgets/widgets/lmfit_dialog/lmfit_dialog_compact.ui,sha256=JbdMEPzbA3p2Ekz6U6NwXs1BqdBr71NUJNVOnhrN1dE,3397
|
168
|
+
bec_widgets/widgets/lmfit_dialog/lmfit_dialog_vertical.ui,sha256=TS8FJSihTBShbx0QoXpCGAHEWVVwRxWsMazS8QxLrO4,4009
|
169
|
+
bec_widgets/widgets/lmfit_dialog/register_lm_fit_dialog.py,sha256=a96eq_Lm_QtC0DAEcDrnF5PLj1LsDtxfNtmku7YPNw8,476
|
163
170
|
bec_widgets/widgets/motor_map/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
164
171
|
bec_widgets/widgets/motor_map/bec_motor_map_widget.pyproject,sha256=NAI8s5gRKz80ED4KY7OgD2OgSH5HEsjt2ux2BYp66yg,63
|
165
172
|
bec_widgets/widgets/motor_map/bec_motor_map_widget_plugin.py,sha256=jM-fxEfpkcyT1lNLvLDAntTcv_77KYWZC5Q4ykH0Y7I,1297
|
@@ -225,21 +232,20 @@ bec_widgets/widgets/waveform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
225
232
|
bec_widgets/widgets/waveform/bec_waveform_widget.pyproject,sha256=GLD8GN9dXx9wNbtnevrxqqcwk7vKV-Uv8QYSycdaoaI,33
|
226
233
|
bec_widgets/widgets/waveform/bec_waveform_widget_plugin.py,sha256=qSQTeCzIUn8rgDkjIM47Rr3-fqg1uk8rDf_lCoY9gZw,1402
|
227
234
|
bec_widgets/widgets/waveform/register_bec_waveform_widget.py,sha256=qZHVZH_lP2hvzkG1Ra0EyrXlMeLkRCy0aceH-bfJ1cs,490
|
228
|
-
bec_widgets/widgets/waveform/waveform_widget.py,sha256=
|
235
|
+
bec_widgets/widgets/waveform/waveform_widget.py,sha256=PCkJMPVtmdCTaa2PucDM91vDyW49xta04Ri5oFhTOi4,22227
|
229
236
|
bec_widgets/widgets/waveform/waveform_popups/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
230
237
|
bec_widgets/widgets/waveform/waveform_popups/curve_dialog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
231
238
|
bec_widgets/widgets/waveform/waveform_popups/curve_dialog/curve_dialog.py,sha256=ApWv0n33TJBP59CQ4MUdyPRSiKfXjTdfui1IfwzFNjE,13172
|
232
239
|
bec_widgets/widgets/waveform/waveform_popups/curve_dialog/curve_dialog.ui,sha256=OaQE5HlyBQ3RQoHqxOFHiUoNcx8SDZP5sHJ9NNGhsPI,10404
|
233
240
|
bec_widgets/widgets/waveform/waveform_popups/dap_summary_dialog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
234
|
-
bec_widgets/widgets/waveform/waveform_popups/dap_summary_dialog/
|
235
|
-
bec_widgets/widgets/waveform/waveform_popups/dap_summary_dialog/dap_summary_dialog.py,sha256=UptWjHRVp7gTAMkWikfia3U6k8EV_pAvk-fI_vhWd2w,2437
|
241
|
+
bec_widgets/widgets/waveform/waveform_popups/dap_summary_dialog/dap_summary_dialog.py,sha256=XOHppMcONwfhAYpqIc51VOrpunWmPSn50sT3I0MjW2c,1173
|
236
242
|
bec_widgets/widgets/website/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
237
243
|
bec_widgets/widgets/website/register_website_widget.py,sha256=LIQJpV9uqcBiPR9cEAiDjaUS_l7JroYVdsotnLpD9H0,476
|
238
244
|
bec_widgets/widgets/website/website.py,sha256=kDlqjwtx0yft1ZNRhTdHnYh_5KZHfqT_ZGPOKT4C-yI,2619
|
239
245
|
bec_widgets/widgets/website/website_widget.pyproject,sha256=scOiV3cV1_BjbzpPzy2N8rIJL5P2qIZz8ObTJ-Uvdtg,25
|
240
246
|
bec_widgets/widgets/website/website_widget_plugin.py,sha256=pz38_C2cZ0yvPPS02wdIPcmhFo_yiwUhflsASocAPQQ,1341
|
241
|
-
bec_widgets-0.
|
242
|
-
bec_widgets-0.
|
243
|
-
bec_widgets-0.
|
244
|
-
bec_widgets-0.
|
245
|
-
bec_widgets-0.
|
247
|
+
bec_widgets-0.101.0.dist-info/METADATA,sha256=Mikp7NvbMPYwdD8rtGYW_lMVdY0B8HmOsnlVF-fy5mA,1334
|
248
|
+
bec_widgets-0.101.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
249
|
+
bec_widgets-0.101.0.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
|
250
|
+
bec_widgets-0.101.0.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
|
251
|
+
bec_widgets-0.101.0.dist-info/RECORD,,
|