bec-widgets 0.54.0__py3-none-any.whl → 0.56.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.
- .gitlab-ci.yml +113 -8
- CHANGELOG.md +32 -21
- PKG-INFO +3 -1
- bec_widgets/cli/client.py +252 -0
- bec_widgets/cli/generate_cli.py +4 -1
- bec_widgets/cli/rpc_wigdet_handler.py +2 -1
- bec_widgets/examples/jupyter_console/jupyter_console_window.py +29 -37
- bec_widgets/examples/motor_movement/motor_control_compilations.py +1 -7
- bec_widgets/utils/__init__.py +1 -0
- bec_widgets/utils/crosshair.py +13 -9
- bec_widgets/utils/ui_loader.py +58 -0
- bec_widgets/widgets/__init__.py +1 -0
- bec_widgets/widgets/motor_control/motor_table/motor_table.py +44 -43
- bec_widgets/widgets/motor_control/movement_absolute/movement_absolute.py +25 -23
- bec_widgets/widgets/motor_control/movement_relative/movement_relative.py +51 -48
- bec_widgets/widgets/spiral_progress_bar/__init__.py +1 -0
- bec_widgets/widgets/spiral_progress_bar/ring.py +184 -0
- bec_widgets/widgets/spiral_progress_bar/spiral_progress_bar.py +594 -0
- {bec_widgets-0.54.0.dist-info → bec_widgets-0.56.0.dist-info}/METADATA +3 -1
- {bec_widgets-0.54.0.dist-info → bec_widgets-0.56.0.dist-info}/RECORD +29 -46
- docs/user/apps.md +1 -26
- pyproject.toml +2 -1
- tests/end-2-end/test_bec_dock_rpc_e2e.py +81 -0
- tests/unit_tests/test_client_utils.py +2 -2
- tests/unit_tests/test_crosshair.py +5 -5
- tests/unit_tests/test_motor_control.py +49 -45
- tests/unit_tests/test_spiral_progress_bar.py +338 -0
- bec_widgets/examples/eiger_plot/__init__.py +0 -0
- bec_widgets/examples/eiger_plot/eiger_plot.py +0 -307
- bec_widgets/examples/eiger_plot/eiger_plot.ui +0 -207
- bec_widgets/examples/mca_readout/__init__.py +0 -0
- bec_widgets/examples/mca_readout/mca_plot.py +0 -159
- bec_widgets/examples/mca_readout/mca_sim.py +0 -28
- bec_widgets/examples/modular_app/___init__.py +0 -0
- bec_widgets/examples/modular_app/modular.ui +0 -92
- bec_widgets/examples/modular_app/modular_app.py +0 -197
- bec_widgets/examples/motor_movement/config_example.yaml +0 -17
- bec_widgets/examples/motor_movement/csax_bec_config.yaml +0 -10
- bec_widgets/examples/motor_movement/csaxs_config.yaml +0 -17
- bec_widgets/examples/motor_movement/motor_example.py +0 -1344
- bec_widgets/examples/stream_plot/__init__.py +0 -0
- bec_widgets/examples/stream_plot/line_plot.ui +0 -155
- bec_widgets/examples/stream_plot/stream_plot.py +0 -337
- docs/user/apps/modular_app.md +0 -6
- docs/user/apps/motor_app.md +0 -34
- docs/user/apps/motor_app_10fps.gif +0 -0
- docs/user/apps/plot_app.md +0 -6
- tests/unit_tests/test_eiger_plot.py +0 -115
- tests/unit_tests/test_stream_plot.py +0 -158
- {bec_widgets-0.54.0.dist-info → bec_widgets-0.56.0.dist-info}/WHEEL +0 -0
- {bec_widgets-0.54.0.dist-info → bec_widgets-0.56.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,17 +0,0 @@
|
|
1
|
-
selected_motors:
|
2
|
-
motor_x: "samx"
|
3
|
-
motor_y: "samy"
|
4
|
-
|
5
|
-
plot_motors:
|
6
|
-
max_points: 1000
|
7
|
-
num_dim_points: 100
|
8
|
-
scatter_size: 5
|
9
|
-
precision: 3
|
10
|
-
mode_lock: False # "Individual" or "Start/Stop". False to unlock
|
11
|
-
extra_columns:
|
12
|
-
- sample name: "sample 1"
|
13
|
-
- step_x [mu]: 25
|
14
|
-
- step_y [mu]: 25
|
15
|
-
- exp_time [s]: 1
|
16
|
-
- start: 1
|
17
|
-
- tilt [deg]: 0
|
@@ -1,17 +0,0 @@
|
|
1
|
-
selected_motors:
|
2
|
-
motor_x: "samx"
|
3
|
-
motor_y: "samy"
|
4
|
-
|
5
|
-
plot_motors:
|
6
|
-
max_points: 1000
|
7
|
-
num_dim_points: 100
|
8
|
-
scatter_size: 5
|
9
|
-
precision: 3
|
10
|
-
mode_lock: Start/Stop # "Individual" or "Start/Stop"
|
11
|
-
extra_columns:
|
12
|
-
- sample name: "sample 1"
|
13
|
-
- step_x [mu]: 25
|
14
|
-
- step_y [mu]: 25
|
15
|
-
- exp_time [s]: 1
|
16
|
-
- start: 1
|
17
|
-
- tilt [deg]: 0
|