bec-widgets 0.83.1__py3-none-any.whl → 0.85.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- CHANGELOG.md +40 -42
- PKG-INFO +1 -1
- bec_widgets/cli/client.py +61 -8
- bec_widgets/examples/jupyter_console/jupyter_console_window.py +105 -57
- bec_widgets/utils/bec_dispatcher.py +5 -2
- bec_widgets/widgets/color_map_selector/__init__.py +0 -0
- bec_widgets/widgets/color_map_selector/assets/color_map_selector_icon.png +0 -0
- bec_widgets/widgets/color_map_selector/color_map_selector.py +111 -0
- bec_widgets/widgets/color_map_selector/color_map_selector.pyproject +1 -0
- bec_widgets/widgets/color_map_selector/color_map_selector_plugin.py +57 -0
- bec_widgets/widgets/color_map_selector/register_color_map_selector.py +17 -0
- bec_widgets/widgets/figure/figure.py +21 -114
- bec_widgets/widgets/figure/plots/waveform/waveform.py +651 -94
- bec_widgets/widgets/figure/plots/waveform/waveform_curve.py +9 -2
- {bec_widgets-0.83.1.dist-info → bec_widgets-0.85.0.dist-info}/METADATA +1 -1
- {bec_widgets-0.83.1.dist-info → bec_widgets-0.85.0.dist-info}/RECORD +24 -18
- pyproject.toml +1 -1
- tests/unit_tests/client_mocks.py +13 -4
- tests/unit_tests/test_color_map_selector.py +43 -0
- tests/unit_tests/test_device_input_widgets.py +2 -0
- tests/unit_tests/test_waveform1d.py +202 -23
- bec_widgets/examples/jupyter_console/jupyter_console_window.ui +0 -54
- {bec_widgets-0.83.1.dist-info → bec_widgets-0.85.0.dist-info}/WHEEL +0 -0
- {bec_widgets-0.83.1.dist-info → bec_widgets-0.85.0.dist-info}/entry_points.txt +0 -0
- {bec_widgets-0.83.1.dist-info → bec_widgets-0.85.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,54 +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>2104</width>
|
10
|
-
<height>966</height>
|
11
|
-
</rect>
|
12
|
-
</property>
|
13
|
-
<property name="windowTitle">
|
14
|
-
<string>Plotting Console</string>
|
15
|
-
</property>
|
16
|
-
<layout class="QVBoxLayout" name="verticalLayout_4">
|
17
|
-
<item>
|
18
|
-
<widget class="QSplitter" name="splitter">
|
19
|
-
<property name="orientation">
|
20
|
-
<enum>Qt::Horizontal</enum>
|
21
|
-
</property>
|
22
|
-
<widget class="QTabWidget" name="tabWidget">
|
23
|
-
<property name="currentIndex">
|
24
|
-
<number>0</number>
|
25
|
-
</property>
|
26
|
-
<widget class="QWidget" name="tab_1">
|
27
|
-
<attribute name="title">
|
28
|
-
<string>BECDock</string>
|
29
|
-
</attribute>
|
30
|
-
<layout class="QVBoxLayout" name="verticalLayout">
|
31
|
-
<item>
|
32
|
-
<widget class="QWidget" name="dock_placeholder" native="true"/>
|
33
|
-
</item>
|
34
|
-
</layout>
|
35
|
-
</widget>
|
36
|
-
<widget class="QWidget" name="tab_2">
|
37
|
-
<attribute name="title">
|
38
|
-
<string>BECFigure</string>
|
39
|
-
</attribute>
|
40
|
-
<layout class="QVBoxLayout" name="verticalLayout_3">
|
41
|
-
<item>
|
42
|
-
<widget class="QWidget" name="glw" native="true"/>
|
43
|
-
</item>
|
44
|
-
</layout>
|
45
|
-
</widget>
|
46
|
-
</widget>
|
47
|
-
<widget class="QWidget" name="widget_console" native="true"/>
|
48
|
-
</widget>
|
49
|
-
</item>
|
50
|
-
</layout>
|
51
|
-
</widget>
|
52
|
-
<resources/>
|
53
|
-
<connections/>
|
54
|
-
</ui>
|
File without changes
|
File without changes
|
File without changes
|