bec-widgets 0.78.1__py3-none-any.whl → 0.79.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. CHANGELOG.md +26 -26
  2. PKG-INFO +1 -1
  3. bec_widgets/cli/client.py +90 -0
  4. bec_widgets/utils/bec_designer.py +14 -12
  5. bec_widgets/utils/widget_io.py +25 -2
  6. bec_widgets/widgets/figure/plots/axis_settings.py +61 -0
  7. bec_widgets/widgets/figure/plots/axis_settings.ui +249 -0
  8. bec_widgets/widgets/figure/plots/motor_map/motor_map.py +18 -5
  9. bec_widgets/widgets/motor_map/__init__.py +0 -0
  10. bec_widgets/widgets/motor_map/assets/connection.svg +4 -0
  11. bec_widgets/widgets/motor_map/assets/history.svg +4 -0
  12. bec_widgets/widgets/motor_map/assets/motor_map.png +0 -0
  13. bec_widgets/widgets/motor_map/assets/settings.svg +4 -0
  14. bec_widgets/widgets/motor_map/bec_motor_map_widget.pyproject +1 -0
  15. bec_widgets/widgets/motor_map/bec_motor_map_widget_plugin.py +55 -0
  16. bec_widgets/widgets/motor_map/motor_map_dialog/__init__.py +0 -0
  17. bec_widgets/widgets/motor_map/motor_map_dialog/motor_map_settings.py +73 -0
  18. bec_widgets/widgets/motor_map/motor_map_dialog/motor_map_settings.ui +108 -0
  19. bec_widgets/widgets/motor_map/motor_map_dialog/motor_map_toolbar.py +59 -0
  20. bec_widgets/widgets/motor_map/motor_map_widget.py +235 -0
  21. bec_widgets/widgets/motor_map/register_bec_motor_map_widget.py +15 -0
  22. bec_widgets/widgets/toolbar/toolbar.py +43 -103
  23. {bec_widgets-0.78.1.dist-info → bec_widgets-0.79.1.dist-info}/METADATA +1 -1
  24. {bec_widgets-0.78.1.dist-info → bec_widgets-0.79.1.dist-info}/RECORD +28 -13
  25. pyproject.toml +1 -1
  26. {bec_widgets-0.78.1.dist-info → bec_widgets-0.79.1.dist-info}/WHEEL +0 -0
  27. {bec_widgets-0.78.1.dist-info → bec_widgets-0.79.1.dist-info}/entry_points.txt +0 -0
  28. {bec_widgets-0.78.1.dist-info → bec_widgets-0.79.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,123 +1,70 @@
1
1
  from abc import ABC, abstractmethod
2
+ from collections import defaultdict
2
3
 
3
4
  # pylint: disable=no-name-in-module
4
- from qtpy.QtCore import QSize, QTimer
5
+ from qtpy.QtCore import QSize
5
6
  from qtpy.QtGui import QAction
6
- from qtpy.QtWidgets import QApplication, QStyle, QToolBar, QWidget
7
+ from qtpy.QtWidgets import QHBoxLayout, QLabel, QSpinBox, QToolBar, QWidget
7
8
 
8
9
 
9
10
  class ToolBarAction(ABC):
10
- """Abstract base class for action creators for the toolbar."""
11
-
12
11
  @abstractmethod
13
- def create(self, target: QWidget):
14
- """Creates and returns an action to be added to a toolbar.
15
-
16
- This method must be implemented by subclasses.
17
-
18
- Args:
19
- target (QWidget): The widget that the action will target.
20
-
21
- Returns:
22
- QAction: The action created for the toolbar.
23
- """
24
-
25
-
26
- class OpenFileAction: # (ToolBarAction):
27
- """Action creator for the 'Open File' action in the toolbar."""
28
-
29
- def create(self, target: QWidget):
30
- """Creates an 'Open File' action for the toolbar.
12
+ def add_to_toolbar(self, toolbar: QToolBar, target: QWidget):
13
+ """Adds an action or widget to a toolbar.
31
14
 
32
15
  Args:
33
- target (QWidget): The widget that the 'Open File' action will be targeted.
34
-
35
- Returns:
36
- QAction: The 'Open File' action created for the toolbar.
16
+ toolbar (QToolBar): The toolbar to add the action or widget to.
17
+ target (QWidget): The target widget for the action.
37
18
  """
38
- icon = QApplication.style().standardIcon(QStyle.StandardPixmap.SP_DialogOpenButton)
39
- action = QAction(icon, "Open File", target)
40
- # action = QAction("Open File", target)
41
- action.triggered.connect(target.open_file)
42
- return action
43
19
 
44
20
 
45
- class SaveFileAction:
46
- """Action creator for the 'Save File' action in the toolbar."""
21
+ class ColumnAdjustAction(ToolBarAction):
22
+ """Toolbar spinbox to adjust number of columns in the plot layout"""
47
23
 
48
- def create(self, target):
49
- """Creates a 'Save File' action for the toolbar.
24
+ def add_to_toolbar(self, toolbar: QToolBar, target: QWidget):
25
+ """Creates a access history button for the toolbar.
50
26
 
51
27
  Args:
52
- target (QWidget): The widget that the 'Save File' action will be targeted.
28
+ toolbar (QToolBar): The toolbar to add the action to.
29
+ target (QWidget): The widget that the 'Access Scan History' action will be targeted.
53
30
 
54
31
  Returns:
55
- QAction: The 'Save File' action created for the toolbar.
32
+ QAction: The 'Access Scan History' action created for the toolbar.
56
33
  """
57
- icon = QApplication.style().standardIcon(QStyle.StandardPixmap.SP_DialogSaveButton)
58
- action = QAction(icon, "Save File", target)
59
- # action = QAction("Save File", target)
60
- action.triggered.connect(target.save_file)
61
- return action
62
-
63
-
64
- class RunScriptAction:
65
- """Action creator for the 'Run Script' action in the toolbar."""
34
+ widget = QWidget()
35
+ layout = QHBoxLayout(widget)
66
36
 
67
- def create(self, target):
68
- """Creates a 'Run Script' action for the toolbar.
37
+ label = QLabel("Columns:")
38
+ spin_box = QSpinBox()
39
+ spin_box.setMinimum(1) # Set minimum value
40
+ spin_box.setMaximum(10) # Set maximum value
41
+ spin_box.setValue(target.get_column_count()) # Initial value
42
+ spin_box.valueChanged.connect(lambda value: target.set_column_count(value))
69
43
 
70
- Args:
71
- target (QWidget): The widget that the 'Run Script' action will be targeted.
72
-
73
- Returns:
74
- QAction: The 'Run Script' action created for the toolbar.
75
- """
76
- icon = QApplication.style().standardIcon(QStyle.StandardPixmap.SP_MediaPlay)
77
- action = QAction(icon, "Run Script", target)
78
- # action = QAction("Run Script", target)
79
- action.triggered.connect(target.run_script)
80
- return action
44
+ layout.addWidget(label)
45
+ layout.addWidget(spin_box)
46
+ toolbar.addWidget(widget)
81
47
 
82
48
 
83
49
  class ModularToolBar(QToolBar):
84
50
  """Modular toolbar with optional automatic initialization.
85
-
86
51
  Args:
87
52
  parent (QWidget, optional): The parent widget of the toolbar. Defaults to None.
88
- auto_init (bool, optional): If True, automatically populates the toolbar based on the parent widget.
53
+ actions (list[ToolBarAction], optional): A list of action creators to populate the toolbar. Defaults to None.
54
+ target_widget (QWidget, optional): The widget that the actions will target. Defaults to None.
55
+ color (str, optional): The background color of the toolbar. Defaults to "black".
89
56
  """
90
57
 
91
- def __init__(self, parent=None, auto_init=True):
58
+ def __init__(self, parent=None, actions=None, target_widget=None, color: str = "black"):
92
59
  super().__init__(parent)
93
- self.auto_init = auto_init
94
- self.handler = {
95
- "BECEditor": [OpenFileAction(), SaveFileAction(), RunScriptAction()],
96
- # BECMonitor: [SomeOtherAction(), AnotherAction()], # Example for another widget
97
- }
98
- self.setStyleSheet("QToolBar { background: transparent; }")
99
- # Set the icon size for the toolbar
100
- self.setIconSize(QSize(20, 20))
101
-
102
- if self.auto_init:
103
- QTimer.singleShot(0, self.auto_detect_and_populate)
104
60
 
105
- def auto_detect_and_populate(self):
106
- """Automatically detects the parent widget and populates the toolbar with relevant actions."""
107
- if not self.auto_init:
108
- return
61
+ self.widgets = defaultdict(dict)
62
+ self.set_background_color(color)
109
63
 
110
- parent_widget = self.parent()
111
- if parent_widget is None:
112
- return
64
+ if actions is not None and target_widget is not None:
65
+ self.populate_toolbar(actions, target_widget)
113
66
 
114
- parent_widget_class_name = type(parent_widget).__name__
115
- for widget_type_name, actions in self.handler.items():
116
- if parent_widget_class_name == widget_type_name:
117
- self.populate_toolbar(actions, parent_widget)
118
- return
119
-
120
- def populate_toolbar(self, actions, target_widget):
67
+ def populate_toolbar(self, actions: dict, target_widget):
121
68
  """Populates the toolbar with a set of actions.
122
69
 
123
70
  Args:
@@ -125,20 +72,13 @@ class ModularToolBar(QToolBar):
125
72
  target_widget (QWidget): The widget that the actions will target.
126
73
  """
127
74
  self.clear()
128
- for action_creator in actions:
129
- action = action_creator.create(target_widget)
130
- self.addAction(action)
131
-
132
- def set_manual_actions(self, actions, target_widget):
133
- """Manually sets the actions for the toolbar.
75
+ for action_id, action in actions.items():
76
+ action.add_to_toolbar(self, target_widget)
77
+ self.widgets[action_id] = action
134
78
 
135
- Args:
136
- actions (list[QAction or ToolBarAction]): A list of actions or action creators to populate the toolbar.
137
- target_widget (QWidget): The widget that the actions will target.
138
- """
139
- self.clear()
140
- for action in actions:
141
- if isinstance(action, QAction):
142
- self.addAction(action)
143
- elif isinstance(action, ToolBarAction):
144
- self.addAction(action.create(target_widget))
79
+ def set_background_color(self, color: str):
80
+ self.setStyleSheet(f"QToolBar {{ background: {color}; }}")
81
+ self.setIconSize(QSize(20, 20))
82
+ self.setMovable(False)
83
+ self.setFloatable(False)
84
+ self.setContentsMargins(0, 0, 0, 0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bec_widgets
3
- Version: 0.78.1
3
+ Version: 0.79.1
4
4
  Summary: BEC Widgets
5
5
  Project-URL: Bug Tracker, https://gitlab.psi.ch/bec/bec_widgets/issues
6
6
  Project-URL: Homepage, https://gitlab.psi.ch/bec/bec_widgets
@@ -2,11 +2,11 @@
2
2
  .gitlab-ci.yml,sha256=RnYDz4zKXjlqltTryprlB1s5vLXxI2-seW-Vb70NNF0,8162
3
3
  .pylintrc,sha256=OstrgmEyP0smNFBKoIN5_26-UmNZgMHnbjvAWX0UrLs,18535
4
4
  .readthedocs.yaml,sha256=aSOc277LqXcsTI6lgvm_JY80lMlr69GbPKgivua2cS0,603
5
- CHANGELOG.md,sha256=kroZq4JMIbAiYELl0nNoRfIdM8HMJ3zxVLyjBSY_eeQ,6898
5
+ CHANGELOG.md,sha256=pdwhbdbQLOlVP8AEjRkhj-O5AHC8UPasmD5XhuA-D7U,7105
6
6
  LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
7
- PKG-INFO,sha256=K--Tt-4cK6WRueP1TWlvlkxdIvtFrITlgoa1YgTzAEY,1427
7
+ PKG-INFO,sha256=C2PR5dChRiBjSv03ME8uiQ3J1i5ub8NbNj6eZ-4fOPM,1427
8
8
  README.md,sha256=y4jB6wvArS7N8_iTbKWnSM_oRAqLA2GqgzUR-FMh5sU,2645
9
- pyproject.toml,sha256=AzDPAPgepFikmdL_FQY2rnZ8fd2df7G0l14INJ378ZQ,2403
9
+ pyproject.toml,sha256=v8po8TOQhWpG4Lkc1vYj4ObhtbSXQmxVSxF2GqcR23M,2403
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
@@ -17,7 +17,7 @@ bec_widgets/assets/bec_widgets_icon.png,sha256=K8dgGwIjalDh9PRHUsSQBqgdX7a00nM3i
17
17
  bec_widgets/assets/terminal_icon.png,sha256=bJl7Tft4Fi2uxvuXI8o14uMHnI9eAWKSU2uftXCH9ws,3889
18
18
  bec_widgets/cli/__init__.py,sha256=d0Q6Fn44e7wFfLabDOBxpcJ1DPKWlFunGYDUBmO-4hA,22
19
19
  bec_widgets/cli/auto_updates.py,sha256=DyBV3HnjMSH-cvVkYNcDiYKVf0Xut4Qy2qGQqkW47Bw,4833
20
- bec_widgets/cli/client.py,sha256=d8G_kamgseVaro56dQKV-wEFyTzcFfzI2cMmCREJ4JA,57763
20
+ bec_widgets/cli/client.py,sha256=ahOa50EN5qknxv_cnWdoBCi-FPlj6UHOGGOnl48enSk,60054
21
21
  bec_widgets/cli/client_utils.py,sha256=zq1gPW7t4n9Nsn4MLkdUeKwwl-9nUcf5UjuN8lZr9iY,12281
22
22
  bec_widgets/cli/generate_cli.py,sha256=FUMSm84ztE6UIIHs8U0Irof1i5LRu6CXW1sl-RF_UKA,5877
23
23
  bec_widgets/cli/rpc_register.py,sha256=QxXUZu5XNg00Yf5O3UHWOXg3-f_pzKjjoZYMOa-MOJc,2216
@@ -39,7 +39,7 @@ bec_widgets/examples/plugin_example_pyside/tictactoeplugin.py,sha256=BBt3MD8oDLU
39
39
  bec_widgets/examples/plugin_example_pyside/tictactoetaskmenu.py,sha256=LNwplI6deUdKY6FOhUuWBanotxk9asF2G-6k7lFfA8Y,2301
40
40
  bec_widgets/utils/__init__.py,sha256=1930ji1Jj6dVuY81Wd2kYBhHYNV-2R0bN_L4o9zBj1U,533
41
41
  bec_widgets/utils/bec_connector.py,sha256=ZWaN9C2CKwqj4NIL1irxNDRyMJ1cBSkCAzb6xmxTIKw,9472
42
- bec_widgets/utils/bec_designer.py,sha256=Q5qhdB7Jiw768dzlJ9bNxLrCbDKw4qNmhbO-9zLTVpw,4318
42
+ bec_widgets/utils/bec_designer.py,sha256=ak3G8FdojUPjVBBwdPXw7tN5P2Uxr-SSoQt394jXeAA,4308
43
43
  bec_widgets/utils/bec_dispatcher.py,sha256=QZjRKNrZ181yt_6nLJCfdNk5EyeaGImApNA1FWR4rqo,6186
44
44
  bec_widgets/utils/bec_table.py,sha256=nA2b8ukSeUfquFMAxGrUVOqdrzMoDYD6O_4EYbOG2zk,717
45
45
  bec_widgets/utils/colors.py,sha256=CP_lwj757CpwdVhWSfdNEXKFCEVVVF48DizD2WJKSwI,9759
@@ -53,7 +53,7 @@ bec_widgets/utils/rpc_decorator.py,sha256=pIvtqySQLnuS7l2Ti_UAe4WX7CRivZnsE5ZdKA
53
53
  bec_widgets/utils/thread_checker.py,sha256=rDNuA3X6KQyA7JPb67mccTg0z8YkInynLAENQDQpbuE,1607
54
54
  bec_widgets/utils/ui_loader.py,sha256=2N50GPH2nh7lT7NQVoHzcjgZzk2zFybFqrBmG91dq8M,2552
55
55
  bec_widgets/utils/validator_delegate.py,sha256=Emj1WF6W8Ke1ruBWUfmHdVJpmOSPezuOt4zvQTay_44,442
56
- bec_widgets/utils/widget_io.py,sha256=U_02ESf9Ukz63B01AzYioNepSc6SX11nJhPPSDmL4IA,11318
56
+ bec_widgets/utils/widget_io.py,sha256=4wlmXwKs7ncpCEQYXBzLVo7Z0IjU-TaJ9RtuaM8-Q98,12038
57
57
  bec_widgets/utils/yaml_dialog.py,sha256=T6UyGNGdmpXW74fa_7Nk6b99T5pp2Wvyw3AOauRc8T8,2407
58
58
  bec_widgets/utils/plugin_templates/plugin.template,sha256=JHkUvYegesW-xEhZuY4FQVGqyEMBRLaPY4JNI8Ni_vE,1182
59
59
  bec_widgets/utils/plugin_templates/register.template,sha256=XyL3OZPT_FTArLAM8tHd5qMqv2ZuAbJAZLsNNnHcagU,417
@@ -96,13 +96,15 @@ bec_widgets/widgets/dock/dock_area.py,sha256=WKIt61v7w2YXahfIL4nddWHPfpTpw52uphX
96
96
  bec_widgets/widgets/figure/__init__.py,sha256=3hGx_KOV7QHCYAV06aNuUgKq4QIYCjUTad-DrwkUaBM,44
97
97
  bec_widgets/widgets/figure/figure.py,sha256=bxaqwrgT4FXeFXA4dACIorWZ2ydJ5ddHux8Xghjw8Jk,32048
98
98
  bec_widgets/widgets/figure/plots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
+ bec_widgets/widgets/figure/plots/axis_settings.py,sha256=RMvbPgu8r1bk8zZz49hkUSHmcqRdw19zrsfLHcgDUIc,2261
100
+ bec_widgets/widgets/figure/plots/axis_settings.ui,sha256=zMKZK6lH_3KJGO4RA_paXAH7UzZJ4Snlil3MK4pK3L8,11589
99
101
  bec_widgets/widgets/figure/plots/plot_base.py,sha256=7kPcUfC_Ub795DfUHdnIWccqjkrRSuE0AJ53wodbg-U,10420
100
102
  bec_widgets/widgets/figure/plots/image/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
103
  bec_widgets/widgets/figure/plots/image/image.py,sha256=8J-20r12FD9_Wtv-YSzJsWdq3cXipJSOyX4S66_AVSc,21337
102
104
  bec_widgets/widgets/figure/plots/image/image_item.py,sha256=TyarahdWEn0jgalj5fqSAmcznXSbENkqHrrlL2GVdU4,10558
103
105
  bec_widgets/widgets/figure/plots/image/image_processor.py,sha256=GeTtWjbldy6VejMwPGQgM-o3d6bmLglCjdoktu19xfA,5262
104
106
  bec_widgets/widgets/figure/plots/motor_map/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
- bec_widgets/widgets/figure/plots/motor_map/motor_map.py,sha256=qElK8OHDOp3Z-GV6j6Tb2BH6LCEDGFsOTq7WLtRfFB8,17697
107
+ bec_widgets/widgets/figure/plots/motor_map/motor_map.py,sha256=QYeXKcb87DPti19MaAFFr6LGma4F7GijaxnC1vx8Kng,18013
106
108
  bec_widgets/widgets/figure/plots/waveform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
109
  bec_widgets/widgets/figure/plots/waveform/waveform.py,sha256=GW8dInC7Wd4sNp6vCGYOHdhvqFrLrKJr3GmtLc-yW8c,29033
108
110
  bec_widgets/widgets/figure/plots/waveform/waveform_curve.py,sha256=yQZGPKs--3X_9Qg2pv0GUiL5WLBQVC3z_PJKRnsHqPU,8293
@@ -122,6 +124,19 @@ bec_widgets/widgets/motor_control/movement_relative/movement_relative.ui,sha256=
122
124
  bec_widgets/widgets/motor_control/selection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
125
  bec_widgets/widgets/motor_control/selection/selection.py,sha256=WNHndvv4JvxeAMnDFBMTvUILcn9u_0mWGRsgNiBZEsM,3988
124
126
  bec_widgets/widgets/motor_control/selection/selection.ui,sha256=vXXpvNWuL6xyHhW7Lx1zmVFX-95Z5AXGlhKQD2HmM1A,1779
127
+ bec_widgets/widgets/motor_map/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
+ bec_widgets/widgets/motor_map/bec_motor_map_widget.pyproject,sha256=NAI8s5gRKz80ED4KY7OgD2OgSH5HEsjt2ux2BYp66yg,63
129
+ bec_widgets/widgets/motor_map/bec_motor_map_widget_plugin.py,sha256=PIfDE78Zqvsu7-xwoh9DdYkH8a7eOUFSaEl0bNrHYHc,1292
130
+ bec_widgets/widgets/motor_map/motor_map_widget.py,sha256=16gcr_soWytWyUC8yl077KeKC691pLt3a-ZJSdj7dRM,7492
131
+ bec_widgets/widgets/motor_map/register_bec_motor_map_widget.py,sha256=qRG8PtWGjso0pWbvj_DXKnbUfmQzfGqPSrnAozXfM7o,492
132
+ bec_widgets/widgets/motor_map/assets/connection.svg,sha256=czIb1BnshmxJnER8ssU3WcLENrFSIUfMwberajWOGAk,341
133
+ bec_widgets/widgets/motor_map/assets/history.svg,sha256=bd6p5saxRiNRpd5OsSwIOvRWvel0WFEHul9zw4y9vH0,392
134
+ bec_widgets/widgets/motor_map/assets/motor_map.png,sha256=xd6GFBM8gAb5c-xRgswxTZFtvo449yK57-EbkFvidOI,9746
135
+ bec_widgets/widgets/motor_map/assets/settings.svg,sha256=ro30oa9CF1YijOXoUl-hz2DilJcqTy4rlTrMYhggumQ,1473
136
+ bec_widgets/widgets/motor_map/motor_map_dialog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
+ bec_widgets/widgets/motor_map/motor_map_dialog/motor_map_settings.py,sha256=ADXqL535WK9gz8Cfgnru6mHU_22pma5XKjMVh8U22L4,2931
138
+ bec_widgets/widgets/motor_map/motor_map_dialog/motor_map_settings.ui,sha256=nv5vPftt6vcIl60OOZLRvwD29rdHVWOoGmz168BnwKw,2685
139
+ bec_widgets/widgets/motor_map/motor_map_dialog/motor_map_toolbar.py,sha256=SKS45caPdLSwiikk9karcPzkMcC33ToQ0MZAVLRiSzw,2183
125
140
  bec_widgets/widgets/ring_progress_bar/__init__.py,sha256=_uoJKnDM2YAeUBfwc5WLbIHSJj7zm_FAurSKP3WRaCw,47
126
141
  bec_widgets/widgets/ring_progress_bar/ring.py,sha256=19zFj-6ZrIPLXYqvs5EPcrmDWnfnSLlEOmzJffL4d3A,11241
127
142
  bec_widgets/widgets/ring_progress_bar/ring_progress_bar.py,sha256=sU4Dur2XzBVfDYAYazI6pjOZOhzggoQIuc9VD3PWgac,24073
@@ -131,7 +146,7 @@ bec_widgets/widgets/scan_control/scan_group_box.py,sha256=8XGpYcdKTEtiqOFbBxZ6xV
131
146
  bec_widgets/widgets/text_box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
147
  bec_widgets/widgets/text_box/text_box.py,sha256=dg2gpOqdBZNKD08mygb40twweFBiG-xsXz0GlIhfXV0,4240
133
148
  bec_widgets/widgets/toolbar/__init__.py,sha256=d-TP4_cr_VbpwreMM4ePnfZ5YXsEPQ45ibEf75nuGoE,36
134
- bec_widgets/widgets/toolbar/toolbar.py,sha256=e0zCD_0q7K4NVhrzD8001Qvfxt-VhqHTgofchS9NgCM,5125
149
+ bec_widgets/widgets/toolbar/toolbar.py,sha256=rloOsr3TVGHLI4OJNKYWEBb1Z9_yJ0ZYIyf9RlPlxwY,3194
135
150
  bec_widgets/widgets/vscode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
151
  bec_widgets/widgets/vscode/vscode.py,sha256=ZyJJCJapYrGhqgudEt8JQn723DDqLdwjsXxXa5q3EkU,2544
137
152
  bec_widgets/widgets/website/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -229,8 +244,8 @@ tests/unit_tests/test_configs/config_device_no_entry.yaml,sha256=hdvue9KLc_kfNzG
229
244
  tests/unit_tests/test_configs/config_scan.yaml,sha256=vo484BbWOjA_e-h6bTjSV9k7QaQHrlAvx-z8wtY-P4E,1915
230
245
  tests/unit_tests/test_msgs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
231
246
  tests/unit_tests/test_msgs/available_scans_message.py,sha256=m_z97hIrjHXXMa2Ex-UvsPmTxOYXfjxyJaGkIY6StTY,46532
232
- bec_widgets-0.78.1.dist-info/METADATA,sha256=K--Tt-4cK6WRueP1TWlvlkxdIvtFrITlgoa1YgTzAEY,1427
233
- bec_widgets-0.78.1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
234
- bec_widgets-0.78.1.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
235
- bec_widgets-0.78.1.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
236
- bec_widgets-0.78.1.dist-info/RECORD,,
247
+ bec_widgets-0.79.1.dist-info/METADATA,sha256=C2PR5dChRiBjSv03ME8uiQ3J1i5ub8NbNj6eZ-4fOPM,1427
248
+ bec_widgets-0.79.1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
249
+ bec_widgets-0.79.1.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
250
+ bec_widgets-0.79.1.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
251
+ bec_widgets-0.79.1.dist-info/RECORD,,
pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "bec_widgets"
7
- version = "0.78.1"
7
+ version = "0.79.1"
8
8
  description = "BEC Widgets"
9
9
  requires-python = ">=3.10"
10
10
  classifiers = [