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
@@ -1,91 +0,0 @@
|
|
1
|
-
import os
|
2
|
-
|
3
|
-
from qtpy.QtWidgets import QVBoxLayout
|
4
|
-
|
5
|
-
from bec_widgets.qt_utils.error_popups import SafeSlot as Slot
|
6
|
-
from bec_widgets.qt_utils.settings_dialog import SettingWidget
|
7
|
-
from bec_widgets.utils import UILoader
|
8
|
-
from bec_widgets.utils.widget_io import WidgetIO
|
9
|
-
|
10
|
-
|
11
|
-
class AxisSettings(SettingWidget):
|
12
|
-
def __init__(self, parent=None, *args, **kwargs):
|
13
|
-
super().__init__(parent=parent, *args, **kwargs)
|
14
|
-
|
15
|
-
current_path = os.path.dirname(__file__)
|
16
|
-
self.ui = UILoader().load_ui(os.path.join(current_path, "axis_settings.ui"), self)
|
17
|
-
|
18
|
-
self.layout = QVBoxLayout(self)
|
19
|
-
self.layout.addWidget(self.ui)
|
20
|
-
|
21
|
-
# Hardcoded values for best appearance
|
22
|
-
self.setMinimumHeight(280)
|
23
|
-
self.setMaximumHeight(280)
|
24
|
-
self.resize(380, 280)
|
25
|
-
|
26
|
-
@Slot(dict)
|
27
|
-
def display_current_settings(self, axis_config: dict):
|
28
|
-
|
29
|
-
if axis_config == {}:
|
30
|
-
return
|
31
|
-
|
32
|
-
# Top Box
|
33
|
-
WidgetIO.set_value(self.ui.plot_title, axis_config["title"])
|
34
|
-
self.ui.switch_outer_axes.checked = axis_config["outer_axes"]
|
35
|
-
|
36
|
-
# X Axis Box
|
37
|
-
WidgetIO.set_value(self.ui.x_label, axis_config["x_label"])
|
38
|
-
WidgetIO.set_value(self.ui.x_scale, axis_config["x_scale"])
|
39
|
-
WidgetIO.set_value(self.ui.x_grid, axis_config["x_grid"])
|
40
|
-
if axis_config["x_lim"] is not None:
|
41
|
-
WidgetIO.check_and_adjust_limits(self.ui.x_min, axis_config["x_lim"][0])
|
42
|
-
WidgetIO.check_and_adjust_limits(self.ui.x_max, axis_config["x_lim"][1])
|
43
|
-
WidgetIO.set_value(self.ui.x_min, axis_config["x_lim"][0])
|
44
|
-
WidgetIO.set_value(self.ui.x_max, axis_config["x_lim"][1])
|
45
|
-
if axis_config["x_lim"] is None:
|
46
|
-
x_range = self.target_widget.fig.widget_list[0].plot_item.viewRange()[0]
|
47
|
-
WidgetIO.set_value(self.ui.x_min, x_range[0])
|
48
|
-
WidgetIO.set_value(self.ui.x_max, x_range[1])
|
49
|
-
|
50
|
-
# Y Axis Box
|
51
|
-
WidgetIO.set_value(self.ui.y_label, axis_config["y_label"])
|
52
|
-
WidgetIO.set_value(self.ui.y_scale, axis_config["y_scale"])
|
53
|
-
WidgetIO.set_value(self.ui.y_grid, axis_config["y_grid"])
|
54
|
-
if axis_config["y_lim"] is not None:
|
55
|
-
WidgetIO.check_and_adjust_limits(self.ui.y_min, axis_config["y_lim"][0])
|
56
|
-
WidgetIO.check_and_adjust_limits(self.ui.y_max, axis_config["y_lim"][1])
|
57
|
-
WidgetIO.set_value(self.ui.y_min, axis_config["y_lim"][0])
|
58
|
-
WidgetIO.set_value(self.ui.y_max, axis_config["y_lim"][1])
|
59
|
-
if axis_config["y_lim"] is None:
|
60
|
-
y_range = self.target_widget.fig.widget_list[0].plot_item.viewRange()[1]
|
61
|
-
WidgetIO.set_value(self.ui.y_min, y_range[0])
|
62
|
-
WidgetIO.set_value(self.ui.y_max, y_range[1])
|
63
|
-
|
64
|
-
@Slot()
|
65
|
-
def accept_changes(self):
|
66
|
-
title = WidgetIO.get_value(self.ui.plot_title)
|
67
|
-
outer_axes = self.ui.switch_outer_axes.checked
|
68
|
-
|
69
|
-
# X Axis
|
70
|
-
x_label = WidgetIO.get_value(self.ui.x_label)
|
71
|
-
x_scale = self.ui.x_scale.currentText()
|
72
|
-
x_grid = WidgetIO.get_value(self.ui.x_grid)
|
73
|
-
x_lim = (WidgetIO.get_value(self.ui.x_min), WidgetIO.get_value(self.ui.x_max))
|
74
|
-
|
75
|
-
# Y Axis
|
76
|
-
y_label = WidgetIO.get_value(self.ui.y_label)
|
77
|
-
y_scale = self.ui.y_scale.currentText()
|
78
|
-
y_grid = WidgetIO.get_value(self.ui.y_grid)
|
79
|
-
y_lim = (WidgetIO.get_value(self.ui.y_min), WidgetIO.get_value(self.ui.y_max))
|
80
|
-
|
81
|
-
self.target_widget.set(
|
82
|
-
title=title,
|
83
|
-
x_label=x_label,
|
84
|
-
x_scale=x_scale,
|
85
|
-
x_lim=x_lim,
|
86
|
-
y_label=y_label,
|
87
|
-
y_scale=y_scale,
|
88
|
-
y_lim=y_lim,
|
89
|
-
)
|
90
|
-
self.target_widget.set_grid(x_grid, y_grid)
|
91
|
-
self.target_widget.set_outer_axes(outer_axes)
|
@@ -1,256 +0,0 @@
|
|
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>427</width>
|
10
|
-
<height>270</height>
|
11
|
-
</rect>
|
12
|
-
</property>
|
13
|
-
<property name="minimumSize">
|
14
|
-
<size>
|
15
|
-
<width>0</width>
|
16
|
-
<height>250</height>
|
17
|
-
</size>
|
18
|
-
</property>
|
19
|
-
<property name="maximumSize">
|
20
|
-
<size>
|
21
|
-
<width>16777215</width>
|
22
|
-
<height>278</height>
|
23
|
-
</size>
|
24
|
-
</property>
|
25
|
-
<property name="windowTitle">
|
26
|
-
<string>Form</string>
|
27
|
-
</property>
|
28
|
-
<layout class="QGridLayout" name="gridLayout">
|
29
|
-
<item row="0" column="0" colspan="2">
|
30
|
-
<layout class="QHBoxLayout" name="horizontalLayout">
|
31
|
-
<item>
|
32
|
-
<widget class="QLabel" name="plot_title_label">
|
33
|
-
<property name="text">
|
34
|
-
<string>Plot Title</string>
|
35
|
-
</property>
|
36
|
-
</widget>
|
37
|
-
</item>
|
38
|
-
<item>
|
39
|
-
<widget class="QLineEdit" name="plot_title"/>
|
40
|
-
</item>
|
41
|
-
</layout>
|
42
|
-
</item>
|
43
|
-
<item row="1" column="0">
|
44
|
-
<widget class="QLabel" name="label_outer_axes">
|
45
|
-
<property name="text">
|
46
|
-
<string>Outer Axes</string>
|
47
|
-
</property>
|
48
|
-
</widget>
|
49
|
-
</item>
|
50
|
-
<item row="2" column="1">
|
51
|
-
<widget class="QGroupBox" name="y_axis_box">
|
52
|
-
<property name="title">
|
53
|
-
<string>Y Axis</string>
|
54
|
-
</property>
|
55
|
-
<layout class="QGridLayout" name="gridLayout_5">
|
56
|
-
<item row="3" column="2">
|
57
|
-
<widget class="QComboBox" name="y_scale">
|
58
|
-
<item>
|
59
|
-
<property name="text">
|
60
|
-
<string>linear</string>
|
61
|
-
</property>
|
62
|
-
</item>
|
63
|
-
<item>
|
64
|
-
<property name="text">
|
65
|
-
<string>log</string>
|
66
|
-
</property>
|
67
|
-
</item>
|
68
|
-
</widget>
|
69
|
-
</item>
|
70
|
-
<item row="2" column="2">
|
71
|
-
<widget class="QDoubleSpinBox" name="y_max">
|
72
|
-
<property name="alignment">
|
73
|
-
<set>Qt::AlignmentFlag::AlignCenter</set>
|
74
|
-
</property>
|
75
|
-
<property name="minimum">
|
76
|
-
<double>-9999.000000000000000</double>
|
77
|
-
</property>
|
78
|
-
<property name="maximum">
|
79
|
-
<double>9999.000000000000000</double>
|
80
|
-
</property>
|
81
|
-
</widget>
|
82
|
-
</item>
|
83
|
-
<item row="1" column="0" colspan="2">
|
84
|
-
<widget class="QLabel" name="y_min_label">
|
85
|
-
<property name="text">
|
86
|
-
<string>Min</string>
|
87
|
-
</property>
|
88
|
-
</widget>
|
89
|
-
</item>
|
90
|
-
<item row="1" column="2">
|
91
|
-
<widget class="QDoubleSpinBox" name="y_min">
|
92
|
-
<property name="alignment">
|
93
|
-
<set>Qt::AlignmentFlag::AlignCenter</set>
|
94
|
-
</property>
|
95
|
-
<property name="minimum">
|
96
|
-
<double>-9999.000000000000000</double>
|
97
|
-
</property>
|
98
|
-
<property name="maximum">
|
99
|
-
<double>9999.000000000000000</double>
|
100
|
-
</property>
|
101
|
-
</widget>
|
102
|
-
</item>
|
103
|
-
<item row="0" column="2">
|
104
|
-
<widget class="QLineEdit" name="y_label"/>
|
105
|
-
</item>
|
106
|
-
<item row="3" column="0">
|
107
|
-
<widget class="QLabel" name="y_scale_label">
|
108
|
-
<property name="text">
|
109
|
-
<string>Scale</string>
|
110
|
-
</property>
|
111
|
-
</widget>
|
112
|
-
</item>
|
113
|
-
<item row="0" column="0">
|
114
|
-
<widget class="QLabel" name="y_label_label">
|
115
|
-
<property name="text">
|
116
|
-
<string>Label</string>
|
117
|
-
</property>
|
118
|
-
</widget>
|
119
|
-
</item>
|
120
|
-
<item row="2" column="0">
|
121
|
-
<widget class="QLabel" name="y_max_label">
|
122
|
-
<property name="text">
|
123
|
-
<string>Max</string>
|
124
|
-
</property>
|
125
|
-
</widget>
|
126
|
-
</item>
|
127
|
-
<item row="4" column="2">
|
128
|
-
<widget class="QCheckBox" name="y_grid">
|
129
|
-
<property name="text">
|
130
|
-
<string/>
|
131
|
-
</property>
|
132
|
-
</widget>
|
133
|
-
</item>
|
134
|
-
<item row="4" column="0">
|
135
|
-
<widget class="QLabel" name="y_grid_label">
|
136
|
-
<property name="text">
|
137
|
-
<string>Grid</string>
|
138
|
-
</property>
|
139
|
-
</widget>
|
140
|
-
</item>
|
141
|
-
</layout>
|
142
|
-
</widget>
|
143
|
-
</item>
|
144
|
-
<item row="2" column="0">
|
145
|
-
<widget class="QGroupBox" name="x_axis_box">
|
146
|
-
<property name="title">
|
147
|
-
<string>X Axis</string>
|
148
|
-
</property>
|
149
|
-
<layout class="QGridLayout" name="gridLayout_4">
|
150
|
-
<item row="3" column="0">
|
151
|
-
<widget class="QLabel" name="x_scale_label">
|
152
|
-
<property name="text">
|
153
|
-
<string>Scale</string>
|
154
|
-
</property>
|
155
|
-
</widget>
|
156
|
-
</item>
|
157
|
-
<item row="1" column="2">
|
158
|
-
<widget class="QDoubleSpinBox" name="x_min">
|
159
|
-
<property name="alignment">
|
160
|
-
<set>Qt::AlignmentFlag::AlignCenter</set>
|
161
|
-
</property>
|
162
|
-
<property name="minimum">
|
163
|
-
<double>-9999.000000000000000</double>
|
164
|
-
</property>
|
165
|
-
<property name="maximum">
|
166
|
-
<double>9999.000000000000000</double>
|
167
|
-
</property>
|
168
|
-
</widget>
|
169
|
-
</item>
|
170
|
-
<item row="1" column="0" colspan="2">
|
171
|
-
<widget class="QLabel" name="x_min_label">
|
172
|
-
<property name="text">
|
173
|
-
<string>Min</string>
|
174
|
-
</property>
|
175
|
-
</widget>
|
176
|
-
</item>
|
177
|
-
<item row="2" column="2">
|
178
|
-
<widget class="QDoubleSpinBox" name="x_max">
|
179
|
-
<property name="alignment">
|
180
|
-
<set>Qt::AlignmentFlag::AlignCenter</set>
|
181
|
-
</property>
|
182
|
-
<property name="minimum">
|
183
|
-
<double>-9999.000000000000000</double>
|
184
|
-
</property>
|
185
|
-
<property name="maximum">
|
186
|
-
<double>9999.000000000000000</double>
|
187
|
-
</property>
|
188
|
-
</widget>
|
189
|
-
</item>
|
190
|
-
<item row="3" column="2">
|
191
|
-
<widget class="QComboBox" name="x_scale">
|
192
|
-
<item>
|
193
|
-
<property name="text">
|
194
|
-
<string>linear</string>
|
195
|
-
</property>
|
196
|
-
</item>
|
197
|
-
<item>
|
198
|
-
<property name="text">
|
199
|
-
<string>log</string>
|
200
|
-
</property>
|
201
|
-
</item>
|
202
|
-
</widget>
|
203
|
-
</item>
|
204
|
-
<item row="2" column="0">
|
205
|
-
<widget class="QLabel" name="x_max_label">
|
206
|
-
<property name="text">
|
207
|
-
<string>Max</string>
|
208
|
-
</property>
|
209
|
-
</widget>
|
210
|
-
</item>
|
211
|
-
<item row="0" column="2">
|
212
|
-
<widget class="QLineEdit" name="x_label"/>
|
213
|
-
</item>
|
214
|
-
<item row="0" column="0">
|
215
|
-
<widget class="QLabel" name="x_label_label">
|
216
|
-
<property name="text">
|
217
|
-
<string>Label</string>
|
218
|
-
</property>
|
219
|
-
</widget>
|
220
|
-
</item>
|
221
|
-
<item row="4" column="2">
|
222
|
-
<widget class="QCheckBox" name="x_grid">
|
223
|
-
<property name="text">
|
224
|
-
<string/>
|
225
|
-
</property>
|
226
|
-
</widget>
|
227
|
-
</item>
|
228
|
-
<item row="4" column="0">
|
229
|
-
<widget class="QLabel" name="x_grid_label">
|
230
|
-
<property name="text">
|
231
|
-
<string>Grid</string>
|
232
|
-
</property>
|
233
|
-
</widget>
|
234
|
-
</item>
|
235
|
-
</layout>
|
236
|
-
</widget>
|
237
|
-
</item>
|
238
|
-
<item row="1" column="1">
|
239
|
-
<widget class="ToggleSwitch" name="switch_outer_axes">
|
240
|
-
<property name="checked" stdset="0">
|
241
|
-
<bool>false</bool>
|
242
|
-
</property>
|
243
|
-
</widget>
|
244
|
-
</item>
|
245
|
-
</layout>
|
246
|
-
</widget>
|
247
|
-
<customwidgets>
|
248
|
-
<customwidget>
|
249
|
-
<class>ToggleSwitch</class>
|
250
|
-
<extends>QWidget</extends>
|
251
|
-
<header>toggle_switch</header>
|
252
|
-
</customwidget>
|
253
|
-
</customwidgets>
|
254
|
-
<resources/>
|
255
|
-
<connections/>
|
256
|
-
</ui>
|