bec-widgets 1.25.1__py3-none-any.whl → 2.0.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.
- .gitlab-ci.yml +3 -5
- CHANGELOG.md +639 -0
- PKG-INFO +3 -3
- bec_widgets/__init__.py +4 -0
- bec_widgets/applications/bw_launch.py +23 -0
- bec_widgets/applications/launch_window.py +430 -0
- bec_widgets/assets/app_icons/auto_update.png +0 -0
- bec_widgets/assets/app_icons/ui_loader_tile.png +0 -0
- bec_widgets/cli/__init__.py +0 -1
- bec_widgets/cli/client.py +1779 -2064
- bec_widgets/cli/client_utils.py +346 -174
- bec_widgets/cli/generate_cli.py +143 -37
- bec_widgets/cli/rpc/rpc_base.py +152 -21
- bec_widgets/cli/rpc/rpc_register.py +113 -6
- bec_widgets/cli/rpc/rpc_widget_handler.py +13 -11
- bec_widgets/cli/server.py +125 -239
- bec_widgets/examples/jupyter_console/jupyter_console_window.py +97 -145
- bec_widgets/examples/plugin_example_pyside/tictactoetaskmenu.py +1 -1
- bec_widgets/utils/bec_connector.py +190 -21
- bec_widgets/utils/bec_designer.py +7 -0
- bec_widgets/utils/bec_dispatcher.py +71 -4
- bec_widgets/utils/bec_plugin_helper.py +89 -0
- bec_widgets/utils/bec_signal_proxy.py +1 -1
- bec_widgets/utils/bec_widget.py +26 -10
- bec_widgets/utils/colors.py +1 -1
- bec_widgets/{qt_utils → utils}/compact_popup.py +2 -0
- bec_widgets/utils/container_utils.py +37 -12
- bec_widgets/utils/crosshair.py +25 -8
- bec_widgets/utils/entry_validator.py +3 -1
- bec_widgets/{qt_utils → utils}/error_popups.py +18 -0
- bec_widgets/{qt_utils → utils}/expandable_frame.py +2 -2
- bec_widgets/utils/forms_from_types/forms.py +182 -0
- bec_widgets/{widgets/editors/scan_metadata/_metadata_widgets.py → utils/forms_from_types/items.py} +41 -30
- bec_widgets/utils/generate_designer_plugin.py +40 -36
- bec_widgets/utils/linear_region_selector.py +2 -0
- bec_widgets/utils/name_utils.py +16 -0
- bec_widgets/{qt_utils → utils}/palette_viewer.py +2 -2
- bec_widgets/utils/plot_indicator_items.py +2 -5
- bec_widgets/utils/plugin_utils.py +47 -1
- bec_widgets/{qt_utils → utils}/round_frame.py +14 -14
- bec_widgets/utils/rpc_server.py +277 -0
- bec_widgets/utils/serialization.py +44 -0
- bec_widgets/{qt_utils → utils}/settings_dialog.py +26 -1
- bec_widgets/{qt_utils → utils}/side_panel.py +17 -10
- bec_widgets/{qt_utils → utils}/toolbar.py +69 -25
- bec_widgets/utils/ui_loader.py +8 -8
- bec_widgets/utils/widget_io.py +166 -25
- bec_widgets/widgets/containers/auto_update/auto_updates.py +364 -0
- bec_widgets/widgets/containers/dock/dock.py +157 -49
- bec_widgets/widgets/containers/dock/dock_area.py +188 -138
- bec_widgets/widgets/containers/layout_manager/layout_manager.py +2 -1
- bec_widgets/widgets/containers/main_window/addons/web_links.py +15 -0
- bec_widgets/widgets/containers/main_window/main_window.py +189 -41
- bec_widgets/widgets/control/buttons/button_abort/button_abort.py +3 -4
- bec_widgets/widgets/control/buttons/button_reset/button_reset.py +3 -4
- bec_widgets/widgets/control/buttons/button_resume/button_resume.py +3 -3
- bec_widgets/widgets/control/buttons/stop_button/stop_button.py +18 -7
- bec_widgets/widgets/control/device_control/position_indicator/position_indicator.py +22 -3
- bec_widgets/widgets/control/device_control/positioner_box/_base/positioner_box_base.py +31 -13
- bec_widgets/widgets/control/device_control/positioner_box/positioner_box/positioner_box.py +3 -1
- bec_widgets/widgets/control/device_control/positioner_box/positioner_box/positioner_box.ui +27 -4
- bec_widgets/widgets/control/device_control/positioner_box/positioner_box_2d/positioner_box_2d.py +5 -2
- bec_widgets/widgets/control/device_control/positioner_box/positioner_box_2d/positioner_box_2d.ui +97 -31
- bec_widgets/widgets/control/device_control/positioner_box/positioner_control_line/positioner_control_line.ui +11 -4
- bec_widgets/widgets/control/device_control/positioner_group/positioner_group.py +2 -3
- bec_widgets/widgets/control/device_input/base_classes/device_input_base.py +29 -4
- bec_widgets/widgets/control/device_input/base_classes/device_signal_input_base.py +1 -0
- bec_widgets/widgets/control/device_input/device_combobox/device_combobox.py +2 -2
- bec_widgets/widgets/control/device_input/device_line_edit/device_line_edit.py +2 -2
- bec_widgets/widgets/control/device_input/signal_combobox/signal_combobox.py +1 -2
- bec_widgets/widgets/control/device_input/signal_line_edit/signal_line_edit.py +1 -2
- bec_widgets/widgets/control/scan_control/scan_control.py +7 -5
- bec_widgets/widgets/control/scan_control/scan_group_box.py +28 -5
- bec_widgets/widgets/dap/dap_combo_box/dap_combo_box.py +1 -2
- bec_widgets/widgets/dap/lmfit_dialog/lmfit_dialog.py +3 -4
- bec_widgets/widgets/dap/lmfit_dialog/lmfit_dialog_vertical.ui +14 -8
- bec_widgets/widgets/editors/console/console.py +1 -1
- bec_widgets/widgets/editors/{scan_metadata/additional_metadata_table.py → dict_backed_table.py} +29 -6
- bec_widgets/widgets/editors/scan_metadata/__init__.py +0 -7
- bec_widgets/widgets/editors/scan_metadata/_util.py +1 -1
- bec_widgets/widgets/{plots/motor_map/register_bec_motor_map_widget.py → editors/scan_metadata/register_scan_metadata.py} +2 -4
- bec_widgets/widgets/editors/scan_metadata/scan_metadata.py +42 -136
- bec_widgets/widgets/editors/scan_metadata/scan_metadata.pyproject +1 -0
- bec_widgets/widgets/{plots/multi_waveform/bec_multi_waveform_widget_plugin.py → editors/scan_metadata/scan_metadata_plugin.py} +9 -9
- bec_widgets/widgets/editors/text_box/text_box.py +2 -3
- bec_widgets/widgets/editors/website/website.py +2 -2
- bec_widgets/widgets/games/minesweeper.py +3 -2
- bec_widgets/widgets/plots/image/image.py +960 -0
- bec_widgets/widgets/plots/image/image.pyproject +1 -0
- bec_widgets/widgets/plots/image/image_item.py +279 -0
- bec_widgets/widgets/plots/{motor_map/bec_motor_map_widget_plugin.py → image/image_plugin.py} +11 -13
- bec_widgets/widgets/{containers/figure/plots → plots}/image/image_processor.py +31 -64
- bec_widgets/widgets/plots/image/{register_bec_image_widget.py → register_image.py} +2 -2
- bec_widgets/widgets/plots/image/toolbar_bundles/image_selection.py +59 -0
- bec_widgets/widgets/plots/image/toolbar_bundles/processing.py +79 -0
- bec_widgets/widgets/plots/motor_map/motor_map.py +832 -0
- bec_widgets/widgets/plots/motor_map/motor_map.pyproject +1 -0
- bec_widgets/widgets/plots/motor_map/motor_map_plugin.py +54 -0
- bec_widgets/widgets/plots/{multi_waveform/register_bec_multi_waveform_widget.py → motor_map/register_motor_map.py} +2 -4
- bec_widgets/widgets/plots/motor_map/settings/motor_map_settings.py +129 -0
- bec_widgets/widgets/plots/motor_map/settings/motor_map_settings.ui +120 -0
- bec_widgets/widgets/plots/motor_map/toolbar_bundles/motor_selection.py +70 -0
- bec_widgets/widgets/plots/multi_waveform/multi_waveform.py +508 -0
- bec_widgets/widgets/plots/multi_waveform/multi_waveform.pyproject +1 -0
- bec_widgets/widgets/plots/multi_waveform/multi_waveform_plugin.py +54 -0
- bec_widgets/widgets/plots/multi_waveform/register_multi_waveform.py +15 -0
- bec_widgets/widgets/plots/multi_waveform/settings/control_panel.py +144 -0
- bec_widgets/widgets/plots/multi_waveform/settings/multi_waveform_controls.ui +164 -0
- bec_widgets/widgets/plots/multi_waveform/toolbar_bundles/monitor_selection.py +65 -0
- bec_widgets/widgets/{plots_next_gen → plots}/plot_base.py +321 -40
- bec_widgets/widgets/plots/{waveform/register_bec_waveform_widget.py → scatter_waveform/register_scatter_waveform.py} +3 -3
- bec_widgets/widgets/plots/scatter_waveform/scatter_curve.py +197 -0
- bec_widgets/widgets/plots/scatter_waveform/scatter_waveform.py +553 -0
- bec_widgets/widgets/plots/scatter_waveform/scatter_waveform.pyproject +1 -0
- bec_widgets/widgets/plots/{image/bec_image_widget_plugin.py → scatter_waveform/scatter_waveform_plugin.py} +9 -13
- bec_widgets/widgets/plots/scatter_waveform/settings/scatter_curve_setting.py +138 -0
- bec_widgets/widgets/plots/scatter_waveform/settings/scatter_curve_settings_horizontal.ui +195 -0
- bec_widgets/widgets/plots/scatter_waveform/settings/scatter_curve_settings_vertical.ui +204 -0
- bec_widgets/widgets/{plots_next_gen → plots}/setting_menus/axis_settings.py +8 -8
- bec_widgets/widgets/{plots_next_gen → plots}/toolbar_bundles/mouse_interactions.py +4 -18
- bec_widgets/widgets/{plots_next_gen → plots}/toolbar_bundles/plot_export.py +14 -3
- bec_widgets/widgets/{plots_next_gen → plots}/toolbar_bundles/roi_bundle.py +6 -1
- bec_widgets/widgets/{plots_next_gen → plots}/toolbar_bundles/save_state.py +2 -2
- bec_widgets/widgets/{containers/figure/plots/waveform/waveform_curve.py → plots/waveform/curve.py} +119 -49
- bec_widgets/widgets/plots/waveform/register_waveform.py +15 -0
- bec_widgets/widgets/plots/waveform/settings/curve_settings/curve_setting.py +125 -0
- bec_widgets/widgets/plots/waveform/settings/curve_settings/curve_tree.py +576 -0
- bec_widgets/widgets/plots/waveform/utils/__init__.py +0 -0
- bec_widgets/widgets/plots/waveform/utils/roi_manager.py +84 -0
- bec_widgets/widgets/plots/waveform/waveform.py +1794 -0
- bec_widgets/widgets/plots/waveform/waveform.pyproject +1 -0
- bec_widgets/widgets/plots/waveform/{bec_waveform_widget_plugin.py → waveform_plugin.py} +9 -13
- bec_widgets/widgets/progress/bec_progressbar/bec_progressbar.py +1 -2
- bec_widgets/widgets/progress/ring_progress_bar/ring.py +11 -10
- bec_widgets/widgets/progress/ring_progress_bar/ring_progress_bar.py +24 -14
- bec_widgets/widgets/services/bec_queue/bec_queue.py +13 -11
- bec_widgets/widgets/services/bec_status_box/bec_status_box.py +3 -4
- bec_widgets/widgets/services/device_browser/device_browser.py +5 -2
- bec_widgets/widgets/services/device_browser/device_item/device_item.py +1 -1
- bec_widgets/widgets/utility/logpanel/logpanel.py +36 -17
- bec_widgets/widgets/utility/spinbox/decimal_spinbox.py +3 -3
- bec_widgets/widgets/utility/visual/color_button/color_button.py +1 -1
- bec_widgets/widgets/utility/visual/colormap_widget/colormap_widget.py +4 -6
- bec_widgets/widgets/utility/visual/dark_mode_button/dark_mode_button.py +4 -8
- {bec_widgets-1.25.1.dist-info → bec_widgets-2.0.1.dist-info}/METADATA +3 -3
- {bec_widgets-1.25.1.dist-info → bec_widgets-2.0.1.dist-info}/RECORD +168 -153
- pyproject.toml +3 -3
- bec_widgets/applications/alignment/alignment_1d/alignment_1d.py +0 -198
- bec_widgets/applications/alignment/alignment_1d/alignment_1d.ui +0 -615
- bec_widgets/applications/bec_app.py +0 -84
- bec_widgets/cli/auto_updates.py +0 -168
- bec_widgets/widgets/containers/figure/__init__.py +0 -1
- bec_widgets/widgets/containers/figure/figure.py +0 -796
- bec_widgets/widgets/containers/figure/plots/axis_settings.py +0 -91
- bec_widgets/widgets/containers/figure/plots/axis_settings.ui +0 -256
- bec_widgets/widgets/containers/figure/plots/image/image.py +0 -772
- bec_widgets/widgets/containers/figure/plots/image/image_item.py +0 -337
- bec_widgets/widgets/containers/figure/plots/motor_map/motor_map.py +0 -525
- bec_widgets/widgets/containers/figure/plots/multi_waveform/multi_waveform.py +0 -340
- bec_widgets/widgets/containers/figure/plots/plot_base.py +0 -505
- bec_widgets/widgets/containers/figure/plots/waveform/waveform.py +0 -1563
- bec_widgets/widgets/plots/image/bec_image_widget.pyproject +0 -1
- bec_widgets/widgets/plots/image/image_widget.py +0 -515
- bec_widgets/widgets/plots/motor_map/bec_motor_map_widget.pyproject +0 -1
- bec_widgets/widgets/plots/motor_map/motor_map_dialog/motor_map_settings.py +0 -56
- bec_widgets/widgets/plots/motor_map/motor_map_dialog/motor_map_settings.ui +0 -108
- bec_widgets/widgets/plots/motor_map/motor_map_widget.py +0 -234
- bec_widgets/widgets/plots/multi_waveform/bec_multi_waveform_widget.pyproject +0 -1
- bec_widgets/widgets/plots/multi_waveform/multi_waveform_controls.ui +0 -99
- bec_widgets/widgets/plots/multi_waveform/multi_waveform_widget.py +0 -536
- bec_widgets/widgets/plots/waveform/bec_waveform_widget.pyproject +0 -1
- bec_widgets/widgets/plots/waveform/waveform_popups/curve_dialog/curve_dialog.py +0 -336
- bec_widgets/widgets/plots/waveform/waveform_popups/curve_dialog/curve_dialog.ui +0 -372
- bec_widgets/widgets/plots/waveform/waveform_popups/dap_summary_dialog/dap_summary_dialog.py +0 -25
- bec_widgets/widgets/plots/waveform/waveform_widget.py +0 -751
- /bec_widgets/{qt_utils → utils}/collapsible_panel_manager.py +0 -0
- /bec_widgets/{applications/alignment → utils/forms_from_types}/__init__.py +0 -0
- /bec_widgets/{qt_utils → utils}/redis_message_waiter.py +0 -0
- /bec_widgets/{applications/alignment/alignment_1d → widgets/containers/auto_update}/__init__.py +0 -0
- /bec_widgets/{qt_utils → widgets/containers/main_window/addons}/__init__.py +0 -0
- /bec_widgets/widgets/{containers/figure/plots → plots/image/toolbar_bundles}/__init__.py +0 -0
- /bec_widgets/widgets/{containers/figure/plots/image → plots/motor_map/settings}/__init__.py +0 -0
- /bec_widgets/widgets/{containers/figure/plots/motor_map → plots/motor_map/toolbar_bundles}/__init__.py +0 -0
- /bec_widgets/widgets/{containers/figure/plots/multi_waveform → plots/multi_waveform/settings}/__init__.py +0 -0
- /bec_widgets/widgets/{containers/figure/plots/waveform → plots/multi_waveform/toolbar_bundles}/__init__.py +0 -0
- /bec_widgets/widgets/plots/{motor_map/motor_map_dialog → scatter_waveform}/__init__.py +0 -0
- /bec_widgets/widgets/plots/{waveform/waveform_popups → scatter_waveform/settings}/__init__.py +0 -0
- /bec_widgets/widgets/plots/{waveform/waveform_popups/curve_dialog → setting_menus}/__init__.py +0 -0
- /bec_widgets/widgets/{plots_next_gen → plots}/setting_menus/axis_settings_horizontal.ui +0 -0
- /bec_widgets/widgets/{plots_next_gen → plots}/setting_menus/axis_settings_vertical.ui +0 -0
- /bec_widgets/widgets/plots/{waveform/waveform_popups/dap_summary_dialog → toolbar_bundles}/__init__.py +0 -0
- /bec_widgets/widgets/{plots_next_gen/setting_menus → plots/waveform/settings}/__init__.py +0 -0
- /bec_widgets/widgets/{plots_next_gen/toolbar_bundles → plots/waveform/settings/curve_settings}/__init__.py +0 -0
- {bec_widgets-1.25.1.dist-info → bec_widgets-2.0.1.dist-info}/WHEEL +0 -0
- {bec_widgets-1.25.1.dist-info → bec_widgets-2.0.1.dist-info}/entry_points.txt +0 -0
- {bec_widgets-1.25.1.dist-info → bec_widgets-2.0.1.dist-info}/licenses/LICENSE +0 -0
CHANGELOG.md
CHANGED
@@ -1,6 +1,645 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
3
|
|
4
|
+
## v2.0.1 (2025-04-30)
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
- **dock_area**: Restore state safeguard to not pass none to pyqtgraph restoreState
|
9
|
+
([`9079ddd`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/9079ddd7278ede7a9a12d7b39797154e83659c20))
|
10
|
+
|
11
|
+
|
12
|
+
## v2.0.0 (2025-04-29)
|
13
|
+
|
14
|
+
### Bug Fixes
|
15
|
+
|
16
|
+
- Add designer plugin for ScanMetadata
|
17
|
+
([`43e1aa9`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/43e1aa9505cfa6e87b4fce1d065efb48b4111190))
|
18
|
+
|
19
|
+
- Add support for 'add_slice', add downsampling for performance improvements. add tests
|
20
|
+
([`7f7891d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/7f7891dfa54588f5d902448b760f141b183a7fa1))
|
21
|
+
|
22
|
+
- Broadcast context manager to emit registry changes just once
|
23
|
+
([`a5f06c8`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/a5f06c8f8380156a763445a69df29ee0e62e434c))
|
24
|
+
|
25
|
+
- Bugfix in cleanup of ScatterWaveform ScatterCurve; closes #520
|
26
|
+
([`1d09107`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/1d091071e1179821bb1dcd47fb97f3d0959b972f))
|
27
|
+
|
28
|
+
- Change default colormap to plasma
|
29
|
+
([`074bbbc`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/074bbbc16648849bdfcfc28b2c520b0e38dd07c2))
|
30
|
+
|
31
|
+
- Create widget enum programatically
|
32
|
+
([`7726d83`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/7726d83b6834b8145e48e709e2f839fb0ec1b971))
|
33
|
+
|
34
|
+
- Ensure provided dock and dock_area names are valid and defaults are snake_case
|
35
|
+
([`0ac14a7`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/0ac14a74b851578fff668fb8c6722f990130831d))
|
36
|
+
|
37
|
+
- Expose common classes from bec_widgets package
|
38
|
+
([`28ae0d2`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/28ae0d2b577d7c926ee54690898fe8e327e1229f))
|
39
|
+
|
40
|
+
- Forward parent to children
|
41
|
+
([`1fc6125`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/1fc61253699425a2bf64a0f8b560f8474549b841))
|
42
|
+
|
43
|
+
- Import from qtpy instead of PySide6
|
44
|
+
([`fef07ac`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/fef07ac8e12399e7e49bcd673a5fc7cbf713bc50))
|
45
|
+
|
46
|
+
- Proper cleanup of progressbar
|
47
|
+
([`8ff2063`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8ff2063bc8978c5b2a97f720d5da055e8ec08f0c))
|
48
|
+
|
49
|
+
- Rpc access enabled for certain widgets.
|
50
|
+
([`ef4a52c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/ef4a52cc17748f35ed627170b1025e6e028d70b8))
|
51
|
+
|
52
|
+
- Server shutdown widgets
|
53
|
+
([`75b2446`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/75b24467def65284ea6b6114b25098437e31ec95))
|
54
|
+
|
55
|
+
- Support auto_range_x/y for viewAll during measurement
|
56
|
+
([`af28e2e`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/af28e2e433c9b0233436da850be97cd63df90a74))
|
57
|
+
|
58
|
+
- Unique name for widgets, fix new method for docks; closes #534
|
59
|
+
([`77f9d42`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/77f9d425765061f137c997062a3bf769a939bc64))
|
60
|
+
|
61
|
+
- Warning in logpanel
|
62
|
+
([`1d7b423`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/1d7b423bb307b6aae3879987776310c14380895d))
|
63
|
+
|
64
|
+
- chain a signal to the child BecLogsQueue rather than passing the signal instance in
|
65
|
+
|
66
|
+
- Wrap fetching plugin widgets in case of errors
|
67
|
+
([`ef14831`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/ef148317dea9c7ff985b2a3ff06ccdb37258153f))
|
68
|
+
|
69
|
+
- **auto_updates**: Fix condition to skip auto update
|
70
|
+
([`18e4ba6`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/18e4ba6cfe9f67512efbd3989156de5670aab3fe))
|
71
|
+
|
72
|
+
- **bec_connector**: Add assertion to ensure BECConnector is used with a QObject; closes #475
|
73
|
+
([`1921444`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/1921444e152e06c4decc790452f3c496cf8ee961))
|
74
|
+
|
75
|
+
- **bec_connector**: Add setObjectName method to update object name and broadcast if registered;
|
76
|
+
closes #472
|
77
|
+
([`064343a`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/064343acf2631e4ae62b2a5e08bc08087246570c))
|
78
|
+
|
79
|
+
- **bec_connector**: Call cleanup on widgets if the parent was deleted
|
80
|
+
([`fc1cdc8`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/fc1cdc814fc3c44a571c20986bc627935f90ff91))
|
81
|
+
|
82
|
+
- **bec_connector**: Improve cleanup handling on deleted parent to prevent errors
|
83
|
+
([`3709cdc`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/3709cdc86671e5219afca7a8e11bdd01f03dd30e))
|
84
|
+
|
85
|
+
- **bec_connector**: Move RPC registration into single shot method to ensure the rpc name is in sync
|
86
|
+
([`3b16c9f`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/3b16c9f5a2f7f16b23f25560b1e8fb4e42359ef0))
|
87
|
+
|
88
|
+
- **bec_queue**: Set parent for toolbar buttons
|
89
|
+
([`cdc613b`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/cdc613b6e7d7eac806d458515321590e9344244a))
|
90
|
+
|
91
|
+
- **becconnector**: Widgets can be flagged as root widget, skipping the BECMainWindow in CLI usage
|
92
|
+
([`061f348`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/061f3481daae6844a83c44e9caca7ed56a1bb100))
|
93
|
+
|
94
|
+
- **becconnector,widgets**: Parent_id is always fetched from the real bec widget parent; all widgets
|
95
|
+
adjusted; hardcoded parent_ids removed
|
96
|
+
([`f35f4c4`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/f35f4c4b295139b99a2dad9e8241f900d2565aeb))
|
97
|
+
|
98
|
+
- **BECGuiClient**: Add launch_script parameter to dock area creation
|
99
|
+
([`06a4954`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/06a4954d3da44c6805232d34e47e242b28ba7fd1))
|
100
|
+
|
101
|
+
- **cleanup**: Prevent double cleanup by tracking object destruction state
|
102
|
+
([`fde9120`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/fde912005db61a60707e7181c3425a4557bdc011))
|
103
|
+
|
104
|
+
- **cli**: Add type ignore comment to generated files
|
105
|
+
([`d171255`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/d1712552ffd1118845dc7121218df86ce10e8750))
|
106
|
+
|
107
|
+
- **client**: Import reduce
|
108
|
+
([`8cca510`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8cca510fa1cbda00a07edbef9d36fdd74e63d201))
|
109
|
+
|
110
|
+
- **client**: Regenerated client
|
111
|
+
([`c97db6a`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/c97db6aaae81d08019a13c344414c16c42691654))
|
112
|
+
|
113
|
+
- **client**: Rpc API adjusted for DockArea, ImageItem and Waveform
|
114
|
+
([`6ca4aa0`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6ca4aa0f9b9d5ace9fb1e174219f4da5617ebbac))
|
115
|
+
|
116
|
+
- **client_utils**: Simplify RPC client instantiation in BECGuiClient
|
117
|
+
([`96b31a4`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/96b31a450998aca2b7ac94138b07223418d2bacd))
|
118
|
+
|
119
|
+
- **colormap_widget**: Size policy fixed
|
120
|
+
([`1cc2a98`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/1cc2a9848906a7013e86687976d42d4b9676b25f))
|
121
|
+
|
122
|
+
- **compact_popup**: Forward close event
|
123
|
+
([`e0f146b`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/e0f146beeb34367a4d3454a7012af4728d594b9b))
|
124
|
+
|
125
|
+
- **crosshair**: Adapted for 2D image
|
126
|
+
([`a85402d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/a85402dde1af1d9c4a154892c46422ac3e1f22f9))
|
127
|
+
|
128
|
+
- **curve**: Fix unique names for custom curves
|
129
|
+
([`8e846d4`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8e846d449955ded3cb8090e44ea36d26efccb80e))
|
130
|
+
|
131
|
+
- **dark-mode-button**: Fix parent passed to QObjects in various classes
|
132
|
+
([`a06f060`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/a06f0600c1c9a80436f01533a82905a6f3633895))
|
133
|
+
|
134
|
+
- **designer**: Avoid touching deleted widgets during init as QtDesigner will segfault
|
135
|
+
([`4381fcc`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/4381fcc4c212cd03ce91f1638dc361c3315f8c45))
|
136
|
+
|
137
|
+
- **designer-plugin-generator**: Enhance super constructor validation for new style classes
|
138
|
+
([`6318b2d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6318b2d822be0ded561a1afd0d485158614e2406))
|
139
|
+
|
140
|
+
- **device_input_base**: Removed enums from Pydantic models to make them serialisable
|
141
|
+
([`43b747e`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/43b747ec8a761530d78b26650b0ec2ee4581ffaf))
|
142
|
+
|
143
|
+
- **dock_area**: Close BECMainWindow if dock area is central widget
|
144
|
+
([`e725de3`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/e725de3c4504d43fbcad25d69c5cb8cbe7a70867))
|
145
|
+
|
146
|
+
- **docs**: Update copyright year to be dynamic
|
147
|
+
([`f2d5b57`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/f2d5b57e86d0c9d690b8d9f988035427608f0b4c))
|
148
|
+
|
149
|
+
- **entry_validator**: Validator reports list of signal if user chooses the wrong one
|
150
|
+
([`da05877`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/da05877dd04fa618cdb45268cb62df602a5e808f))
|
151
|
+
|
152
|
+
- **image**: Imageitem remove adjusted to disconnect and remove current displayed image
|
153
|
+
([`98f159b`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/98f159b25f6bf7e1f2dd76726d7ab66a0baf88de))
|
154
|
+
|
155
|
+
- **launch_window**: Redesign
|
156
|
+
([`7e65d4f`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/7e65d4f2d6d840d3895e023f5cd090a56ea6e5f3))
|
157
|
+
|
158
|
+
- **launch_window**: Return None when cancelling the ui file launcher
|
159
|
+
([`b3dbe92`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b3dbe922dea2cea9190d1583bd6b69f1a45d6b90))
|
160
|
+
|
161
|
+
- **launch_window**: Update LaunchTile icon to use new UI loader tile image
|
162
|
+
([`3cd6e05`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/3cd6e05b2478654210049ca8e1756ad592f1da81))
|
163
|
+
|
164
|
+
- **launcher**: Hide launcher when launcher is closed even though it is not the last widget
|
165
|
+
([`6e7920c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6e7920c119824650006e7357ca2f4ff95d413e13))
|
166
|
+
|
167
|
+
- **lmfit_dialog_vertical**: Vertical sizePolicy fixed
|
168
|
+
([`584b945`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/584b94500565a33e5daed86b7552ec54f1135cf6))
|
169
|
+
|
170
|
+
- **main_window**: Connected to theme change
|
171
|
+
([`11feeff`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/11feeff37ce0b02fcbc8e506c67c14e1fc5e0cb6))
|
172
|
+
|
173
|
+
- **main_window**: Show app id only when connected to redis
|
174
|
+
([`be72268`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/be722683a7cc7b215c572f9c2e996839b010b64e))
|
175
|
+
|
176
|
+
- **moduar-toolbar**: Fix cleanup of modular toolbar and dock_area
|
177
|
+
([`c70cd9d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/c70cd9d6e8f7ea9d5f81b10ac437cdcc9ee900e9))
|
178
|
+
|
179
|
+
- **motor_map**: Limit map creating optimized
|
180
|
+
([`9f2a083`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/9f2a083abbcfb465ebea9acee8263dcc9a6da5d9))
|
181
|
+
|
182
|
+
- **plot_base**: Ability to set y label suffix
|
183
|
+
([`890b501`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/890b50115fef845c2a77242fdb05863d2eec4a00))
|
184
|
+
|
185
|
+
- **plot_base**: Aspect ratio removed from the PlotBase
|
186
|
+
([`19d8aeb`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/19d8aeb16249a1093cfec124d0ebdf6af11d94a8))
|
187
|
+
|
188
|
+
- **plot_base**: Axis setting filter for relevant properties
|
189
|
+
([`0204d9c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/0204d9c86f9665dcefdcbe7f49ac23918d74dd66))
|
190
|
+
|
191
|
+
- **plot_base**: Do not enable inner axes when label is changed
|
192
|
+
([`98eda03`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/98eda03f4d6d449605d5559a1db44c900d93cb79))
|
193
|
+
|
194
|
+
- **plot_base**: Enable popup property fixed
|
195
|
+
([`30db183`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/30db18367e9c6d6375fda970a1bb255d966cba5a))
|
196
|
+
|
197
|
+
- **plot_base**: Fix cleanup of popups if popups are still open when PlotBase is closed
|
198
|
+
([`39cf4dd`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/39cf4ddd5a033ee7f589d508f765669186e776bc))
|
199
|
+
|
200
|
+
- **plot_base**: Improved handling of matplotlib exporter errors
|
201
|
+
([`4f9514f`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/4f9514fbd1ff0059248d3b7b5b4fcd85c3eb9c72))
|
202
|
+
|
203
|
+
- **plot_base**: Inner and outer axis setting in popup mode
|
204
|
+
([`055b968`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/055b96818aa69d66119caee9a3e8c24575ce60b4))
|
205
|
+
|
206
|
+
- **plot_base**: Update mouse mode state on mode change
|
207
|
+
([`fc24c8b`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/fc24c8b3a5f9cd55fb3d49f753b53a65a2a0fa26))
|
208
|
+
|
209
|
+
- **plot_framework**: All widgets, popups and side menus cleanups adjusted
|
210
|
+
([`337a332`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/337a332ed123f99729b8cf6869f7fe4b056c2b16))
|
211
|
+
|
212
|
+
- **plot_indicators**: Cleanup adjusted
|
213
|
+
([`4865341`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/48653410101a2a38d5067fbfca7712d255d89625))
|
214
|
+
|
215
|
+
- **plot_indicators**: Plot indicators added to the PlotBase
|
216
|
+
([`42e3b9c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/42e3b9c13786e67220874a1275a3d9ee9515541a))
|
217
|
+
|
218
|
+
- **positioner-indicator**: Fix property setters for position indicator
|
219
|
+
([`1910993`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/1910993b2b3d30ecb8e4977b4a362f46adae3c75))
|
220
|
+
|
221
|
+
- **progress-ring-bar**: Fix parent inheritance and cleanup of ring objects; closes #496
|
222
|
+
([`b460ea9`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b460ea9955318879ddfe4f9ae963249ba342bbb5))
|
223
|
+
|
224
|
+
- **ring-progress-bar**: Fix bug in disconnect slot of rings, enable 'scan' mode as default for init
|
225
|
+
with first ring
|
226
|
+
([`7c303d0`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/7c303d01294493a55fd26db8c1475e8c58b3e492))
|
227
|
+
|
228
|
+
- **ring_progress_bar**: Replaced hard-coded endpoints by MessageEndpoints
|
229
|
+
([`e4e9feb`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/e4e9febc98268a4b6b9774b253419e88ea044811))
|
230
|
+
|
231
|
+
- **round_frame**: Orientation can be vertical
|
232
|
+
([`c1bbb16`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/c1bbb16dad481c628e7680180d7250ba8a560c46))
|
233
|
+
|
234
|
+
- **round_frame**: Roundframe removed from BECWidget inheritance
|
235
|
+
([`b58a098`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b58a098ed4afbe62721fd2bf8497f363deecbfa6))
|
236
|
+
|
237
|
+
- **rpc**: Call close on container widget if needed
|
238
|
+
([`a13de45`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/a13de45131309771c1438407f3733a8c0897d495))
|
239
|
+
|
240
|
+
- **rpc-base**: Deprecate widget_name in favor of object_name; closes #499
|
241
|
+
([`86647b9`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/86647b9b7e2fa111105ae483808883a624fa4cd6))
|
242
|
+
|
243
|
+
- **rpc_base**: Ensure message wait event is set after processing RPC response
|
244
|
+
([`4dc59aa`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/4dc59aa5e9b15e5ec40401e80e7965acd88e2fce))
|
245
|
+
|
246
|
+
- **rpc_base**: Timeout run_rpc 3s
|
247
|
+
([`8558b46`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8558b46114760a9434eaa827f81d5fd9d047112f))
|
248
|
+
|
249
|
+
- **rpc_register**: _lock and _skip_broad_cast moved to instance attributes
|
250
|
+
([`8d17f7e`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8d17f7e32f81894294d7da472268e8d9eb3bb74b))
|
251
|
+
|
252
|
+
- **rpc_register**: Change add_rpc parameter type to BECConnector and add object_is_registered
|
253
|
+
method
|
254
|
+
([`82b8265`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/82b82659b7919b15d629375866302624b5b6e457))
|
255
|
+
|
256
|
+
- **rpc_register**: Lock changed to RLock
|
257
|
+
([`6c90ca3`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6c90ca31078d97124a3ad535ffe83da138558d67))
|
258
|
+
|
259
|
+
- **rpc_server**: Broadcasted data check
|
260
|
+
([`c36852b`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/c36852b2ef762cdae3fde569bbd0d5f2f6f2725b))
|
261
|
+
|
262
|
+
- **rpc_server**: Enhance serialization logic for BECConnector objects and fix return types
|
263
|
+
([`125afc8`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/125afc89073b4fc69a3f42650b3d4f6fa6ccaa47))
|
264
|
+
|
265
|
+
- **rpc_server**: Update _serialize_bec_connector to include wait parameter for registration check
|
266
|
+
([`d6fccd1`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/d6fccd10f5d600ea67cf7b2a5ebb42295d15cdfe))
|
267
|
+
|
268
|
+
- **RPCReference**: Setattr added
|
269
|
+
([`a2128ad`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/a2128ad8d688995551c5e26974396fd0588b6804))
|
270
|
+
|
271
|
+
- **scan_control**: Restore scan parameters always regenerate the arg box, preventing infinite loop
|
272
|
+
([`1f2db92`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/1f2db927f50f4f30d43ebe52e39118c7d79994d4))
|
273
|
+
|
274
|
+
- **scan_matadata**: Parent passing
|
275
|
+
([`4eaadd1`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/4eaadd1545885b111fce3f8cab527a77b8633ff3))
|
276
|
+
|
277
|
+
- **scatter_waveform,waveform**: Added QTimer to fetch the last data points after 500ms
|
278
|
+
([`e6795dd`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/e6795dd87ccd93cfd53e22cd94d71bffe1ef54dd))
|
279
|
+
|
280
|
+
- **serialization**: Add serialization for qpointf
|
281
|
+
([`3ddfeaa`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/3ddfeaa49fd4a7fdbff7cae47b90c25720f6dca0))
|
282
|
+
|
283
|
+
- **server**: Becdockarea type added
|
284
|
+
([`4a74891`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/4a74891184f112751258866b6bc9d800dbc5ed05))
|
285
|
+
|
286
|
+
- **server**: Remove window.hide() since widgets will be teared down on kill_server before siginit
|
287
|
+
signals is sent
|
288
|
+
([`58b0c7d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/58b0c7ddc1d0b85b35e7e18434c0b83aac01a735))
|
289
|
+
|
290
|
+
- **server**: Turn_off_the_lights cleanup fixed for parent_id widgets
|
291
|
+
([`20a86ad`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/20a86ad325d36aa5aec73aeda7ff43ea9cc6c1f7))
|
292
|
+
|
293
|
+
- **setting_widget**: Added parent kwarg into all settings widgets in plotting framework
|
294
|
+
([`94c2e2d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/94c2e2db6518402207b2a1077bb16403a8e61cee))
|
295
|
+
|
296
|
+
- **side_panel**: Side panel menu can be initialized without a title
|
297
|
+
([`112eed6`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/112eed694c0ef6eb80ec7a7cfdfbaacf732d5b9f))
|
298
|
+
|
299
|
+
- **toolbar**: Update action check handling logic for SwitchableToolBarAction
|
300
|
+
([`ac08bdf`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/ac08bdfab2162ac8fd103e60779a76d36e9a3765))
|
301
|
+
|
302
|
+
- **type hints**: Add future import to prevent sphinx from crashing
|
303
|
+
([`aff5a51`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/aff5a51f4c059ce21ec72cefc263f37df2491480))
|
304
|
+
|
305
|
+
- **waveform**: Dap curve flickering
|
306
|
+
([`b03d2ea`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b03d2eaeed4263846c470bc45eba9208ced2370b))
|
307
|
+
|
308
|
+
- **waveform**: Error where scan history is empty
|
309
|
+
([`288ea4d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/288ea4dbbde6d5f770c37f4daf377da9ec8fe729))
|
310
|
+
|
311
|
+
- **waveform**: Fix dap curve categorization logic
|
312
|
+
([`b91f1fe`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b91f1fe4879e43e71a1be49ce5a206efbae19315))
|
313
|
+
|
314
|
+
- **waveform**: Legend is correctly updated when changed from curve dialog
|
315
|
+
([`c2d2c48`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/c2d2c484cd1f133f45fe7147616c22c0b5fd5611))
|
316
|
+
|
317
|
+
- **waveform**: Signals for x device can be defined from gui
|
318
|
+
([`39164fe`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/39164feb18f9e996d97814f58157892e8db816ae))
|
319
|
+
|
320
|
+
- **waveform, rpc_reference**: __getitem__ removed form waveform and rpc_reference
|
321
|
+
([`3a82c95`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/3a82c95f60cb2b7f0b29a1ea5cdcbfa5bf602af8))
|
322
|
+
|
323
|
+
- **website-widget**: Add super().cleanup() in website widget
|
324
|
+
([`8fbd54c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8fbd54c3aa864623e42b39a1ebf92ba098ba437d))
|
325
|
+
|
326
|
+
- **widgets**: Becconnector resolves hierarchy including objectName, parent, parent_id upon init;
|
327
|
+
all widgets adjusted
|
328
|
+
([`a1bec75`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/a1bec7511549277da231928d989b16ecad0eed1b))
|
329
|
+
|
330
|
+
### Build System
|
331
|
+
|
332
|
+
- Pyside6 capped to 6.9
|
333
|
+
([`9dabf2c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/9dabf2c66c8023194964b9ad308e06197471f89f))
|
334
|
+
|
335
|
+
- **bec_lib**: Raised required version to 3.28.1
|
336
|
+
([`a5f1f47`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/a5f1f4781ed9787148053d71e0d12fefe42e142a))
|
337
|
+
|
338
|
+
- **dependencies**: Update min bec_lib version to 3.29
|
339
|
+
([`eb0323b`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/eb0323b989e96e89d2eb1ff7b648edb43f5fe198))
|
340
|
+
|
341
|
+
### Continuous Integration
|
342
|
+
|
343
|
+
- **e2e**: E2e tests are saving logs
|
344
|
+
([`d4106c5`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/d4106c548e2373463a48268fd991ded7f554e3a6))
|
345
|
+
|
346
|
+
### Documentation
|
347
|
+
|
348
|
+
- Add docs on widget plugins
|
349
|
+
([`52a9f29`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/52a9f29bdcb20a9339a8970508bc0a93ba8bef5f))
|
350
|
+
|
351
|
+
- Add missing class doc strings for rpc-enabled widgets
|
352
|
+
([`cfc8272`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/cfc8272ac288541d1e20c0840bd2ce6fa930897c))
|
353
|
+
|
354
|
+
- Better document logpanel code
|
355
|
+
([`d2c9075`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/d2c90757c21e040940a378325cad75c4d94470f9))
|
356
|
+
|
357
|
+
- Grammar improvement
|
358
|
+
([`1fe052e`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/1fe052e9da9e44bf9872db0d42218843a8e6d275))
|
359
|
+
|
360
|
+
- Remove BECFigure
|
361
|
+
([`75cc45d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/75cc45d767970e985c566fd4aeccd4394f48dfa3))
|
362
|
+
|
363
|
+
- Remove BECFigure from docs, fix wrong api for docs of plotting widgets
|
364
|
+
([`a1c859c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/a1c859c7434357e6fb82f0912314c203fb73e890))
|
365
|
+
|
366
|
+
- Replaces instances of QtDesigner with BEC Designer for improved clarity
|
367
|
+
([`60852e2`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/60852e228f80f0d2e74813f82bd30f1ba83ff154))
|
368
|
+
|
369
|
+
- Review quick_start
|
370
|
+
([`4acf5be`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/4acf5befb1dbcc69e8cc7da70ebf5663b9ec15f2))
|
371
|
+
|
372
|
+
- Update docs for v2
|
373
|
+
([`25bd905`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/25bd905cef987a713e24aca178c04aef1ab59656))
|
374
|
+
|
375
|
+
- Update docs for various widgets
|
376
|
+
([`b6695b4`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b6695b45d076dbf3896e94eedcf73d542022d764))
|
377
|
+
|
378
|
+
- Update quick_start
|
379
|
+
([`afc818b`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/afc818bf7d17f42703c3cebafd2b292b8444647a))
|
380
|
+
|
381
|
+
- Updated docs for v2 ([#531](https://gitlab.psi.ch/bec/bec_widgets/-/merge_requests/531),
|
382
|
+
[`b4af2cc`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b4af2cc77aa0013f4547cd98345b0c77abb7101b))
|
383
|
+
|
384
|
+
- **auto_updates**: Update documentation for auto updates functionality and add launcher image
|
385
|
+
([`6630ba1`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6630ba1c421e566bf86ac38701a86eff624395d2))
|
386
|
+
|
387
|
+
- **lmfit**: Fix links
|
388
|
+
([`5e4965f`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/5e4965fe1f88d18fcc7e6875777ff3eb01ab08ec))
|
389
|
+
|
390
|
+
- **plot_base**: Update docstrings for properties and setters
|
391
|
+
([`b085ef6`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b085ef6e730d529149bcb696b1ad4cd9c5220a83))
|
392
|
+
|
393
|
+
- **position-indicator**: Update docs for positioner indicator
|
394
|
+
([`2f0d213`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/2f0d213e32fd662bfffd4df73b9281fa30cef6e3))
|
395
|
+
|
396
|
+
### Features
|
397
|
+
|
398
|
+
- Add loader/helper for widget plugins
|
399
|
+
([`ca2bb4f`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/ca2bb4f9b42ebaac2fc544d3da36267d93e9903d))
|
400
|
+
|
401
|
+
- Add rpc broadcast
|
402
|
+
([`2ba9b4c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/2ba9b4cb236a2182261dfb88398d5ece733ba393))
|
403
|
+
|
404
|
+
- Add support for auto updates
|
405
|
+
([`2511056`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/2511056557daf0b5dd78d3e85ac4befb8bf8c316))
|
406
|
+
|
407
|
+
- Delete bec_app
|
408
|
+
([`8e64b65`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8e64b65c2d3b8a8f3c6e5376e694369b41733da4))
|
409
|
+
|
410
|
+
- Deprecated and delete alignment_1d gui
|
411
|
+
([`27ea92d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/27ea92d120cc8ef01fff10341ce0954b4f7fed5d))
|
412
|
+
|
413
|
+
- Namespace update for gui, dock_area and docks.
|
414
|
+
([`ac3c5a3`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/ac3c5a38e449c2c3e4a1c61d5f9a59acfbf0cab5))
|
415
|
+
|
416
|
+
- **auto_update**: Add GUI highlight management for auto updates status
|
417
|
+
([`5f272a6`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/5f272a66a4d4f65273d7b2a6709336cd3582d695))
|
418
|
+
|
419
|
+
- **auto_updates**: Enforce rpc widget class for subclasses of auto updates
|
420
|
+
([`778230b`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/778230b5edf5d24df8a10c78c90ea065510e8344))
|
421
|
+
|
422
|
+
- **image**: New Image widget based on new PlotBase
|
423
|
+
([`cb39ff3`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/cb39ff3fbde99f4e4bed49dee8a5e5987d257b23))
|
424
|
+
|
425
|
+
- **launch_window**: Add custom UI file launching functionality and UI tile
|
426
|
+
([`3089ca1`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/3089ca15ec4a8c110d11c57aff2da42f4af5bd08))
|
427
|
+
|
428
|
+
- **launch_window**: Add user access permissions
|
429
|
+
([`8efa93d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8efa93d2d2c5e6c28008e1bbde89e5cc8a01d139))
|
430
|
+
|
431
|
+
- **launch_window**: Enhance auto update functionality with selector and dynamic loading
|
432
|
+
([`2965323`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/29653239c5cf43313224cc5123d066fcba4b831b))
|
433
|
+
|
434
|
+
- **launcher**: Add option for launching with auto updates
|
435
|
+
([`20a1c5d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/20a1c5ddb3cd0763ce69bba5a893f54c56678706))
|
436
|
+
|
437
|
+
- **main_window**: Add launcher menu and functionality to show launcher
|
438
|
+
([`55baa84`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/55baa84eb6723b30b407092bc36f826b826cc934))
|
439
|
+
|
440
|
+
- **motor_map**: New MotorMap widget based on PlotBase
|
441
|
+
([`fec26d7`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/fec26d793e14965a719a4d038838418b9a7603bb))
|
442
|
+
|
443
|
+
- **multi_waveform**: Multi-waveform widget based on new PlotBase
|
444
|
+
([`77f9616`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/77f96160ab348c1a65ceb55986ea4ea75f8be04a))
|
445
|
+
|
446
|
+
- **plugin_utils**: Add functionality to retrieve auto update classes from plugins
|
447
|
+
([`c434af9`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/c434af9b92d68d08da87112ef424738e5e42ae6e))
|
448
|
+
|
449
|
+
- **positioner_box**: Add units QLabel to device UI components and update visibility logic
|
450
|
+
([`f653fc5`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/f653fc5f7ebf8ad5297facd739a8a49ea0a06c95))
|
451
|
+
|
452
|
+
- **scatter_waveform**: Scatter waveform widget based on new Plotbase
|
453
|
+
([`95fcf01`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/95fcf016c32c52330acfd5900a3996c99c4ee01f))
|
454
|
+
|
455
|
+
- **server,launcher**: Rpc server separated with the launcher window introduced
|
456
|
+
([`5f27a90`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/5f27a9098903ffd8ec27c1b45565f1c113892cca))
|
457
|
+
|
458
|
+
- **slot**: Add 'verify_sender' argument to SafeSlot for sender verification
|
459
|
+
([`8eef425`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8eef4253b0507f60f50c06ed48b59a1b19b29644))
|
460
|
+
|
461
|
+
- **ui_launch_window**: Add UILaunchWindow class
|
462
|
+
([`45cd82e`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/45cd82e6354c72e1e35cd6366aa7aad93f8b12ca))
|
463
|
+
|
464
|
+
- **waveform**: New Waveform widget based on NextGen PlotBase
|
465
|
+
([`4bec181`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/4bec181f3aff34d9de7d3f9ec012b641c125a661))
|
466
|
+
|
467
|
+
- **widget_io**: Added handler for Sliders
|
468
|
+
([`1a0097e`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/1a0097e02728b6470217d3a574260f376776d81f))
|
469
|
+
|
470
|
+
### Refactoring
|
471
|
+
|
472
|
+
- Add fallback to 'index' plotting in case of missmatch in length
|
473
|
+
([`515d7ad`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/515d7ad05584086a8e8ac626b476d629e27aacf3))
|
474
|
+
|
475
|
+
- Add pragma no cover to various TYPE_CHECKING
|
476
|
+
([`f88dfc8`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/f88dfc8f1bbc0819736a4f32bf21682366fd3437))
|
477
|
+
|
478
|
+
- Add support to plot against x_data
|
479
|
+
([`0e276d4`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/0e276d4c09cddb459688aecf28684a963d8f6613))
|
480
|
+
|
481
|
+
- Add template for debugging the cli generator
|
482
|
+
([`f89e74b`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/f89e74b199d007cf47f355a1c5e1f582daeea90a))
|
483
|
+
|
484
|
+
- Autoupdate disabled
|
485
|
+
([`4e29291`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/4e29291b3a0891657a8d2011bcaf1d6e65de125a))
|
486
|
+
|
487
|
+
- Cleanup MR
|
488
|
+
([`0b00cd2`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/0b00cd24fd43dbc87c81f7dbfae816343f7da4c4))
|
489
|
+
|
490
|
+
- Cleanup rpc reference tracking, fix appquit, fix namespace updates edge cases
|
491
|
+
([`7ba93ce`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/7ba93ce934cc644ad6340f141a6a0888bd1d3d98))
|
492
|
+
|
493
|
+
- Cleanup, fix tests and _top_level dict/windows
|
494
|
+
([`5872253`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/58722531232b2290f9fd974bae24877c9d5451f4))
|
495
|
+
|
496
|
+
- Fix cleanup bug for BECConnector items, renamed _registry_state to _server_registry
|
497
|
+
([`be83c7d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/be83c7d5f4bc04d110734b491727dc60d8dd61ef))
|
498
|
+
|
499
|
+
- Fix cleanup for various widgets, including RoundedFrame
|
500
|
+
([`d05179a`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/d05179a519d6419c9631ffdf4fa6aa262966c2ed))
|
501
|
+
|
502
|
+
- Improve plotting behaviour from history
|
503
|
+
([`ed2d958`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/ed2d958de62223cd796c869b6c8b9b75170e66f5))
|
504
|
+
|
505
|
+
- Rearrange base of metadata forms for generic use
|
506
|
+
([`d04770f`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/d04770fe913474ec9d4e06b056c85e720d1470c4))
|
507
|
+
|
508
|
+
- Set downsampling to auto=True, method 'peak', activate clipToView for (Async)-Curves and fix
|
509
|
+
ViewAll hook from pg.view_box menu
|
510
|
+
([`25820a1`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/25820a1cdec2cff99ab0d6085aece0e3e7dd9092))
|
511
|
+
|
512
|
+
- Tidy client generation and add options
|
513
|
+
([`b492591`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b4925918f7acf31e40971814639be8a6c55d46df))
|
514
|
+
|
515
|
+
- **assets**: New icon for ui loader
|
516
|
+
([`e5b5322`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/e5b532274ede281456a14b02a99855302603490a))
|
517
|
+
|
518
|
+
- **auto_update**: Auto_update changed to be BECMainWindow; removed auto update logic from
|
519
|
+
BECDockArea
|
520
|
+
([`56c2827`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/56c282714037f733bcfd8a659f34baadcd1aa223))
|
521
|
+
|
522
|
+
- **auto_updates**: Move cleanup method from user section to internal section
|
523
|
+
([`ac9224e`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/ac9224e5f2d3edcb5b1cc1cbc1a8583f81d0b912))
|
524
|
+
|
525
|
+
- **bec_connector**: Replace pyqtSlot with SafeSlot for consistency
|
526
|
+
([`9d6d0b4`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/9d6d0b406a812e08ca8417415b5def98b40bdf92))
|
527
|
+
|
528
|
+
- **bec_figure**: Becfigure removed
|
529
|
+
([`f76d931`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/f76d9319bd13bb52b1ae2524c1c5e44a167cc330))
|
530
|
+
|
531
|
+
- **client_utils**: Remove unused auto update attributes from BECGuiClient
|
532
|
+
([`b7795b4`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b7795b4d0ae21641bead0f1f1541f920ae95702a))
|
533
|
+
|
534
|
+
- **image_widget**: Old BECImageWidget removed
|
535
|
+
([`de10609`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/de10609b3c714b80a14bf6940e86763d0779402b))
|
536
|
+
|
537
|
+
- **launch_window**: Remove cleanup method
|
538
|
+
([`9a940bb`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/9a940bb8d58f37d1fc24ce4fdb38282d02349efb))
|
539
|
+
|
540
|
+
- **launcher,main_window**: Launcher window moved to inherit from BECMainWindow
|
541
|
+
([`99383b7`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/99383b77150ca7c74c19c899a0e6a7879b770376))
|
542
|
+
|
543
|
+
- **motor_map_widget**: Becmotormapwidget removed
|
544
|
+
([`f878e87`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/f878e87ad545e0fe68292030d9f06dee693e0da2))
|
545
|
+
|
546
|
+
- **multi_waveform_widget**: Becmultiwaveformwidget removed
|
547
|
+
([`7c31bbd`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/7c31bbd9c2e0230e54f4dca0f1e5c4d2cd6e7674))
|
548
|
+
|
549
|
+
- **plots**: Plot_next_gen module renamed to plots
|
550
|
+
([`9fb9a1c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/9fb9a1cfd2a94efd5e2a9fcbaa05d65c7b7105ee))
|
551
|
+
|
552
|
+
- **plots**: Waveform and image rpc api review
|
553
|
+
([`a3de1f0`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/a3de1f0a31dfb9048493fb61983167960577fb97))
|
554
|
+
|
555
|
+
- **rpc_reference**: Refactor rpc reference tracking
|
556
|
+
([`bd5e251`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/bd5e251ee9396633f419732e43411821726250aa))
|
557
|
+
|
558
|
+
- **rpc_server**: Add type hint for _get_becwidget_ancestor method parameter; minor cleanup of
|
559
|
+
imports
|
560
|
+
([`cb91ebc`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/cb91ebc0c34ae29b6b293996199f4624d36a3cc0))
|
561
|
+
|
562
|
+
- **rpc_server**: Add type hints and docstrings for heartbeat and registry update methods
|
563
|
+
([`08168f2`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/08168f28d3c5375b9ace9df0d7aa31e33adb97e9))
|
564
|
+
|
565
|
+
- **rpc_server**: Cli_server renamed to rpc_server
|
566
|
+
([`6082e7a`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6082e7a6907c2fe15e4e5ebca857fbf8f222d192))
|
567
|
+
|
568
|
+
- **tests**: Create dummy scan item moved to client_mocks.py
|
569
|
+
([`0dd9617`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/0dd9617e6e5ea756edc344c324451480a62bdae2))
|
570
|
+
|
571
|
+
- **ui_loader**: Remove unnecessary parent_id handling
|
572
|
+
([`d60cf6c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/d60cf6c843ecc135a6065d1e913f9f6abb1a483d))
|
573
|
+
|
574
|
+
- **ui_loader**: Remove unused import
|
575
|
+
([`a6ce312`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/a6ce312f7c60c2babcc37127f7c69d54c1b32573))
|
576
|
+
|
577
|
+
- **utils**: Qt_utils moved to utils
|
578
|
+
([`be552d3`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/be552d3ece97e7f472c4534b4af8438b95c518aa))
|
579
|
+
|
580
|
+
- **waveform_widget**: Removed and replaced by Waveform
|
581
|
+
([`96cff49`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/96cff49cd4453fa70d8802653d5afe62d71c6b2a))
|
582
|
+
|
583
|
+
### Testing
|
584
|
+
|
585
|
+
- Add function scoped rpc_widgets e2e test; closes #510
|
586
|
+
([`36dc174`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/36dc174bfedf212532658b84f8ab64971863d292))
|
587
|
+
|
588
|
+
- Add IPython client GUI object test module with tab completion
|
589
|
+
([`e3d0d55`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/e3d0d5566c50f6a80ba861d4e3e0789f17785a46))
|
590
|
+
|
591
|
+
- Add tests for name creation of custom curves, and object name handling
|
592
|
+
([`99d7623`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/99d76236cac63042f0d7d1db580dde8aa7cfd214))
|
593
|
+
|
594
|
+
- Disable test_bec_dock_rpc_e2e module, issue to fix this created #450
|
595
|
+
([`17f2dda`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/17f2dda977025bc422e26289293d3fcbd224a6f6))
|
596
|
+
|
597
|
+
- Fix rpc widgets e2e test
|
598
|
+
([`113938e`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/113938e71a6dacba37164069e2c795cc9db168d4))
|
599
|
+
|
600
|
+
- Fix tests for launcher close / hide behavior
|
601
|
+
([`23fee22`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/23fee22ef8f2c22f191dfc1da57b921484ede6cd))
|
602
|
+
|
603
|
+
- Fix tests for namespace updates
|
604
|
+
([`f3d3c94`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/f3d3c9425d3ed619b978427cea782137beedfb59))
|
605
|
+
|
606
|
+
- Qapp must shutdown cli server before checking for leaked QTimer
|
607
|
+
([`d066051`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/d06605122e5c2e225650b44ebfc047daa5aa6f55))
|
608
|
+
|
609
|
+
- **bec_connector**: Becconnector requires a QObject
|
610
|
+
([`23bdd95`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/23bdd95d8c6311d989cb3b807921e3fb2a3d62a0))
|
611
|
+
|
612
|
+
- **device_signal_input**: Fix init of device input widget
|
613
|
+
([`31c3b64`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/31c3b64d7b157e5e26d44e5288afabef343c5e13))
|
614
|
+
|
615
|
+
- **e2e**: E2e tests adjusted for new plotting framework
|
616
|
+
([`378398a`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/378398a29b34e43f0cca0a49b08adfcb144e4777))
|
617
|
+
|
618
|
+
- **generate_cli**: Fix reference output
|
619
|
+
([`a8adb06`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/a8adb064f5011e1708ee2dc0090326f533407260))
|
620
|
+
|
621
|
+
- **launch_window**: Add test for launching UI file that raises ValueError for QMainWindow
|
622
|
+
([`33a8a76`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/33a8a767f31a57bcfda624d503ed39e0e4578dcb))
|
623
|
+
|
624
|
+
- **launch_window**: Add unit tests for LaunchWindow initialization and custom UI file launching
|
625
|
+
([`d5e422c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/d5e422c7fc0e169c35d7f206937e8c7902fbf123))
|
626
|
+
|
627
|
+
- **launch_window**: Tests for default and plugin auto updates
|
628
|
+
([`e10f5ec`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/e10f5ec088c6937beb26ec468f510a209c7cc782))
|
629
|
+
|
630
|
+
- **plot_base**: Test for plot base re-enabled
|
631
|
+
([`b51d637`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b51d637c5ff3418420801cd9b457fc073fa98adc))
|
632
|
+
|
633
|
+
- **plot_indicators**: Tests adapted to not be dependent on BECWaveformWidget
|
634
|
+
([`360fe4c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/360fe4c9c3b5c3c1f26e97cb795aef8f4aba3b46))
|
635
|
+
|
636
|
+
- **setting_dialog**: Test that settings reject calls cleanup
|
637
|
+
([`8914f1d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8914f1d50600cab588a6cbecb08d85bfd1a715a1))
|
638
|
+
|
639
|
+
- **unit_tests**: Unit tests adjusted to use a modern plotting framework instead of BECFigure
|
640
|
+
([`6ade934`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6ade93435632fa66fb012d92f9b8b548d96e718f))
|
641
|
+
|
642
|
+
|
4
643
|
## v1.25.1 (2025-03-24)
|
5
644
|
|
6
645
|
### Bug Fixes
|