pymodaq 3.6.13__py3-none-any.whl → 4.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.
Potentially problematic release.
This version of pymodaq might be problematic. Click here for more details.
- pymodaq/__init__.py +13 -6
- pymodaq/control_modules/__init__.py +0 -7
- pymodaq/control_modules/daq_move.py +965 -2
- pymodaq/control_modules/daq_move_ui.py +319 -0
- pymodaq/control_modules/daq_viewer.py +1573 -3
- pymodaq/control_modules/daq_viewer_ui.py +393 -0
- pymodaq/control_modules/mocks.py +51 -0
- pymodaq/control_modules/move_utility_classes.py +709 -8
- pymodaq/control_modules/utils.py +256 -0
- pymodaq/control_modules/viewer_utility_classes.py +663 -6
- pymodaq/daq_utils.py +89 -0
- pymodaq/dashboard.py +91 -72
- pymodaq/examples/custom_app.py +12 -11
- pymodaq/examples/custom_viewer.py +10 -10
- pymodaq/examples/function_plotter.py +16 -13
- pymodaq/examples/nonlinearscanner.py +8 -6
- pymodaq/examples/parameter_ex.py +7 -7
- pymodaq/examples/preset_MockCamera.xml +1 -0
- pymodaq/extensions/__init__.py +16 -0
- pymodaq/extensions/console.py +76 -0
- pymodaq/{daq_logger.py → extensions/daq_logger.py} +115 -65
- pymodaq/extensions/daq_scan.py +1339 -0
- pymodaq/extensions/daq_scan_ui.py +240 -0
- pymodaq/extensions/h5browser.py +23 -0
- pymodaq/{pid → extensions/pid}/__init__.py +4 -2
- pymodaq/{pid → extensions/pid}/daq_move_PID.py +2 -2
- pymodaq/{pid → extensions/pid}/pid_controller.py +48 -36
- pymodaq/{pid → extensions/pid}/utils.py +52 -6
- pymodaq/extensions/utils.py +40 -0
- pymodaq/post_treatment/__init__.py +6 -0
- pymodaq/{daq_analysis → post_treatment/daq_analysis}/daq_analysis_main.py +17 -17
- pymodaq/{daq_measurement → post_treatment/daq_measurement}/daq_measurement_main.py +8 -14
- pymodaq/post_treatment/load_and_plot.py +219 -0
- pymodaq/post_treatment/process_to_scalar.py +263 -0
- pymodaq/resources/QtDesigner_Ressources/Icon_Library/run_all.png +0 -0
- pymodaq/resources/QtDesigner_Ressources/Icon_Library/stop_all.png +0 -0
- pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.bat +1 -1
- pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.qrc +1 -0
- pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources_rc.py +109784 -109173
- pymodaq/resources/QtDesigner_Ressources/icons.svg +142 -0
- pymodaq/resources/VERSION +1 -1
- pymodaq/resources/config_template.toml +32 -13
- pymodaq/resources/preset_default.xml +1 -1
- pymodaq/{daq_utils → utils}/Tuto innosetup/script_full_setup.iss +1 -1
- pymodaq/utils/__init__.py +0 -29
- pymodaq/utils/abstract/__init__.py +48 -0
- pymodaq/{daq_utils → utils}/abstract/logger.py +7 -3
- pymodaq/utils/array_manipulation.py +379 -8
- pymodaq/{daq_utils → utils}/calibration_camera.py +6 -6
- pymodaq/{daq_utils → utils}/chrono_timer.py +1 -1
- pymodaq/utils/config.py +448 -0
- pymodaq/utils/conftests.py +5 -0
- pymodaq/utils/daq_utils.py +828 -8
- pymodaq/utils/data.py +1873 -7
- pymodaq/{daq_utils → utils}/db/db_logger/db_logger.py +86 -47
- pymodaq/{daq_utils → utils}/db/db_logger/db_logger_models.py +31 -10
- pymodaq/{daq_utils → utils}/enums.py +12 -7
- pymodaq/utils/exceptions.py +37 -0
- pymodaq/utils/factory.py +82 -0
- pymodaq/{daq_utils → utils}/gui_utils/__init__.py +1 -1
- pymodaq/utils/gui_utils/custom_app.py +129 -0
- pymodaq/utils/gui_utils/file_io.py +66 -0
- pymodaq/{daq_utils → utils}/gui_utils/layout.py +2 -2
- pymodaq/{daq_utils → utils}/gui_utils/utils.py +13 -3
- pymodaq/{daq_utils → utils}/gui_utils/widgets/__init__.py +2 -2
- pymodaq/utils/gui_utils/widgets/label.py +24 -0
- pymodaq/{daq_utils → utils}/gui_utils/widgets/lcd.py +12 -7
- pymodaq/{daq_utils → utils}/gui_utils/widgets/push.py +66 -2
- pymodaq/{daq_utils → utils}/gui_utils/widgets/qled.py +6 -4
- pymodaq/utils/gui_utils/widgets/spinbox.py +24 -0
- pymodaq/{daq_utils → utils}/gui_utils/widgets/table.py +2 -2
- pymodaq/utils/h5modules/__init__.py +1 -0
- pymodaq/{daq_utils/h5backend.py → utils/h5modules/backends.py} +200 -112
- pymodaq/utils/h5modules/browsing.py +683 -0
- pymodaq/utils/h5modules/data_saving.py +839 -0
- pymodaq/utils/h5modules/h5logging.py +110 -0
- pymodaq/utils/h5modules/module_saving.py +350 -0
- pymodaq/utils/h5modules/saving.py +914 -0
- pymodaq/utils/h5modules/utils.py +85 -0
- pymodaq/utils/logger.py +64 -6
- pymodaq/utils/managers/action_manager.py +460 -0
- pymodaq/{daq_utils → utils}/managers/batchscan_manager.py +144 -112
- pymodaq/{daq_utils → utils}/managers/modules_manager.py +188 -114
- pymodaq/{daq_utils → utils}/managers/overshoot_manager.py +3 -3
- pymodaq/utils/managers/parameter_manager.py +110 -0
- pymodaq/{daq_utils → utils}/managers/preset_manager.py +17 -13
- pymodaq/{daq_utils → utils}/managers/preset_manager_utils.py +8 -7
- pymodaq/{daq_utils → utils}/managers/remote_manager.py +7 -6
- pymodaq/{daq_utils → utils}/managers/roi_manager.py +148 -57
- pymodaq/utils/math_utils.py +546 -10
- pymodaq/{daq_utils → utils}/messenger.py +5 -1
- pymodaq/utils/parameter/__init__.py +2 -15
- pymodaq/{daq_utils → utils}/parameter/ioxml.py +12 -6
- pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/__init__.py +1 -3
- pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/filedir.py +1 -1
- pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/itemselect.py +3 -0
- pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/led.py +1 -1
- pymodaq/utils/parameter/pymodaq_ptypes/pixmap.py +161 -0
- pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/slide.py +1 -1
- pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/table.py +1 -1
- pymodaq/utils/parameter/utils.py +206 -11
- pymodaq/utils/plotting/data_viewers/__init__.py +6 -0
- pymodaq/utils/plotting/data_viewers/viewer.py +393 -0
- pymodaq/utils/plotting/data_viewers/viewer0D.py +251 -0
- pymodaq/utils/plotting/data_viewers/viewer1D.py +574 -0
- pymodaq/{daq_utils → utils}/plotting/data_viewers/viewer1Dbasic.py +8 -3
- pymodaq/{daq_utils → utils}/plotting/data_viewers/viewer2D.py +292 -357
- pymodaq/{daq_utils → utils}/plotting/data_viewers/viewer2D_basic.py +58 -75
- pymodaq/utils/plotting/data_viewers/viewerND.py +738 -0
- pymodaq/{daq_utils → utils}/plotting/gant_chart.py +2 -2
- pymodaq/{daq_utils → utils}/plotting/items/axis_scaled.py +4 -2
- pymodaq/{daq_utils → utils}/plotting/items/image.py +8 -6
- pymodaq/utils/plotting/navigator.py +355 -0
- pymodaq/utils/plotting/scan_selector.py +480 -0
- pymodaq/utils/plotting/utils/axes_viewer.py +88 -0
- pymodaq/utils/plotting/utils/filter.py +538 -0
- pymodaq/utils/plotting/utils/lineout.py +224 -0
- pymodaq/{daq_utils → utils}/plotting/utils/plot_utils.py +196 -84
- pymodaq/{daq_utils → utils}/plotting/utils/signalND.py +21 -13
- pymodaq/utils/plotting/widgets.py +76 -0
- pymodaq/utils/scanner/__init__.py +10 -0
- pymodaq/utils/scanner/scan_factory.py +204 -0
- pymodaq/utils/scanner/scanner.py +271 -0
- pymodaq/utils/scanner/scanners/_1d_scanners.py +117 -0
- pymodaq/utils/scanner/scanners/_2d_scanners.py +293 -0
- pymodaq/utils/scanner/scanners/sequential.py +192 -0
- pymodaq/utils/scanner/scanners/tabular.py +294 -0
- pymodaq/utils/scanner/utils.py +83 -0
- pymodaq/utils/slicing.py +47 -0
- pymodaq/utils/svg/__init__.py +6 -0
- pymodaq/utils/svg/svg_renderer.py +20 -0
- pymodaq/utils/svg/svg_view.py +35 -0
- pymodaq/utils/svg/svg_viewer2D.py +51 -0
- pymodaq/{daq_utils → utils}/tcp_server_client.py +36 -37
- pymodaq/{daq_utils → utils}/tree_layout/tree_layout_main.py +50 -35
- pymodaq/utils/units.py +216 -0
- pymodaq-4.0.1.dist-info/METADATA +159 -0
- {pymodaq-3.6.13.dist-info → pymodaq-4.0.1.dist-info}/RECORD +167 -170
- {pymodaq-3.6.13.dist-info → pymodaq-4.0.1.dist-info}/WHEEL +1 -2
- pymodaq-4.0.1.dist-info/entry_points.txt +8 -0
- pymodaq/daq_move/daq_move_gui.py +0 -279
- pymodaq/daq_move/daq_move_gui.ui +0 -534
- pymodaq/daq_move/daq_move_main.py +0 -1042
- pymodaq/daq_move/process_from_QtDesigner_DAQ_Move_GUI.bat +0 -2
- pymodaq/daq_move/utility_classes.py +0 -686
- pymodaq/daq_scan.py +0 -2160
- pymodaq/daq_utils/array_manipulation.py +0 -386
- pymodaq/daq_utils/config.py +0 -273
- pymodaq/daq_utils/conftests.py +0 -7
- pymodaq/daq_utils/custom_parameter_tree.py +0 -9
- pymodaq/daq_utils/daq_enums.py +0 -133
- pymodaq/daq_utils/daq_utils.py +0 -1402
- pymodaq/daq_utils/exceptions.py +0 -71
- pymodaq/daq_utils/gui_utils/custom_app.py +0 -103
- pymodaq/daq_utils/gui_utils/file_io.py +0 -75
- pymodaq/daq_utils/gui_utils/widgets/spinbox.py +0 -9
- pymodaq/daq_utils/h5exporter_hyperspy.py +0 -115
- pymodaq/daq_utils/h5exporters.py +0 -242
- pymodaq/daq_utils/h5modules.py +0 -1559
- pymodaq/daq_utils/h5utils.py +0 -241
- pymodaq/daq_utils/managers/action_manager.py +0 -236
- pymodaq/daq_utils/managers/parameter_manager.py +0 -57
- pymodaq/daq_utils/math_utils.py +0 -705
- pymodaq/daq_utils/parameter/__init__.py +0 -1
- pymodaq/daq_utils/parameter/oldpymodaq_ptypes.py +0 -1626
- pymodaq/daq_utils/parameter/pymodaq_ptypes/pixmap.py +0 -85
- pymodaq/daq_utils/parameter/utils.py +0 -136
- pymodaq/daq_utils/plotting/data_viewers/__init__.py +0 -0
- pymodaq/daq_utils/plotting/data_viewers/process_from_QtDesigner_0DViewer_GUI.bat +0 -2
- pymodaq/daq_utils/plotting/data_viewers/viewer0D.py +0 -204
- pymodaq/daq_utils/plotting/data_viewers/viewer0D_GUI.py +0 -89
- pymodaq/daq_utils/plotting/data_viewers/viewer0D_GUI.ui +0 -131
- pymodaq/daq_utils/plotting/data_viewers/viewer1D.py +0 -781
- pymodaq/daq_utils/plotting/data_viewers/viewerND.py +0 -894
- pymodaq/daq_utils/plotting/data_viewers/viewerbase.py +0 -64
- pymodaq/daq_utils/plotting/items/__init__.py +0 -0
- pymodaq/daq_utils/plotting/navigator.py +0 -500
- pymodaq/daq_utils/plotting/scan_selector.py +0 -289
- pymodaq/daq_utils/plotting/utils/__init__.py +0 -0
- pymodaq/daq_utils/plotting/utils/filter.py +0 -236
- pymodaq/daq_utils/plotting/viewer0D/__init__.py +0 -0
- pymodaq/daq_utils/plotting/viewer0D/viewer0D_main.py +0 -4
- pymodaq/daq_utils/plotting/viewer1D/__init__.py +0 -0
- pymodaq/daq_utils/plotting/viewer1D/viewer1D_main.py +0 -4
- pymodaq/daq_utils/plotting/viewer1D/viewer1Dbasic.py +0 -4
- pymodaq/daq_utils/plotting/viewer2D/viewer_2D_basic.py +0 -4
- pymodaq/daq_utils/plotting/viewer2D/viewer_2D_main.py +0 -4
- pymodaq/daq_utils/plotting/viewerND/__init__.py +0 -0
- pymodaq/daq_utils/plotting/viewerND/viewerND_main.py +0 -4
- pymodaq/daq_utils/scanner.py +0 -1289
- pymodaq/daq_utils/tree_layout/__init__.py +0 -0
- pymodaq/daq_viewer/__init__.py +0 -0
- pymodaq/daq_viewer/daq_gui_settings.py +0 -237
- pymodaq/daq_viewer/daq_gui_settings.ui +0 -441
- pymodaq/daq_viewer/daq_viewer_main.py +0 -2225
- pymodaq/daq_viewer/process_from_QtDesigner_DAQ_GUI_settings.bat +0 -2
- pymodaq/daq_viewer/utility_classes.py +0 -673
- pymodaq/examples/logger_image/__init__.py +0 -0
- pymodaq/examples/logger_image/logger_displayer.py +0 -121
- pymodaq/examples/logger_image/setup.svg +0 -3119
- pymodaq/examples/logger_image/setup_svg.py +0 -114
- pymodaq/h5browser.py +0 -39
- pymodaq/utils/scanner.py +0 -15
- pymodaq-3.6.13.dist-info/METADATA +0 -39
- pymodaq-3.6.13.dist-info/entry_points.txt +0 -8
- pymodaq-3.6.13.dist-info/top_level.txt +0 -1
- /pymodaq/{daq_analysis → post_treatment/daq_analysis}/__init__.py +0 -0
- /pymodaq/{daq_measurement → post_treatment/daq_measurement}/__init__.py +0 -0
- /pymodaq/{daq_measurement → post_treatment/daq_measurement}/daq_measurement_GUI.py +0 -0
- /pymodaq/{daq_measurement → post_treatment/daq_measurement}/daq_measurement_GUI.ui +0 -0
- /pymodaq/{daq_measurement → post_treatment/daq_measurement}/process_from_QtDesigner_DAQ_Measurement_GUI.bat +0 -0
- /pymodaq/{daq_utils → utils}/Tuto innosetup/Tuto innosetup.odt +0 -0
- /pymodaq/{daq_utils → utils}/Tuto innosetup/Tuto innosetup.pdf +0 -0
- /pymodaq/{daq_move → utils/db}/__init__.py +0 -0
- /pymodaq/{daq_utils → utils/db/db_logger}/__init__.py +0 -0
- /pymodaq/{daq_utils → utils}/gui_utils/dock.py +0 -0
- /pymodaq/{daq_utils → utils}/gui_utils/list_picker.py +0 -0
- /pymodaq/{daq_utils/abstract → utils/managers}/__init__.py +0 -0
- /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/bool.py +0 -0
- /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/date.py +0 -0
- /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/list.py +0 -0
- /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/numeric.py +0 -0
- /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/tableview.py +0 -0
- /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/text.py +0 -0
- /pymodaq/{daq_utils/db → utils/plotting}/__init__.py +0 -0
- /pymodaq/{daq_utils → utils}/plotting/image_viewer.py +0 -0
- /pymodaq/{daq_utils/db/db_logger → utils/plotting/items}/__init__.py +0 -0
- /pymodaq/{daq_utils → utils}/plotting/items/crosshair.py +0 -0
- /pymodaq/{daq_utils/managers → utils/plotting/utils}/__init__.py +0 -0
- /pymodaq/{daq_utils → utils}/qvariant.py +0 -0
- /pymodaq/{daq_utils/plotting/viewer2D → utils/scanner/scanners}/__init__.py +0 -0
- /pymodaq/{daq_utils/plotting → utils/tree_layout}/__init__.py +0 -0
- {pymodaq-3.6.13.dist-info → pymodaq-4.0.1.dist-info/licenses}/LICENSE +0 -0
pymodaq/daq_move/daq_move_gui.ui
DELETED
|
@@ -1,534 +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>298</width>
|
|
10
|
-
<height>702</height>
|
|
11
|
-
</rect>
|
|
12
|
-
</property>
|
|
13
|
-
<property name="sizePolicy">
|
|
14
|
-
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
15
|
-
<horstretch>0</horstretch>
|
|
16
|
-
<verstretch>0</verstretch>
|
|
17
|
-
</sizepolicy>
|
|
18
|
-
</property>
|
|
19
|
-
<property name="minimumSize">
|
|
20
|
-
<size>
|
|
21
|
-
<width>0</width>
|
|
22
|
-
<height>0</height>
|
|
23
|
-
</size>
|
|
24
|
-
</property>
|
|
25
|
-
<property name="baseSize">
|
|
26
|
-
<size>
|
|
27
|
-
<width>200</width>
|
|
28
|
-
<height>300</height>
|
|
29
|
-
</size>
|
|
30
|
-
</property>
|
|
31
|
-
<property name="windowTitle">
|
|
32
|
-
<string>Form</string>
|
|
33
|
-
</property>
|
|
34
|
-
<layout class="QGridLayout" name="gridLayout_3">
|
|
35
|
-
<property name="leftMargin">
|
|
36
|
-
<number>0</number>
|
|
37
|
-
</property>
|
|
38
|
-
<property name="topMargin">
|
|
39
|
-
<number>0</number>
|
|
40
|
-
</property>
|
|
41
|
-
<property name="rightMargin">
|
|
42
|
-
<number>0</number>
|
|
43
|
-
</property>
|
|
44
|
-
<property name="bottomMargin">
|
|
45
|
-
<number>0</number>
|
|
46
|
-
</property>
|
|
47
|
-
<property name="spacing">
|
|
48
|
-
<number>6</number>
|
|
49
|
-
</property>
|
|
50
|
-
<item row="0" column="0">
|
|
51
|
-
<widget class="QSplitter" name="splitter">
|
|
52
|
-
<property name="orientation">
|
|
53
|
-
<enum>Qt::Horizontal</enum>
|
|
54
|
-
</property>
|
|
55
|
-
<widget class="QWidget" name="verticalLayoutWidget">
|
|
56
|
-
<layout class="QVBoxLayout" name="verticalLayout">
|
|
57
|
-
<item>
|
|
58
|
-
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
59
|
-
<property name="spacing">
|
|
60
|
-
<number>0</number>
|
|
61
|
-
</property>
|
|
62
|
-
<property name="sizeConstraint">
|
|
63
|
-
<enum>QLayout::SetDefaultConstraint</enum>
|
|
64
|
-
</property>
|
|
65
|
-
<item>
|
|
66
|
-
<widget class="QGroupBox" name="groupBox_main">
|
|
67
|
-
<property name="sizePolicy">
|
|
68
|
-
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
69
|
-
<horstretch>0</horstretch>
|
|
70
|
-
<verstretch>0</verstretch>
|
|
71
|
-
</sizepolicy>
|
|
72
|
-
</property>
|
|
73
|
-
<property name="minimumSize">
|
|
74
|
-
<size>
|
|
75
|
-
<width>0</width>
|
|
76
|
-
<height>0</height>
|
|
77
|
-
</size>
|
|
78
|
-
</property>
|
|
79
|
-
<property name="maximumSize">
|
|
80
|
-
<size>
|
|
81
|
-
<width>16777215</width>
|
|
82
|
-
<height>16777215</height>
|
|
83
|
-
</size>
|
|
84
|
-
</property>
|
|
85
|
-
<property name="baseSize">
|
|
86
|
-
<size>
|
|
87
|
-
<width>0</width>
|
|
88
|
-
<height>0</height>
|
|
89
|
-
</size>
|
|
90
|
-
</property>
|
|
91
|
-
<property name="title">
|
|
92
|
-
<string/>
|
|
93
|
-
</property>
|
|
94
|
-
<property name="flat">
|
|
95
|
-
<bool>false</bool>
|
|
96
|
-
</property>
|
|
97
|
-
<layout class="QGridLayout" name="gridLayout_9">
|
|
98
|
-
<property name="leftMargin">
|
|
99
|
-
<number>0</number>
|
|
100
|
-
</property>
|
|
101
|
-
<property name="topMargin">
|
|
102
|
-
<number>0</number>
|
|
103
|
-
</property>
|
|
104
|
-
<property name="rightMargin">
|
|
105
|
-
<number>0</number>
|
|
106
|
-
</property>
|
|
107
|
-
<property name="bottomMargin">
|
|
108
|
-
<number>0</number>
|
|
109
|
-
</property>
|
|
110
|
-
<item row="0" column="0">
|
|
111
|
-
<layout class="QGridLayout" name="gridLayout_2">
|
|
112
|
-
<property name="sizeConstraint">
|
|
113
|
-
<enum>QLayout::SetDefaultConstraint</enum>
|
|
114
|
-
</property>
|
|
115
|
-
<item row="2" column="0">
|
|
116
|
-
<widget class="QLabel" name="label_2">
|
|
117
|
-
<property name="text">
|
|
118
|
-
<string>Actuator:</string>
|
|
119
|
-
</property>
|
|
120
|
-
<property name="alignment">
|
|
121
|
-
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
|
122
|
-
</property>
|
|
123
|
-
</widget>
|
|
124
|
-
</item>
|
|
125
|
-
<item row="6" column="1">
|
|
126
|
-
<widget class="QLED" name="Move_Done_LED">
|
|
127
|
-
<property name="text">
|
|
128
|
-
<string>TextLabel</string>
|
|
129
|
-
</property>
|
|
130
|
-
</widget>
|
|
131
|
-
</item>
|
|
132
|
-
<item row="4" column="0">
|
|
133
|
-
<widget class="QPushButton" name="IniStage_pb">
|
|
134
|
-
<property name="text">
|
|
135
|
-
<string>Initialization</string>
|
|
136
|
-
</property>
|
|
137
|
-
<property name="checkable">
|
|
138
|
-
<bool>true</bool>
|
|
139
|
-
</property>
|
|
140
|
-
<property name="checked">
|
|
141
|
-
<bool>false</bool>
|
|
142
|
-
</property>
|
|
143
|
-
</widget>
|
|
144
|
-
</item>
|
|
145
|
-
<item row="4" column="1">
|
|
146
|
-
<widget class="QLED" name="Ini_state_LED">
|
|
147
|
-
<property name="text">
|
|
148
|
-
<string>TextLabel</string>
|
|
149
|
-
</property>
|
|
150
|
-
</widget>
|
|
151
|
-
</item>
|
|
152
|
-
<item row="7" column="0" colspan="2">
|
|
153
|
-
<widget class="QDoubleSpinBox" name="Current_position_sb">
|
|
154
|
-
<property name="font">
|
|
155
|
-
<font>
|
|
156
|
-
<pointsize>20</pointsize>
|
|
157
|
-
</font>
|
|
158
|
-
</property>
|
|
159
|
-
<property name="locale">
|
|
160
|
-
<locale language="English" country="UnitedStates"/>
|
|
161
|
-
</property>
|
|
162
|
-
<property name="readOnly">
|
|
163
|
-
<bool>true</bool>
|
|
164
|
-
</property>
|
|
165
|
-
<property name="buttonSymbols">
|
|
166
|
-
<enum>QAbstractSpinBox::NoButtons</enum>
|
|
167
|
-
</property>
|
|
168
|
-
<property name="decimals">
|
|
169
|
-
<number>6</number>
|
|
170
|
-
</property>
|
|
171
|
-
<property name="minimum">
|
|
172
|
-
<double>-10000000.000000000000000</double>
|
|
173
|
-
</property>
|
|
174
|
-
<property name="maximum">
|
|
175
|
-
<double>10000000.000000000000000</double>
|
|
176
|
-
</property>
|
|
177
|
-
</widget>
|
|
178
|
-
</item>
|
|
179
|
-
<item row="2" column="1">
|
|
180
|
-
<widget class="QComboBox" name="Stage_type_combo">
|
|
181
|
-
<property name="toolTip">
|
|
182
|
-
<string>Stage Type</string>
|
|
183
|
-
</property>
|
|
184
|
-
</widget>
|
|
185
|
-
</item>
|
|
186
|
-
<item row="0" column="0" colspan="2">
|
|
187
|
-
<widget class="QLabel" name="title_label">
|
|
188
|
-
<property name="font">
|
|
189
|
-
<font>
|
|
190
|
-
<family>Tahoma</family>
|
|
191
|
-
<pointsize>14</pointsize>
|
|
192
|
-
<weight>75</weight>
|
|
193
|
-
<italic>true</italic>
|
|
194
|
-
<bold>true</bold>
|
|
195
|
-
</font>
|
|
196
|
-
</property>
|
|
197
|
-
<property name="text">
|
|
198
|
-
<string>DAQ Move</string>
|
|
199
|
-
</property>
|
|
200
|
-
<property name="alignment">
|
|
201
|
-
<set>Qt::AlignCenter</set>
|
|
202
|
-
</property>
|
|
203
|
-
</widget>
|
|
204
|
-
</item>
|
|
205
|
-
<item row="5" column="0" colspan="2">
|
|
206
|
-
<widget class="QPushButton" name="Quit_pb">
|
|
207
|
-
<property name="text">
|
|
208
|
-
<string>Quit</string>
|
|
209
|
-
</property>
|
|
210
|
-
<property name="icon">
|
|
211
|
-
<iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
|
|
212
|
-
<normaloff>:/icons/Icon_Library/close2.png</normaloff>:/icons/Icon_Library/close2.png</iconset>
|
|
213
|
-
</property>
|
|
214
|
-
</widget>
|
|
215
|
-
</item>
|
|
216
|
-
<item row="6" column="0">
|
|
217
|
-
<widget class="QLabel" name="label_4">
|
|
218
|
-
<property name="text">
|
|
219
|
-
<string>Current value:</string>
|
|
220
|
-
</property>
|
|
221
|
-
</widget>
|
|
222
|
-
</item>
|
|
223
|
-
<item row="1" column="0" colspan="2">
|
|
224
|
-
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
225
|
-
<property name="spacing">
|
|
226
|
-
<number>0</number>
|
|
227
|
-
</property>
|
|
228
|
-
<item>
|
|
229
|
-
<widget class="SpinBox" name="Abs_position_sb_bis">
|
|
230
|
-
<property name="locale">
|
|
231
|
-
<locale language="English" country="UnitedStates"/>
|
|
232
|
-
</property>
|
|
233
|
-
<property name="decimals">
|
|
234
|
-
<number>6</number>
|
|
235
|
-
</property>
|
|
236
|
-
<property name="minimum">
|
|
237
|
-
<double>-100000000.000000000000000</double>
|
|
238
|
-
</property>
|
|
239
|
-
<property name="maximum">
|
|
240
|
-
<double>100000000.000000000000000</double>
|
|
241
|
-
</property>
|
|
242
|
-
</widget>
|
|
243
|
-
</item>
|
|
244
|
-
<item>
|
|
245
|
-
<widget class="QPushButton" name="Moveto_pb_bis">
|
|
246
|
-
<property name="toolTip">
|
|
247
|
-
<string>Move to position</string>
|
|
248
|
-
</property>
|
|
249
|
-
<property name="text">
|
|
250
|
-
<string/>
|
|
251
|
-
</property>
|
|
252
|
-
<property name="icon">
|
|
253
|
-
<iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
|
|
254
|
-
<normaloff>:/icons/Icon_Library/go_to_1.png</normaloff>:/icons/Icon_Library/go_to_1.png</iconset>
|
|
255
|
-
</property>
|
|
256
|
-
</widget>
|
|
257
|
-
</item>
|
|
258
|
-
<item>
|
|
259
|
-
<widget class="QPushButton" name="Moveto_pb_bis_2">
|
|
260
|
-
<property name="toolTip">
|
|
261
|
-
<string>Move to position 2</string>
|
|
262
|
-
</property>
|
|
263
|
-
<property name="text">
|
|
264
|
-
<string/>
|
|
265
|
-
</property>
|
|
266
|
-
<property name="icon">
|
|
267
|
-
<iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
|
|
268
|
-
<normaloff>:/icons/Icon_Library/go_to_2.png</normaloff>:/icons/Icon_Library/go_to_2.png</iconset>
|
|
269
|
-
</property>
|
|
270
|
-
</widget>
|
|
271
|
-
</item>
|
|
272
|
-
<item>
|
|
273
|
-
<widget class="QPushButton" name="fine_tuning_pb">
|
|
274
|
-
<property name="toolTip">
|
|
275
|
-
<string>Show more options</string>
|
|
276
|
-
</property>
|
|
277
|
-
<property name="text">
|
|
278
|
-
<string/>
|
|
279
|
-
</property>
|
|
280
|
-
<property name="icon">
|
|
281
|
-
<iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
|
|
282
|
-
<normaloff>:/icons/Icon_Library/Add_Step.png</normaloff>:/icons/Icon_Library/Add_Step.png</iconset>
|
|
283
|
-
</property>
|
|
284
|
-
<property name="checkable">
|
|
285
|
-
<bool>true</bool>
|
|
286
|
-
</property>
|
|
287
|
-
</widget>
|
|
288
|
-
</item>
|
|
289
|
-
<item>
|
|
290
|
-
<widget class="QPushButton" name="parameters_pb">
|
|
291
|
-
<property name="toolTip">
|
|
292
|
-
<string>Show connection settings</string>
|
|
293
|
-
</property>
|
|
294
|
-
<property name="text">
|
|
295
|
-
<string/>
|
|
296
|
-
</property>
|
|
297
|
-
<property name="icon">
|
|
298
|
-
<iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
|
|
299
|
-
<normaloff>:/icons/Icon_Library/Settings.png</normaloff>:/icons/Icon_Library/Settings.png</iconset>
|
|
300
|
-
</property>
|
|
301
|
-
<property name="checkable">
|
|
302
|
-
<bool>true</bool>
|
|
303
|
-
</property>
|
|
304
|
-
</widget>
|
|
305
|
-
</item>
|
|
306
|
-
</layout>
|
|
307
|
-
</item>
|
|
308
|
-
</layout>
|
|
309
|
-
</item>
|
|
310
|
-
</layout>
|
|
311
|
-
</widget>
|
|
312
|
-
</item>
|
|
313
|
-
<item>
|
|
314
|
-
<spacer name="horizontalSpacer">
|
|
315
|
-
<property name="orientation">
|
|
316
|
-
<enum>Qt::Horizontal</enum>
|
|
317
|
-
</property>
|
|
318
|
-
<property name="sizeHint" stdset="0">
|
|
319
|
-
<size>
|
|
320
|
-
<width>40</width>
|
|
321
|
-
<height>20</height>
|
|
322
|
-
</size>
|
|
323
|
-
</property>
|
|
324
|
-
</spacer>
|
|
325
|
-
</item>
|
|
326
|
-
</layout>
|
|
327
|
-
</item>
|
|
328
|
-
<item>
|
|
329
|
-
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
330
|
-
<item>
|
|
331
|
-
<widget class="QGroupBox" name="groupBox">
|
|
332
|
-
<property name="title">
|
|
333
|
-
<string/>
|
|
334
|
-
</property>
|
|
335
|
-
<property name="flat">
|
|
336
|
-
<bool>false</bool>
|
|
337
|
-
</property>
|
|
338
|
-
<layout class="QGridLayout" name="gridLayout">
|
|
339
|
-
<property name="leftMargin">
|
|
340
|
-
<number>0</number>
|
|
341
|
-
</property>
|
|
342
|
-
<property name="topMargin">
|
|
343
|
-
<number>0</number>
|
|
344
|
-
</property>
|
|
345
|
-
<property name="rightMargin">
|
|
346
|
-
<number>0</number>
|
|
347
|
-
</property>
|
|
348
|
-
<property name="bottomMargin">
|
|
349
|
-
<number>0</number>
|
|
350
|
-
</property>
|
|
351
|
-
<item row="0" column="0">
|
|
352
|
-
<layout class="QGridLayout" name="gridLayout_buttons">
|
|
353
|
-
<property name="topMargin">
|
|
354
|
-
<number>0</number>
|
|
355
|
-
</property>
|
|
356
|
-
<item row="4" column="1" rowspan="2">
|
|
357
|
-
<widget class="QPushButton" name="Move_Abs_pb">
|
|
358
|
-
<property name="text">
|
|
359
|
-
<string>Set Abs</string>
|
|
360
|
-
</property>
|
|
361
|
-
<property name="icon">
|
|
362
|
-
<iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
|
|
363
|
-
<normaloff>:/icons/Icon_Library/Move.png</normaloff>:/icons/Icon_Library/Move.png</iconset>
|
|
364
|
-
</property>
|
|
365
|
-
</widget>
|
|
366
|
-
</item>
|
|
367
|
-
<item row="7" column="0">
|
|
368
|
-
<widget class="QLabel" name="label_3">
|
|
369
|
-
<property name="text">
|
|
370
|
-
<string>Rel increment:</string>
|
|
371
|
-
</property>
|
|
372
|
-
</widget>
|
|
373
|
-
</item>
|
|
374
|
-
<item row="8" column="1">
|
|
375
|
-
<widget class="QPushButton" name="Move_Rel_minus_pb">
|
|
376
|
-
<property name="text">
|
|
377
|
-
<string>Set Rel (-)</string>
|
|
378
|
-
</property>
|
|
379
|
-
<property name="icon">
|
|
380
|
-
<iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
|
|
381
|
-
<normaloff>:/icons/Icon_Library/MoveDown.png</normaloff>:/icons/Icon_Library/MoveDown.png</iconset>
|
|
382
|
-
</property>
|
|
383
|
-
</widget>
|
|
384
|
-
</item>
|
|
385
|
-
<item row="7" column="1">
|
|
386
|
-
<widget class="QPushButton" name="Move_Rel_plus_pb">
|
|
387
|
-
<property name="text">
|
|
388
|
-
<string>Set Rel (+)</string>
|
|
389
|
-
</property>
|
|
390
|
-
<property name="icon">
|
|
391
|
-
<iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
|
|
392
|
-
<normaloff>:/icons/Icon_Library/MoveUp.png</normaloff>:/icons/Icon_Library/MoveUp.png</iconset>
|
|
393
|
-
</property>
|
|
394
|
-
</widget>
|
|
395
|
-
</item>
|
|
396
|
-
<item row="11" column="0">
|
|
397
|
-
<widget class="QPushButton" name="Stop_pb">
|
|
398
|
-
<property name="text">
|
|
399
|
-
<string>Stop</string>
|
|
400
|
-
</property>
|
|
401
|
-
<property name="icon">
|
|
402
|
-
<iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
|
|
403
|
-
<normaloff>:/icons/Icon_Library/stop.png</normaloff>:/icons/Icon_Library/stop.png</iconset>
|
|
404
|
-
</property>
|
|
405
|
-
</widget>
|
|
406
|
-
</item>
|
|
407
|
-
<item row="5" column="0">
|
|
408
|
-
<widget class="SpinBox" name="Abs_position_sb">
|
|
409
|
-
<property name="locale">
|
|
410
|
-
<locale language="English" country="UnitedStates"/>
|
|
411
|
-
</property>
|
|
412
|
-
<property name="decimals">
|
|
413
|
-
<number>6</number>
|
|
414
|
-
</property>
|
|
415
|
-
<property name="minimum">
|
|
416
|
-
<double>-100000000.000000000000000</double>
|
|
417
|
-
</property>
|
|
418
|
-
<property name="maximum">
|
|
419
|
-
<double>100000000.000000000000000</double>
|
|
420
|
-
</property>
|
|
421
|
-
</widget>
|
|
422
|
-
</item>
|
|
423
|
-
<item row="8" column="0">
|
|
424
|
-
<widget class="SpinBox" name="Rel_position_sb">
|
|
425
|
-
<property name="locale">
|
|
426
|
-
<locale language="English" country="UnitedStates"/>
|
|
427
|
-
</property>
|
|
428
|
-
<property name="decimals">
|
|
429
|
-
<number>6</number>
|
|
430
|
-
</property>
|
|
431
|
-
<property name="minimum">
|
|
432
|
-
<double>-10000000.000000000000000</double>
|
|
433
|
-
</property>
|
|
434
|
-
<property name="maximum">
|
|
435
|
-
<double>1000000.000000000000000</double>
|
|
436
|
-
</property>
|
|
437
|
-
</widget>
|
|
438
|
-
</item>
|
|
439
|
-
<item row="11" column="1">
|
|
440
|
-
<widget class="QPushButton" name="Get_position_pb">
|
|
441
|
-
<property name="text">
|
|
442
|
-
<string>Update Value?</string>
|
|
443
|
-
</property>
|
|
444
|
-
<property name="icon">
|
|
445
|
-
<iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
|
|
446
|
-
<normaloff>:/icons/Icon_Library/Help_32.png</normaloff>:/icons/Icon_Library/Help_32.png</iconset>
|
|
447
|
-
</property>
|
|
448
|
-
</widget>
|
|
449
|
-
</item>
|
|
450
|
-
<item row="3" column="1">
|
|
451
|
-
<widget class="QPushButton" name="Find_Home_pb">
|
|
452
|
-
<property name="text">
|
|
453
|
-
<string>Find Home</string>
|
|
454
|
-
</property>
|
|
455
|
-
<property name="icon">
|
|
456
|
-
<iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
|
|
457
|
-
<normaloff>:/icons/Icon_Library/home2.png</normaloff>:/icons/Icon_Library/home2.png</iconset>
|
|
458
|
-
</property>
|
|
459
|
-
</widget>
|
|
460
|
-
</item>
|
|
461
|
-
<item row="3" column="0">
|
|
462
|
-
<widget class="QLabel" name="label_5">
|
|
463
|
-
<property name="text">
|
|
464
|
-
<string>Abs value:</string>
|
|
465
|
-
</property>
|
|
466
|
-
</widget>
|
|
467
|
-
</item>
|
|
468
|
-
</layout>
|
|
469
|
-
</item>
|
|
470
|
-
<item row="0" column="1">
|
|
471
|
-
<spacer name="horizontalSpacer_2">
|
|
472
|
-
<property name="orientation">
|
|
473
|
-
<enum>Qt::Horizontal</enum>
|
|
474
|
-
</property>
|
|
475
|
-
<property name="sizeHint" stdset="0">
|
|
476
|
-
<size>
|
|
477
|
-
<width>40</width>
|
|
478
|
-
<height>20</height>
|
|
479
|
-
</size>
|
|
480
|
-
</property>
|
|
481
|
-
</spacer>
|
|
482
|
-
</item>
|
|
483
|
-
</layout>
|
|
484
|
-
</widget>
|
|
485
|
-
</item>
|
|
486
|
-
</layout>
|
|
487
|
-
</item>
|
|
488
|
-
<item>
|
|
489
|
-
<spacer name="verticalSpacer">
|
|
490
|
-
<property name="orientation">
|
|
491
|
-
<enum>Qt::Vertical</enum>
|
|
492
|
-
</property>
|
|
493
|
-
<property name="sizeHint" stdset="0">
|
|
494
|
-
<size>
|
|
495
|
-
<width>20</width>
|
|
496
|
-
<height>40</height>
|
|
497
|
-
</size>
|
|
498
|
-
</property>
|
|
499
|
-
</spacer>
|
|
500
|
-
</item>
|
|
501
|
-
<item>
|
|
502
|
-
<layout class="QHBoxLayout" name="StatusBarLayout">
|
|
503
|
-
<property name="sizeConstraint">
|
|
504
|
-
<enum>QLayout::SetMinimumSize</enum>
|
|
505
|
-
</property>
|
|
506
|
-
</layout>
|
|
507
|
-
</item>
|
|
508
|
-
</layout>
|
|
509
|
-
</widget>
|
|
510
|
-
<widget class="QWidget" name="verticalLayoutWidget_2">
|
|
511
|
-
<layout class="QVBoxLayout" name="verticalLayout_2"/>
|
|
512
|
-
</widget>
|
|
513
|
-
</widget>
|
|
514
|
-
</item>
|
|
515
|
-
</layout>
|
|
516
|
-
</widget>
|
|
517
|
-
<customwidgets>
|
|
518
|
-
<customwidget>
|
|
519
|
-
<class>QLED</class>
|
|
520
|
-
<extends>QLabel</extends>
|
|
521
|
-
<header>DAQ</header>
|
|
522
|
-
</customwidget>
|
|
523
|
-
<customwidget>
|
|
524
|
-
<class>SpinBox</class>
|
|
525
|
-
<extends>QDoubleSpinBox</extends>
|
|
526
|
-
<header>pyqtgraph</header>
|
|
527
|
-
</customwidget>
|
|
528
|
-
</customwidgets>
|
|
529
|
-
<resources>
|
|
530
|
-
<include location="../QtDesigner_Ressources/QtDesigner_ressources.qrc"/>
|
|
531
|
-
<include location="../QtDesigner_Ressources/QtDesigner_ressources.qrc"/>
|
|
532
|
-
</resources>
|
|
533
|
-
<connections/>
|
|
534
|
-
</ui>
|