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,441 +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>636</width>
10
- <height>590</height>
11
- </rect>
12
- </property>
13
- <property name="windowTitle">
14
- <string>Form</string>
15
- </property>
16
- <layout class="QGridLayout" name="gridLayout">
17
- <property name="leftMargin">
18
- <number>9</number>
19
- </property>
20
- <property name="topMargin">
21
- <number>9</number>
22
- </property>
23
- <property name="rightMargin">
24
- <number>9</number>
25
- </property>
26
- <property name="bottomMargin">
27
- <number>9</number>
28
- </property>
29
- <property name="spacing">
30
- <number>6</number>
31
- </property>
32
- <item row="0" column="0">
33
- <layout class="QVBoxLayout" name="settings_layout">
34
- <item>
35
- <layout class="QVBoxLayout" name="verticalLayout_4">
36
- <item>
37
- <widget class="QLabel" name="title_label">
38
- <property name="maximumSize">
39
- <size>
40
- <width>16777215</width>
41
- <height>30</height>
42
- </size>
43
- </property>
44
- <property name="font">
45
- <font>
46
- <family>Tahoma</family>
47
- <pointsize>14</pointsize>
48
- <weight>75</weight>
49
- <italic>true</italic>
50
- <bold>true</bold>
51
- </font>
52
- </property>
53
- <property name="text">
54
- <string>DAQ Title</string>
55
- </property>
56
- <property name="alignment">
57
- <set>Qt::AlignCenter</set>
58
- </property>
59
- </widget>
60
- </item>
61
- <item>
62
- <widget class="QWidget" name="command_widget" native="true">
63
- <property name="maximumSize">
64
- <size>
65
- <width>16777215</width>
66
- <height>30</height>
67
- </size>
68
- </property>
69
- <layout class="QVBoxLayout" name="verticalLayout">
70
- <property name="spacing">
71
- <number>0</number>
72
- </property>
73
- <property name="leftMargin">
74
- <number>0</number>
75
- </property>
76
- <property name="topMargin">
77
- <number>0</number>
78
- </property>
79
- <property name="rightMargin">
80
- <number>0</number>
81
- </property>
82
- <property name="bottomMargin">
83
- <number>0</number>
84
- </property>
85
- <item>
86
- <layout class="QHBoxLayout" name="horizontalLayout_2">
87
- <property name="spacing">
88
- <number>0</number>
89
- </property>
90
- <item>
91
- <widget class="QPushButton" name="grab_pb">
92
- <property name="toolTip">
93
- <string>Grab</string>
94
- </property>
95
- <property name="text">
96
- <string/>
97
- </property>
98
- <property name="icon">
99
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
100
- <normaloff>:/icons/Icon_Library/run2.png</normaloff>:/icons/Icon_Library/run2.png</iconset>
101
- </property>
102
- <property name="checkable">
103
- <bool>true</bool>
104
- </property>
105
- </widget>
106
- </item>
107
- <item>
108
- <widget class="QPushButton" name="single_pb">
109
- <property name="toolTip">
110
- <string>Single Grab</string>
111
- </property>
112
- <property name="text">
113
- <string/>
114
- </property>
115
- <property name="icon">
116
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
117
- <normaloff>:/icons/Icon_Library/snap.png</normaloff>:/icons/Icon_Library/snap.png</iconset>
118
- </property>
119
- <property name="checkable">
120
- <bool>false</bool>
121
- </property>
122
- </widget>
123
- </item>
124
- <item>
125
- <widget class="QPushButton" name="stop_pb">
126
- <property name="toolTip">
127
- <string>Single Grab</string>
128
- </property>
129
- <property name="text">
130
- <string/>
131
- </property>
132
- <property name="icon">
133
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
134
- <normaloff>:/icons/Icon_Library/stop.png</normaloff>:/icons/Icon_Library/stop.png</iconset>
135
- </property>
136
- <property name="checkable">
137
- <bool>false</bool>
138
- </property>
139
- </widget>
140
- </item>
141
- <item>
142
- <widget class="QPushButton" name="save_current_pb">
143
- <property name="toolTip">
144
- <string>Save Current Data</string>
145
- </property>
146
- <property name="text">
147
- <string/>
148
- </property>
149
- <property name="icon">
150
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
151
- <normaloff>:/icons/Icon_Library/SaveAs.png</normaloff>:/icons/Icon_Library/SaveAs.png</iconset>
152
- </property>
153
- </widget>
154
- </item>
155
- <item>
156
- <widget class="QPushButton" name="save_new_pb">
157
- <property name="toolTip">
158
- <string>Save New Data</string>
159
- </property>
160
- <property name="text">
161
- <string/>
162
- </property>
163
- <property name="icon">
164
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
165
- <normaloff>:/icons/Icon_Library/Snap&amp;Save.png</normaloff>:/icons/Icon_Library/Snap&amp;Save.png</iconset>
166
- </property>
167
- </widget>
168
- </item>
169
- <item>
170
- <widget class="QPushButton" name="load_data_pb">
171
- <property name="text">
172
- <string/>
173
- </property>
174
- <property name="icon">
175
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
176
- <normaloff>:/icons/Icon_Library/Open.png</normaloff>:/icons/Icon_Library/Open.png</iconset>
177
- </property>
178
- </widget>
179
- </item>
180
- <item>
181
- <widget class="QPushButton" name="settings_pb">
182
- <property name="toolTip">
183
- <string>Open Settings</string>
184
- </property>
185
- <property name="text">
186
- <string/>
187
- </property>
188
- <property name="icon">
189
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
190
- <normaloff>:/icons/Icon_Library/HLM.ico</normaloff>:/icons/Icon_Library/HLM.ico</iconset>
191
- </property>
192
- <property name="checkable">
193
- <bool>true</bool>
194
- </property>
195
- </widget>
196
- </item>
197
- <item>
198
- <widget class="QPushButton" name="update_com_pb">
199
- <property name="toolTip">
200
- <string>Refresh Hardware</string>
201
- </property>
202
- <property name="text">
203
- <string/>
204
- </property>
205
- <property name="icon">
206
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
207
- <normaloff>:/icons/Icon_Library/Refresh2.png</normaloff>:/icons/Icon_Library/Refresh2.png</iconset>
208
- </property>
209
- <property name="checkable">
210
- <bool>false</bool>
211
- </property>
212
- </widget>
213
- </item>
214
- <item>
215
- <widget class="QPushButton" name="navigator_pb">
216
- <property name="toolTip">
217
- <string>Send current data to navigator</string>
218
- </property>
219
- <property name="text">
220
- <string/>
221
- </property>
222
- <property name="icon">
223
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
224
- <normaloff>:/icons/Icon_Library/Select_24.png</normaloff>:/icons/Icon_Library/Select_24.png</iconset>
225
- </property>
226
- </widget>
227
- </item>
228
- <item>
229
- <widget class="QPushButton" name="log_pb">
230
- <property name="toolTip">
231
- <string>Show Current log file</string>
232
- </property>
233
- <property name="text">
234
- <string/>
235
- </property>
236
- <property name="icon">
237
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
238
- <normaloff>:/icons/Icon_Library/information2.png</normaloff>:/icons/Icon_Library/information2.png</iconset>
239
- </property>
240
- </widget>
241
- </item>
242
- </layout>
243
- </item>
244
- </layout>
245
- </widget>
246
- </item>
247
- <item>
248
- <widget class="QWidget" name="settings_widget" native="true">
249
- <layout class="QVBoxLayout" name="settings_layout_2">
250
- <property name="spacing">
251
- <number>0</number>
252
- </property>
253
- <property name="leftMargin">
254
- <number>0</number>
255
- </property>
256
- <property name="topMargin">
257
- <number>0</number>
258
- </property>
259
- <property name="rightMargin">
260
- <number>0</number>
261
- </property>
262
- <property name="bottomMargin">
263
- <number>0</number>
264
- </property>
265
- <item>
266
- <layout class="QGridLayout" name="gridLayout_3">
267
- <property name="topMargin">
268
- <number>0</number>
269
- </property>
270
- <property name="spacing">
271
- <number>6</number>
272
- </property>
273
- <item row="1" column="0" colspan="3">
274
- <widget class="QLabel" name="label_3">
275
- <property name="text">
276
- <string>Detector:</string>
277
- </property>
278
- <property name="alignment">
279
- <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
280
- </property>
281
- </widget>
282
- </item>
283
- <item row="0" column="3" colspan="3">
284
- <widget class="QComboBox" name="DAQ_type_combo">
285
- <property name="toolTip">
286
- <string>Detector Type</string>
287
- </property>
288
- <item>
289
- <property name="text">
290
- <string>DAQ0D</string>
291
- </property>
292
- </item>
293
- <item>
294
- <property name="text">
295
- <string>DAQ1D</string>
296
- </property>
297
- </item>
298
- <item>
299
- <property name="text">
300
- <string>DAQ2D</string>
301
- </property>
302
- </item>
303
- <item>
304
- <property name="text">
305
- <string>DAQND</string>
306
- </property>
307
- </item>
308
- </widget>
309
- </item>
310
- <item row="0" column="0" colspan="3">
311
- <widget class="QLabel" name="label_4">
312
- <property name="text">
313
- <string>DAQ type:</string>
314
- </property>
315
- <property name="alignment">
316
- <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
317
- </property>
318
- </widget>
319
- </item>
320
- <item row="4" column="0" colspan="2">
321
- <widget class="QPushButton" name="Quit_pb">
322
- <property name="toolTip">
323
- <string>quit and close the viewer</string>
324
- </property>
325
- <property name="text">
326
- <string>Quit</string>
327
- </property>
328
- <property name="icon">
329
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
330
- <normaloff>:/icons/Icon_Library/close2.png</normaloff>:/icons/Icon_Library/close2.png</iconset>
331
- </property>
332
- </widget>
333
- </item>
334
- <item row="1" column="3" colspan="3">
335
- <widget class="QComboBox" name="Detector_type_combo">
336
- <property name="toolTip">
337
- <string>Stage Type</string>
338
- </property>
339
- </widget>
340
- </item>
341
- <item row="7" column="0" rowspan="3" colspan="3">
342
- <widget class="QPushButton" name="load_settings_pb">
343
- <property name="toolTip">
344
- <string>Load settings</string>
345
- </property>
346
- <property name="text">
347
- <string>Sett.</string>
348
- </property>
349
- <property name="icon">
350
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
351
- <normaloff>:/icons/Icon_Library/Open.png</normaloff>:/icons/Icon_Library/Open.png</iconset>
352
- </property>
353
- </widget>
354
- </item>
355
- <item row="7" column="3" rowspan="3" colspan="3">
356
- <widget class="QPushButton" name="save_settings_pb">
357
- <property name="toolTip">
358
- <string>save settings</string>
359
- </property>
360
- <property name="text">
361
- <string>Sett.</string>
362
- </property>
363
- <property name="icon">
364
- <iconset resource="../QtDesigner_Ressources/QtDesigner_ressources.qrc">
365
- <normaloff>:/icons/Icon_Library/SaveAs.png</normaloff>:/icons/Icon_Library/SaveAs.png</iconset>
366
- </property>
367
- </widget>
368
- </item>
369
- <item row="5" column="3" rowspan="2" colspan="3">
370
- <widget class="QCheckBox" name="take_bkg_cb">
371
- <property name="text">
372
- <string>Take Bkg</string>
373
- </property>
374
- </widget>
375
- </item>
376
- <item row="5" column="0" rowspan="2" colspan="3">
377
- <widget class="QCheckBox" name="do_bkg_cb">
378
- <property name="text">
379
- <string>Do Bkg sub.</string>
380
- </property>
381
- </widget>
382
- </item>
383
- <item row="4" column="4">
384
- <widget class="QLED" name="Ini_state_LED">
385
- <property name="toolTip">
386
- <string>Green when controller is initialized</string>
387
- </property>
388
- <property name="text">
389
- <string>TextLabel</string>
390
- </property>
391
- </widget>
392
- </item>
393
- <item row="4" column="5">
394
- <widget class="QLED" name="data_ready_led">
395
- <property name="toolTip">
396
- <string>Green when data ready</string>
397
- </property>
398
- <property name="text">
399
- <string>TextLabel</string>
400
- </property>
401
- </widget>
402
- </item>
403
- <item row="4" column="2" colspan="2">
404
- <widget class="QPushButton" name="IniDet_pb">
405
- <property name="toolTip">
406
- <string>To initialize the detector</string>
407
- </property>
408
- <property name="text">
409
- <string>Ini. Det.</string>
410
- </property>
411
- <property name="checkable">
412
- <bool>true</bool>
413
- </property>
414
- <property name="checked">
415
- <bool>false</bool>
416
- </property>
417
- </widget>
418
- </item>
419
- </layout>
420
- </item>
421
- </layout>
422
- </widget>
423
- </item>
424
- </layout>
425
- </item>
426
- </layout>
427
- </item>
428
- </layout>
429
- </widget>
430
- <customwidgets>
431
- <customwidget>
432
- <class>QLED</class>
433
- <extends>QLabel</extends>
434
- <header>DAQ</header>
435
- </customwidget>
436
- </customwidgets>
437
- <resources>
438
- <include location="../QtDesigner_Ressources/QtDesigner_ressources.qrc"/>
439
- </resources>
440
- <connections/>
441
- </ui>