pymodaq 3.6.12__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.

Files changed (233) hide show
  1. pymodaq/__init__.py +13 -6
  2. pymodaq/control_modules/__init__.py +0 -7
  3. pymodaq/control_modules/daq_move.py +965 -2
  4. pymodaq/control_modules/daq_move_ui.py +319 -0
  5. pymodaq/control_modules/daq_viewer.py +1573 -3
  6. pymodaq/control_modules/daq_viewer_ui.py +393 -0
  7. pymodaq/control_modules/mocks.py +51 -0
  8. pymodaq/control_modules/move_utility_classes.py +709 -8
  9. pymodaq/control_modules/utils.py +256 -0
  10. pymodaq/control_modules/viewer_utility_classes.py +663 -6
  11. pymodaq/daq_utils.py +89 -0
  12. pymodaq/dashboard.py +91 -72
  13. pymodaq/examples/custom_app.py +12 -11
  14. pymodaq/examples/custom_viewer.py +10 -10
  15. pymodaq/examples/function_plotter.py +16 -13
  16. pymodaq/examples/nonlinearscanner.py +8 -6
  17. pymodaq/examples/parameter_ex.py +7 -7
  18. pymodaq/examples/preset_MockCamera.xml +1 -0
  19. pymodaq/extensions/__init__.py +16 -0
  20. pymodaq/extensions/console.py +76 -0
  21. pymodaq/{daq_logger.py → extensions/daq_logger.py} +115 -65
  22. pymodaq/extensions/daq_scan.py +1339 -0
  23. pymodaq/extensions/daq_scan_ui.py +240 -0
  24. pymodaq/extensions/h5browser.py +23 -0
  25. pymodaq/{pid → extensions/pid}/__init__.py +4 -2
  26. pymodaq/{pid → extensions/pid}/daq_move_PID.py +2 -2
  27. pymodaq/{pid → extensions/pid}/pid_controller.py +48 -36
  28. pymodaq/{pid → extensions/pid}/utils.py +52 -6
  29. pymodaq/extensions/utils.py +40 -0
  30. pymodaq/post_treatment/__init__.py +6 -0
  31. pymodaq/{daq_analysis → post_treatment/daq_analysis}/daq_analysis_main.py +17 -17
  32. pymodaq/{daq_measurement → post_treatment/daq_measurement}/daq_measurement_main.py +8 -14
  33. pymodaq/post_treatment/load_and_plot.py +219 -0
  34. pymodaq/post_treatment/process_to_scalar.py +263 -0
  35. pymodaq/resources/QtDesigner_Ressources/Icon_Library/run_all.png +0 -0
  36. pymodaq/resources/QtDesigner_Ressources/Icon_Library/stop_all.png +0 -0
  37. pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.bat +1 -1
  38. pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.qrc +1 -0
  39. pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources_rc.py +109784 -109173
  40. pymodaq/resources/QtDesigner_Ressources/icons.svg +142 -0
  41. pymodaq/resources/VERSION +1 -1
  42. pymodaq/resources/config_template.toml +32 -13
  43. pymodaq/resources/preset_default.xml +1 -1
  44. pymodaq/{daq_utils → utils}/Tuto innosetup/script_full_setup.iss +1 -1
  45. pymodaq/utils/__init__.py +0 -29
  46. pymodaq/utils/abstract/__init__.py +48 -0
  47. pymodaq/{daq_utils → utils}/abstract/logger.py +7 -3
  48. pymodaq/utils/array_manipulation.py +379 -8
  49. pymodaq/{daq_utils → utils}/calibration_camera.py +6 -6
  50. pymodaq/{daq_utils → utils}/chrono_timer.py +1 -1
  51. pymodaq/utils/config.py +448 -0
  52. pymodaq/utils/conftests.py +5 -0
  53. pymodaq/utils/daq_utils.py +828 -8
  54. pymodaq/utils/data.py +1873 -7
  55. pymodaq/{daq_utils → utils}/db/db_logger/db_logger.py +86 -47
  56. pymodaq/{daq_utils → utils}/db/db_logger/db_logger_models.py +31 -10
  57. pymodaq/{daq_utils → utils}/enums.py +12 -7
  58. pymodaq/utils/exceptions.py +37 -0
  59. pymodaq/utils/factory.py +82 -0
  60. pymodaq/{daq_utils → utils}/gui_utils/__init__.py +1 -1
  61. pymodaq/utils/gui_utils/custom_app.py +129 -0
  62. pymodaq/utils/gui_utils/file_io.py +66 -0
  63. pymodaq/{daq_utils → utils}/gui_utils/layout.py +2 -2
  64. pymodaq/{daq_utils → utils}/gui_utils/utils.py +13 -3
  65. pymodaq/{daq_utils → utils}/gui_utils/widgets/__init__.py +2 -2
  66. pymodaq/utils/gui_utils/widgets/label.py +24 -0
  67. pymodaq/{daq_utils → utils}/gui_utils/widgets/lcd.py +12 -7
  68. pymodaq/{daq_utils → utils}/gui_utils/widgets/push.py +66 -2
  69. pymodaq/{daq_utils → utils}/gui_utils/widgets/qled.py +6 -4
  70. pymodaq/utils/gui_utils/widgets/spinbox.py +24 -0
  71. pymodaq/{daq_utils → utils}/gui_utils/widgets/table.py +2 -2
  72. pymodaq/utils/h5modules/__init__.py +1 -0
  73. pymodaq/{daq_utils/h5backend.py → utils/h5modules/backends.py} +200 -112
  74. pymodaq/utils/h5modules/browsing.py +683 -0
  75. pymodaq/utils/h5modules/data_saving.py +839 -0
  76. pymodaq/utils/h5modules/h5logging.py +110 -0
  77. pymodaq/utils/h5modules/module_saving.py +350 -0
  78. pymodaq/utils/h5modules/saving.py +914 -0
  79. pymodaq/utils/h5modules/utils.py +85 -0
  80. pymodaq/utils/logger.py +64 -6
  81. pymodaq/utils/managers/action_manager.py +460 -0
  82. pymodaq/{daq_utils → utils}/managers/batchscan_manager.py +144 -112
  83. pymodaq/{daq_utils → utils}/managers/modules_manager.py +188 -114
  84. pymodaq/{daq_utils → utils}/managers/overshoot_manager.py +3 -3
  85. pymodaq/utils/managers/parameter_manager.py +110 -0
  86. pymodaq/{daq_utils → utils}/managers/preset_manager.py +17 -13
  87. pymodaq/{daq_utils → utils}/managers/preset_manager_utils.py +8 -7
  88. pymodaq/{daq_utils → utils}/managers/remote_manager.py +7 -6
  89. pymodaq/{daq_utils → utils}/managers/roi_manager.py +148 -57
  90. pymodaq/utils/math_utils.py +546 -10
  91. pymodaq/{daq_utils → utils}/messenger.py +5 -1
  92. pymodaq/utils/parameter/__init__.py +2 -15
  93. pymodaq/{daq_utils → utils}/parameter/ioxml.py +12 -6
  94. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/__init__.py +1 -3
  95. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/filedir.py +1 -1
  96. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/itemselect.py +3 -0
  97. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/led.py +1 -1
  98. pymodaq/utils/parameter/pymodaq_ptypes/pixmap.py +161 -0
  99. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/slide.py +1 -1
  100. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/table.py +1 -1
  101. pymodaq/utils/parameter/utils.py +206 -11
  102. pymodaq/utils/plotting/data_viewers/__init__.py +6 -0
  103. pymodaq/utils/plotting/data_viewers/viewer.py +393 -0
  104. pymodaq/utils/plotting/data_viewers/viewer0D.py +251 -0
  105. pymodaq/utils/plotting/data_viewers/viewer1D.py +574 -0
  106. pymodaq/{daq_utils → utils}/plotting/data_viewers/viewer1Dbasic.py +8 -3
  107. pymodaq/{daq_utils → utils}/plotting/data_viewers/viewer2D.py +292 -357
  108. pymodaq/{daq_utils → utils}/plotting/data_viewers/viewer2D_basic.py +58 -75
  109. pymodaq/utils/plotting/data_viewers/viewerND.py +738 -0
  110. pymodaq/{daq_utils → utils}/plotting/gant_chart.py +2 -2
  111. pymodaq/{daq_utils → utils}/plotting/items/axis_scaled.py +4 -2
  112. pymodaq/{daq_utils → utils}/plotting/items/image.py +8 -6
  113. pymodaq/utils/plotting/navigator.py +355 -0
  114. pymodaq/utils/plotting/scan_selector.py +480 -0
  115. pymodaq/utils/plotting/utils/axes_viewer.py +88 -0
  116. pymodaq/utils/plotting/utils/filter.py +538 -0
  117. pymodaq/utils/plotting/utils/lineout.py +224 -0
  118. pymodaq/{daq_utils → utils}/plotting/utils/plot_utils.py +196 -84
  119. pymodaq/{daq_utils → utils}/plotting/utils/signalND.py +21 -13
  120. pymodaq/utils/plotting/widgets.py +76 -0
  121. pymodaq/utils/scanner/__init__.py +10 -0
  122. pymodaq/utils/scanner/scan_factory.py +204 -0
  123. pymodaq/utils/scanner/scanner.py +271 -0
  124. pymodaq/utils/scanner/scanners/_1d_scanners.py +117 -0
  125. pymodaq/utils/scanner/scanners/_2d_scanners.py +293 -0
  126. pymodaq/utils/scanner/scanners/sequential.py +192 -0
  127. pymodaq/utils/scanner/scanners/tabular.py +294 -0
  128. pymodaq/utils/scanner/utils.py +83 -0
  129. pymodaq/utils/slicing.py +47 -0
  130. pymodaq/utils/svg/__init__.py +6 -0
  131. pymodaq/utils/svg/svg_renderer.py +20 -0
  132. pymodaq/utils/svg/svg_view.py +35 -0
  133. pymodaq/utils/svg/svg_viewer2D.py +51 -0
  134. pymodaq/{daq_utils → utils}/tcp_server_client.py +36 -37
  135. pymodaq/{daq_utils → utils}/tree_layout/tree_layout_main.py +50 -35
  136. pymodaq/utils/units.py +216 -0
  137. pymodaq-4.0.1.dist-info/METADATA +159 -0
  138. {pymodaq-3.6.12.dist-info → pymodaq-4.0.1.dist-info}/RECORD +167 -170
  139. {pymodaq-3.6.12.dist-info → pymodaq-4.0.1.dist-info}/WHEEL +1 -2
  140. pymodaq-4.0.1.dist-info/entry_points.txt +8 -0
  141. pymodaq/daq_move/daq_move_gui.py +0 -279
  142. pymodaq/daq_move/daq_move_gui.ui +0 -534
  143. pymodaq/daq_move/daq_move_main.py +0 -1042
  144. pymodaq/daq_move/process_from_QtDesigner_DAQ_Move_GUI.bat +0 -2
  145. pymodaq/daq_move/utility_classes.py +0 -671
  146. pymodaq/daq_scan.py +0 -2160
  147. pymodaq/daq_utils/array_manipulation.py +0 -386
  148. pymodaq/daq_utils/config.py +0 -273
  149. pymodaq/daq_utils/conftests.py +0 -7
  150. pymodaq/daq_utils/custom_parameter_tree.py +0 -9
  151. pymodaq/daq_utils/daq_enums.py +0 -133
  152. pymodaq/daq_utils/daq_utils.py +0 -1402
  153. pymodaq/daq_utils/exceptions.py +0 -71
  154. pymodaq/daq_utils/gui_utils/custom_app.py +0 -103
  155. pymodaq/daq_utils/gui_utils/file_io.py +0 -75
  156. pymodaq/daq_utils/gui_utils/widgets/spinbox.py +0 -9
  157. pymodaq/daq_utils/h5exporter_hyperspy.py +0 -115
  158. pymodaq/daq_utils/h5exporters.py +0 -242
  159. pymodaq/daq_utils/h5modules.py +0 -1559
  160. pymodaq/daq_utils/h5utils.py +0 -241
  161. pymodaq/daq_utils/managers/action_manager.py +0 -236
  162. pymodaq/daq_utils/managers/parameter_manager.py +0 -57
  163. pymodaq/daq_utils/math_utils.py +0 -705
  164. pymodaq/daq_utils/parameter/__init__.py +0 -1
  165. pymodaq/daq_utils/parameter/oldpymodaq_ptypes.py +0 -1626
  166. pymodaq/daq_utils/parameter/pymodaq_ptypes/pixmap.py +0 -85
  167. pymodaq/daq_utils/parameter/utils.py +0 -136
  168. pymodaq/daq_utils/plotting/data_viewers/__init__.py +0 -0
  169. pymodaq/daq_utils/plotting/data_viewers/process_from_QtDesigner_0DViewer_GUI.bat +0 -2
  170. pymodaq/daq_utils/plotting/data_viewers/viewer0D.py +0 -204
  171. pymodaq/daq_utils/plotting/data_viewers/viewer0D_GUI.py +0 -89
  172. pymodaq/daq_utils/plotting/data_viewers/viewer0D_GUI.ui +0 -131
  173. pymodaq/daq_utils/plotting/data_viewers/viewer1D.py +0 -781
  174. pymodaq/daq_utils/plotting/data_viewers/viewerND.py +0 -894
  175. pymodaq/daq_utils/plotting/data_viewers/viewerbase.py +0 -64
  176. pymodaq/daq_utils/plotting/items/__init__.py +0 -0
  177. pymodaq/daq_utils/plotting/navigator.py +0 -500
  178. pymodaq/daq_utils/plotting/scan_selector.py +0 -289
  179. pymodaq/daq_utils/plotting/utils/__init__.py +0 -0
  180. pymodaq/daq_utils/plotting/utils/filter.py +0 -236
  181. pymodaq/daq_utils/plotting/viewer0D/__init__.py +0 -0
  182. pymodaq/daq_utils/plotting/viewer0D/viewer0D_main.py +0 -4
  183. pymodaq/daq_utils/plotting/viewer1D/__init__.py +0 -0
  184. pymodaq/daq_utils/plotting/viewer1D/viewer1D_main.py +0 -4
  185. pymodaq/daq_utils/plotting/viewer1D/viewer1Dbasic.py +0 -4
  186. pymodaq/daq_utils/plotting/viewer2D/viewer_2D_basic.py +0 -4
  187. pymodaq/daq_utils/plotting/viewer2D/viewer_2D_main.py +0 -4
  188. pymodaq/daq_utils/plotting/viewerND/__init__.py +0 -0
  189. pymodaq/daq_utils/plotting/viewerND/viewerND_main.py +0 -4
  190. pymodaq/daq_utils/scanner.py +0 -1289
  191. pymodaq/daq_utils/tree_layout/__init__.py +0 -0
  192. pymodaq/daq_viewer/__init__.py +0 -0
  193. pymodaq/daq_viewer/daq_gui_settings.py +0 -237
  194. pymodaq/daq_viewer/daq_gui_settings.ui +0 -441
  195. pymodaq/daq_viewer/daq_viewer_main.py +0 -2225
  196. pymodaq/daq_viewer/process_from_QtDesigner_DAQ_GUI_settings.bat +0 -2
  197. pymodaq/daq_viewer/utility_classes.py +0 -673
  198. pymodaq/examples/logger_image/__init__.py +0 -0
  199. pymodaq/examples/logger_image/logger_displayer.py +0 -121
  200. pymodaq/examples/logger_image/setup.svg +0 -3119
  201. pymodaq/examples/logger_image/setup_svg.py +0 -114
  202. pymodaq/h5browser.py +0 -39
  203. pymodaq/utils/scanner.py +0 -15
  204. pymodaq-3.6.12.dist-info/METADATA +0 -39
  205. pymodaq-3.6.12.dist-info/entry_points.txt +0 -8
  206. pymodaq-3.6.12.dist-info/top_level.txt +0 -1
  207. /pymodaq/{daq_analysis → post_treatment/daq_analysis}/__init__.py +0 -0
  208. /pymodaq/{daq_measurement → post_treatment/daq_measurement}/__init__.py +0 -0
  209. /pymodaq/{daq_measurement → post_treatment/daq_measurement}/daq_measurement_GUI.py +0 -0
  210. /pymodaq/{daq_measurement → post_treatment/daq_measurement}/daq_measurement_GUI.ui +0 -0
  211. /pymodaq/{daq_measurement → post_treatment/daq_measurement}/process_from_QtDesigner_DAQ_Measurement_GUI.bat +0 -0
  212. /pymodaq/{daq_utils → utils}/Tuto innosetup/Tuto innosetup.odt +0 -0
  213. /pymodaq/{daq_utils → utils}/Tuto innosetup/Tuto innosetup.pdf +0 -0
  214. /pymodaq/{daq_move → utils/db}/__init__.py +0 -0
  215. /pymodaq/{daq_utils → utils/db/db_logger}/__init__.py +0 -0
  216. /pymodaq/{daq_utils → utils}/gui_utils/dock.py +0 -0
  217. /pymodaq/{daq_utils → utils}/gui_utils/list_picker.py +0 -0
  218. /pymodaq/{daq_utils/abstract → utils/managers}/__init__.py +0 -0
  219. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/bool.py +0 -0
  220. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/date.py +0 -0
  221. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/list.py +0 -0
  222. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/numeric.py +0 -0
  223. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/tableview.py +0 -0
  224. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/text.py +0 -0
  225. /pymodaq/{daq_utils/db → utils/plotting}/__init__.py +0 -0
  226. /pymodaq/{daq_utils → utils}/plotting/image_viewer.py +0 -0
  227. /pymodaq/{daq_utils/db/db_logger → utils/plotting/items}/__init__.py +0 -0
  228. /pymodaq/{daq_utils → utils}/plotting/items/crosshair.py +0 -0
  229. /pymodaq/{daq_utils/managers → utils/plotting/utils}/__init__.py +0 -0
  230. /pymodaq/{daq_utils → utils}/qvariant.py +0 -0
  231. /pymodaq/{daq_utils/plotting/viewer2D → utils/scanner/scanners}/__init__.py +0 -0
  232. /pymodaq/{daq_utils/plotting → utils/tree_layout}/__init__.py +0 -0
  233. {pymodaq-3.6.12.dist-info → pymodaq-4.0.1.dist-info/licenses}/LICENSE +0 -0
@@ -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>