dcscope 2.22.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.
Files changed (267) hide show
  1. dcscope/__init__.py +17 -0
  2. dcscope/__main__.py +44 -0
  3. dcscope/_version.py +21 -0
  4. dcscope/extensions.py +250 -0
  5. dcscope/gui/__init__.py +2 -0
  6. dcscope/gui/analysis/__init__.py +10 -0
  7. dcscope/gui/analysis/ana_basins.py +110 -0
  8. dcscope/gui/analysis/ana_basins.ui +143 -0
  9. dcscope/gui/analysis/ana_filter.py +341 -0
  10. dcscope/gui/analysis/ana_filter.ui +364 -0
  11. dcscope/gui/analysis/ana_log.py +122 -0
  12. dcscope/gui/analysis/ana_log.ui +100 -0
  13. dcscope/gui/analysis/ana_meta.py +207 -0
  14. dcscope/gui/analysis/ana_meta.ui +141 -0
  15. dcscope/gui/analysis/ana_plot.py +638 -0
  16. dcscope/gui/analysis/ana_plot.ui +1060 -0
  17. dcscope/gui/analysis/ana_slot.py +504 -0
  18. dcscope/gui/analysis/ana_slot.ui +684 -0
  19. dcscope/gui/analysis/ana_tables.py +227 -0
  20. dcscope/gui/analysis/ana_tables.ui +195 -0
  21. dcscope/gui/analysis/ana_view.py +69 -0
  22. dcscope/gui/analysis/ana_view.ui +269 -0
  23. dcscope/gui/analysis/dlg_slot_reorder.py +55 -0
  24. dcscope/gui/analysis/dlg_slot_reorder.ui +138 -0
  25. dcscope/gui/bulk/__init__.py +2 -0
  26. dcscope/gui/bulk/bulk_emodulus.py +200 -0
  27. dcscope/gui/bulk/bulk_emodulus.ui +245 -0
  28. dcscope/gui/compute/__init__.py +3 -0
  29. dcscope/gui/compute/comp_lme4.py +115 -0
  30. dcscope/gui/compute/comp_lme4.ui +194 -0
  31. dcscope/gui/compute/comp_lme4_dataset.py +51 -0
  32. dcscope/gui/compute/comp_lme4_dataset.ui +92 -0
  33. dcscope/gui/compute/comp_lme4_results.py +120 -0
  34. dcscope/gui/compute/comp_lme4_results.ui +268 -0
  35. dcscope/gui/compute/comp_stats.py +223 -0
  36. dcscope/gui/compute/comp_stats.ui +187 -0
  37. dcscope/gui/dcor/__init__.py +304 -0
  38. dcscope/gui/dcor/dcor.ui +118 -0
  39. dcscope/gui/export/__init__.py +3 -0
  40. dcscope/gui/export/e2data.py +394 -0
  41. dcscope/gui/export/e2data.ui +367 -0
  42. dcscope/gui/export/e2filter.py +76 -0
  43. dcscope/gui/export/e2filter.ui +111 -0
  44. dcscope/gui/export/e2plot.py +94 -0
  45. dcscope/gui/export/e2plot.ui +175 -0
  46. dcscope/gui/main.py +1089 -0
  47. dcscope/gui/main.ui +579 -0
  48. dcscope/gui/matrix/__init__.py +4 -0
  49. dcscope/gui/matrix/block_matrix.py +141 -0
  50. dcscope/gui/matrix/block_matrix.ui +207 -0
  51. dcscope/gui/matrix/data_matrix.py +574 -0
  52. dcscope/gui/matrix/dm_dataset.py +116 -0
  53. dcscope/gui/matrix/dm_dataset.ui +348 -0
  54. dcscope/gui/matrix/dm_element.py +111 -0
  55. dcscope/gui/matrix/dm_element.ui +169 -0
  56. dcscope/gui/matrix/dm_filter.py +115 -0
  57. dcscope/gui/matrix/dm_filter.ui +287 -0
  58. dcscope/gui/matrix/plot_matrix.py +316 -0
  59. dcscope/gui/matrix/pm_element.py +39 -0
  60. dcscope/gui/matrix/pm_plot.py +86 -0
  61. dcscope/gui/matrix/pm_plot.ui +249 -0
  62. dcscope/gui/pipeline_plot.py +797 -0
  63. dcscope/gui/pipeline_plot.ui +66 -0
  64. dcscope/gui/preferences.py +380 -0
  65. dcscope/gui/preferences.ui +554 -0
  66. dcscope/gui/quick_view/__init__.py +1 -0
  67. dcscope/gui/quick_view/qv_main.py +1072 -0
  68. dcscope/gui/quick_view/qv_main.ui +1297 -0
  69. dcscope/gui/quick_view/qv_scatter.py +284 -0
  70. dcscope/gui/quick_view/qv_style.css +10 -0
  71. dcscope/gui/update.py +90 -0
  72. dcscope/gui/widgets/__init__.py +15 -0
  73. dcscope/gui/widgets/bg_thread.py +29 -0
  74. dcscope/gui/widgets/bulk_list.py +79 -0
  75. dcscope/gui/widgets/bulk_list.ui +95 -0
  76. dcscope/gui/widgets/double_spin_box_nan.py +75 -0
  77. dcscope/gui/widgets/feature_combobox.py +140 -0
  78. dcscope/gui/widgets/get_path.py +42 -0
  79. dcscope/gui/widgets/key_value_table_widget.css +12 -0
  80. dcscope/gui/widgets/key_value_table_widget.py +75 -0
  81. dcscope/gui/widgets/mdi_subwindow_wo_close.py +12 -0
  82. dcscope/gui/widgets/qrangeslider.py +262 -0
  83. dcscope/gui/widgets/rangecontrol.py +308 -0
  84. dcscope/gui/widgets/rangecontrol.ui +136 -0
  85. dcscope/gui/widgets/simple_image_view.py +55 -0
  86. dcscope/gui/widgets/simple_plot_widget.py +113 -0
  87. dcscope/gui/widgets/so_colorbaritem.py +29 -0
  88. dcscope/gui/widgets/wait_cursor.py +33 -0
  89. dcscope/idiom.py +26 -0
  90. dcscope/img/__init__.py +2 -0
  91. dcscope/img/icon-theme/breeze/COPYING-ICONS +209 -0
  92. dcscope/img/icon-theme/breeze/COPYING.LIB +510 -0
  93. dcscope/img/icon-theme/breeze/README +5 -0
  94. dcscope/img/icon-theme/breeze/actions/16/application-exit.svg +17 -0
  95. dcscope/img/icon-theme/breeze/actions/16/code-context.svg +13 -0
  96. dcscope/img/icon-theme/breeze/actions/16/dialog-cancel.svg +13 -0
  97. dcscope/img/icon-theme/breeze/actions/16/dialog-close.svg +17 -0
  98. dcscope/img/icon-theme/breeze/actions/16/dialog-messages.svg +13 -0
  99. dcscope/img/icon-theme/breeze/actions/16/dialog-ok-apply.svg +13 -0
  100. dcscope/img/icon-theme/breeze/actions/16/dialog-ok.svg +13 -0
  101. dcscope/img/icon-theme/breeze/actions/16/document-open-folder.svg +13 -0
  102. dcscope/img/icon-theme/breeze/actions/16/document-open.svg +13 -0
  103. dcscope/img/icon-theme/breeze/actions/16/document-save.svg +13 -0
  104. dcscope/img/icon-theme/breeze/actions/16/documentinfo.svg +12 -0
  105. dcscope/img/icon-theme/breeze/actions/16/draw-watercolor.svg +13 -0
  106. dcscope/img/icon-theme/breeze/actions/16/edit-clear-all.svg +13 -0
  107. dcscope/img/icon-theme/breeze/actions/16/edit-clear.svg +13 -0
  108. dcscope/img/icon-theme/breeze/actions/16/edit-paste.svg +13 -0
  109. dcscope/img/icon-theme/breeze/actions/16/globe.svg +16 -0
  110. dcscope/img/icon-theme/breeze/actions/16/gtk-preferences.svg +13 -0
  111. dcscope/img/icon-theme/breeze/actions/16/list-add.svg +13 -0
  112. dcscope/img/icon-theme/breeze/actions/16/messagebox_warning.svg +20 -0
  113. dcscope/img/icon-theme/breeze/actions/16/object-columns.svg +13 -0
  114. dcscope/img/icon-theme/breeze/actions/16/object-order-lower.svg +13 -0
  115. dcscope/img/icon-theme/breeze/actions/16/object-rows.svg +13 -0
  116. dcscope/img/icon-theme/breeze/actions/16/office-chart-line-stacked.svg +13 -0
  117. dcscope/img/icon-theme/breeze/actions/16/office-chart-ring.svg +13 -0
  118. dcscope/img/icon-theme/breeze/actions/16/office-chart-scatter.svg +13 -0
  119. dcscope/img/icon-theme/breeze/actions/16/path-mode-polyline.svg +13 -0
  120. dcscope/img/icon-theme/breeze/actions/16/preferences-activities.svg +13 -0
  121. dcscope/img/icon-theme/breeze/actions/16/remove.svg +10 -0
  122. dcscope/img/icon-theme/breeze/actions/16/search.svg +13 -0
  123. dcscope/img/icon-theme/breeze/actions/16/show-grid.svg +13 -0
  124. dcscope/img/icon-theme/breeze/actions/16/special_paste.svg +13 -0
  125. dcscope/img/icon-theme/breeze/actions/16/tools-wizard.svg +13 -0
  126. dcscope/img/icon-theme/breeze/actions/16/view-calendar-list.svg +13 -0
  127. dcscope/img/icon-theme/breeze/actions/16/view-filter.svg +13 -0
  128. dcscope/img/icon-theme/breeze/actions/16/view-list-tree.svg +13 -0
  129. dcscope/img/icon-theme/breeze/actions/16/view-statistics.svg +13 -0
  130. dcscope/img/icon-theme/breeze/actions/16/visibility.svg +21 -0
  131. dcscope/img/icon-theme/breeze/actions/22/application-exit.svg +13 -0
  132. dcscope/img/icon-theme/breeze/actions/22/code-context.svg +14 -0
  133. dcscope/img/icon-theme/breeze/actions/22/dialog-cancel.svg +14 -0
  134. dcscope/img/icon-theme/breeze/actions/22/dialog-close.svg +10 -0
  135. dcscope/img/icon-theme/breeze/actions/22/dialog-messages.svg +14 -0
  136. dcscope/img/icon-theme/breeze/actions/22/dialog-ok-apply.svg +14 -0
  137. dcscope/img/icon-theme/breeze/actions/22/dialog-ok.svg +14 -0
  138. dcscope/img/icon-theme/breeze/actions/22/document-open-folder.svg +14 -0
  139. dcscope/img/icon-theme/breeze/actions/22/document-open.svg +14 -0
  140. dcscope/img/icon-theme/breeze/actions/22/document-save.svg +14 -0
  141. dcscope/img/icon-theme/breeze/actions/22/documentinfo.svg +14 -0
  142. dcscope/img/icon-theme/breeze/actions/22/draw-watercolor.svg +14 -0
  143. dcscope/img/icon-theme/breeze/actions/22/edit-clear-all.svg +14 -0
  144. dcscope/img/icon-theme/breeze/actions/22/edit-clear.svg +14 -0
  145. dcscope/img/icon-theme/breeze/actions/22/edit-paste.svg +14 -0
  146. dcscope/img/icon-theme/breeze/actions/22/globe.svg +12 -0
  147. dcscope/img/icon-theme/breeze/actions/22/gtk-preferences.svg +13 -0
  148. dcscope/img/icon-theme/breeze/actions/22/list-add.svg +14 -0
  149. dcscope/img/icon-theme/breeze/actions/22/messagebox_warning.svg +17 -0
  150. dcscope/img/icon-theme/breeze/actions/22/object-columns.svg +14 -0
  151. dcscope/img/icon-theme/breeze/actions/22/object-order-lower.svg +17 -0
  152. dcscope/img/icon-theme/breeze/actions/22/object-rows.svg +17 -0
  153. dcscope/img/icon-theme/breeze/actions/22/office-chart-line-stacked.svg +17 -0
  154. dcscope/img/icon-theme/breeze/actions/22/office-chart-ring.svg +17 -0
  155. dcscope/img/icon-theme/breeze/actions/22/office-chart-scatter.svg +17 -0
  156. dcscope/img/icon-theme/breeze/actions/22/path-mode-polyline.svg +17 -0
  157. dcscope/img/icon-theme/breeze/actions/22/preferences-activities.svg +14 -0
  158. dcscope/img/icon-theme/breeze/actions/22/remove.svg +10 -0
  159. dcscope/img/icon-theme/breeze/actions/22/special_paste.svg +14 -0
  160. dcscope/img/icon-theme/breeze/actions/22/tools-wizard.svg +14 -0
  161. dcscope/img/icon-theme/breeze/actions/22/view-calendar-list.svg +14 -0
  162. dcscope/img/icon-theme/breeze/actions/22/view-filter.svg +14 -0
  163. dcscope/img/icon-theme/breeze/actions/22/view-list-tree.svg +14 -0
  164. dcscope/img/icon-theme/breeze/actions/22/view-statistics.svg +14 -0
  165. dcscope/img/icon-theme/breeze/actions/22/visibility.svg +14 -0
  166. dcscope/img/icon-theme/breeze/actions/24/application-exit.svg +12 -0
  167. dcscope/img/icon-theme/breeze/actions/24/code-context.svg +12 -0
  168. dcscope/img/icon-theme/breeze/actions/24/dialog-cancel.svg +12 -0
  169. dcscope/img/icon-theme/breeze/actions/24/dialog-close.svg +10 -0
  170. dcscope/img/icon-theme/breeze/actions/24/dialog-messages.svg +12 -0
  171. dcscope/img/icon-theme/breeze/actions/24/dialog-ok-apply.svg +12 -0
  172. dcscope/img/icon-theme/breeze/actions/24/dialog-ok.svg +14 -0
  173. dcscope/img/icon-theme/breeze/actions/24/document-open-folder.svg +12 -0
  174. dcscope/img/icon-theme/breeze/actions/24/document-open.svg +12 -0
  175. dcscope/img/icon-theme/breeze/actions/24/document-save.svg +12 -0
  176. dcscope/img/icon-theme/breeze/actions/24/documentinfo.svg +14 -0
  177. dcscope/img/icon-theme/breeze/actions/24/draw-watercolor.svg +12 -0
  178. dcscope/img/icon-theme/breeze/actions/24/edit-clear-all.svg +14 -0
  179. dcscope/img/icon-theme/breeze/actions/24/edit-clear.svg +12 -0
  180. dcscope/img/icon-theme/breeze/actions/24/edit-paste.svg +12 -0
  181. dcscope/img/icon-theme/breeze/actions/24/globe.svg +14 -0
  182. dcscope/img/icon-theme/breeze/actions/24/gtk-preferences.svg +13 -0
  183. dcscope/img/icon-theme/breeze/actions/24/list-add.svg +12 -0
  184. dcscope/img/icon-theme/breeze/actions/24/messagebox_warning.svg +13 -0
  185. dcscope/img/icon-theme/breeze/actions/24/object-columns.svg +12 -0
  186. dcscope/img/icon-theme/breeze/actions/24/object-order-lower.svg +15 -0
  187. dcscope/img/icon-theme/breeze/actions/24/object-rows.svg +15 -0
  188. dcscope/img/icon-theme/breeze/actions/24/office-chart-line-stacked.svg +15 -0
  189. dcscope/img/icon-theme/breeze/actions/24/office-chart-ring.svg +15 -0
  190. dcscope/img/icon-theme/breeze/actions/24/office-chart-scatter.svg +15 -0
  191. dcscope/img/icon-theme/breeze/actions/24/path-mode-polyline.svg +15 -0
  192. dcscope/img/icon-theme/breeze/actions/24/preferences-activities.svg +13 -0
  193. dcscope/img/icon-theme/breeze/actions/24/remove.svg +10 -0
  194. dcscope/img/icon-theme/breeze/actions/24/special_paste.svg +12 -0
  195. dcscope/img/icon-theme/breeze/actions/24/tools-wizard.svg +12 -0
  196. dcscope/img/icon-theme/breeze/actions/24/view-calendar-list.svg +12 -0
  197. dcscope/img/icon-theme/breeze/actions/24/view-filter.svg +12 -0
  198. dcscope/img/icon-theme/breeze/actions/24/view-list-tree.svg +12 -0
  199. dcscope/img/icon-theme/breeze/actions/24/view-statistics.svg +12 -0
  200. dcscope/img/icon-theme/breeze/actions/24/visibility.svg +14 -0
  201. dcscope/img/icon-theme/breeze/actions/32/application-exit.svg +8 -0
  202. dcscope/img/icon-theme/breeze/actions/32/dialog-cancel.svg +13 -0
  203. dcscope/img/icon-theme/breeze/actions/32/dialog-messages.svg +13 -0
  204. dcscope/img/icon-theme/breeze/actions/32/dialog-ok-apply.svg +1 -0
  205. dcscope/img/icon-theme/breeze/actions/32/dialog-ok.svg +1 -0
  206. dcscope/img/icon-theme/breeze/actions/32/document-open-folder.svg +13 -0
  207. dcscope/img/icon-theme/breeze/actions/32/document-open.svg +13 -0
  208. dcscope/img/icon-theme/breeze/actions/32/document-save.svg +18 -0
  209. dcscope/img/icon-theme/breeze/actions/32/gtk-preferences.svg +17 -0
  210. dcscope/img/icon-theme/breeze/actions/32/object-order-lower.svg +18 -0
  211. dcscope/img/icon-theme/breeze/actions/32/view-filter.svg +18 -0
  212. dcscope/img/icon-theme/breeze/actions/32/view-list-tree.svg +18 -0
  213. dcscope/img/icon-theme/breeze/places/16/folder-cloud.svg +13 -0
  214. dcscope/img/icon-theme/breeze/places/16/folder.svg +13 -0
  215. dcscope/img/icon-theme/breeze/places/22/folder-cloud.svg +13 -0
  216. dcscope/img/icon-theme/breeze/places/22/folder.svg +13 -0
  217. dcscope/img/icon-theme/breeze/places/24/folder-cloud.svg +12 -0
  218. dcscope/img/icon-theme/breeze/places/24/folder.svg +12 -0
  219. dcscope/img/icon-theme/breeze/places/32/folder-cloud.svg +35 -0
  220. dcscope/img/icon-theme/breeze/places/32/folder.svg +30 -0
  221. dcscope/img/icon-theme/breeze/places/64/folder-cloud.svg +35 -0
  222. dcscope/img/icon-theme/breeze/places/64/folder.svg +30 -0
  223. dcscope/img/icon-theme/breeze/status/16/dialog-error.svg +9 -0
  224. dcscope/img/icon-theme/breeze/status/16/dialog-information.svg +9 -0
  225. dcscope/img/icon-theme/breeze/status/16/dialog-question.svg +7 -0
  226. dcscope/img/icon-theme/breeze/status/16/dialog-warning.svg +9 -0
  227. dcscope/img/icon-theme/breeze/status/22/dialog-error.svg +9 -0
  228. dcscope/img/icon-theme/breeze/status/22/dialog-information.svg +9 -0
  229. dcscope/img/icon-theme/breeze/status/22/dialog-question.svg +7 -0
  230. dcscope/img/icon-theme/breeze/status/22/dialog-warning.svg +9 -0
  231. dcscope/img/icon-theme/breeze/status/24/dialog-error.svg +13 -0
  232. dcscope/img/icon-theme/breeze/status/24/dialog-information.svg +13 -0
  233. dcscope/img/icon-theme/breeze/status/24/dialog-question.svg +9 -0
  234. dcscope/img/icon-theme/breeze/status/24/dialog-warning.svg +1 -0
  235. dcscope/img/icon-theme/breeze/status/64/dialog-error.svg +25 -0
  236. dcscope/img/icon-theme/breeze/status/64/dialog-information.svg +25 -0
  237. dcscope/img/icon-theme/breeze/status/64/dialog-question.svg +25 -0
  238. dcscope/img/icon-theme/breeze/status/64/dialog-warning.svg +25 -0
  239. dcscope/img/icon-theme/collect_icons.py +124 -0
  240. dcscope/img/icon-theme/dcscope/dcor.png +0 -0
  241. dcscope/img/icon-theme/dcscope/edit-copy-anew.svg +13 -0
  242. dcscope/img/icon-theme/dcscope/emodulus.svg +69 -0
  243. dcscope/img/icon-theme/dcscope/filter_ray.svg +54 -0
  244. dcscope/img/icon-theme/dcscope/region_channel.svg +86 -0
  245. dcscope/img/icon-theme/dcscope/region_reservoir.svg +89 -0
  246. dcscope/img/icon-theme/dcscope/rlang.svg +108 -0
  247. dcscope/img/icon-theme/dcscope/statistical_significance.svg +106 -0
  248. dcscope/img/icon-theme/index.theme +81 -0
  249. dcscope/img/icon.png +0 -0
  250. dcscope/img/icon.svg +73 -0
  251. dcscope/img/splash.png +0 -0
  252. dcscope/meta_tool.py +143 -0
  253. dcscope/pipeline/__init__.py +5 -0
  254. dcscope/pipeline/core.py +632 -0
  255. dcscope/pipeline/dataslot.py +270 -0
  256. dcscope/pipeline/filter.py +161 -0
  257. dcscope/pipeline/filter_ray.py +170 -0
  258. dcscope/pipeline/plot.py +187 -0
  259. dcscope/plot_cache.py +79 -0
  260. dcscope/session.py +379 -0
  261. dcscope/util.py +34 -0
  262. dcscope-2.22.1.dist-info/METADATA +95 -0
  263. dcscope-2.22.1.dist-info/RECORD +267 -0
  264. dcscope-2.22.1.dist-info/WHEEL +5 -0
  265. dcscope-2.22.1.dist-info/entry_points.txt +2 -0
  266. dcscope-2.22.1.dist-info/licenses/LICENSE +621 -0
  267. dcscope-2.22.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1060 @@
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>627</width>
10
+ <height>934</height>
11
+ </rect>
12
+ </property>
13
+ <property name="windowTitle">
14
+ <string>Form</string>
15
+ </property>
16
+ <layout class="QVBoxLayout" name="verticalLayout">
17
+ <item>
18
+ <layout class="QHBoxLayout" name="horizontalLayout">
19
+ <item>
20
+ <widget class="QLabel" name="label">
21
+ <property name="text">
22
+ <string>Plot set</string>
23
+ </property>
24
+ </widget>
25
+ </item>
26
+ <item>
27
+ <widget class="QComboBox" name="comboBox_plots">
28
+ <property name="sizeAdjustPolicy">
29
+ <enum>QComboBox::AdjustToContents</enum>
30
+ </property>
31
+ </widget>
32
+ </item>
33
+ <item>
34
+ <spacer name="horizontalSpacer_2">
35
+ <property name="orientation">
36
+ <enum>Qt::Horizontal</enum>
37
+ </property>
38
+ <property name="sizeHint" stdset="0">
39
+ <size>
40
+ <width>0</width>
41
+ <height>20</height>
42
+ </size>
43
+ </property>
44
+ </spacer>
45
+ </item>
46
+ <item>
47
+ <widget class="QToolButton" name="toolButton_duplicate">
48
+ <property name="toolTip">
49
+ <string>Duplicate this plot</string>
50
+ </property>
51
+ <property name="text">
52
+ <string>Duplicate</string>
53
+ </property>
54
+ <property name="icon">
55
+ <iconset theme="edit-paste">
56
+ <normaloff>.</normaloff>.</iconset>
57
+ </property>
58
+ </widget>
59
+ </item>
60
+ <item>
61
+ <widget class="QToolButton" name="toolButton_remove">
62
+ <property name="toolTip">
63
+ <string>Remove this plot</string>
64
+ </property>
65
+ <property name="text">
66
+ <string>Remove</string>
67
+ </property>
68
+ <property name="icon">
69
+ <iconset theme="remove">
70
+ <normaloff>.</normaloff>.</iconset>
71
+ </property>
72
+ </widget>
73
+ </item>
74
+ </layout>
75
+ </item>
76
+ <item>
77
+ <widget class="Line" name="line">
78
+ <property name="orientation">
79
+ <enum>Qt::Horizontal</enum>
80
+ </property>
81
+ </widget>
82
+ </item>
83
+ <item>
84
+ <layout class="QVBoxLayout" name="verticalLayout_4">
85
+ <property name="leftMargin">
86
+ <number>9</number>
87
+ </property>
88
+ <property name="topMargin">
89
+ <number>0</number>
90
+ </property>
91
+ <property name="bottomMargin">
92
+ <number>0</number>
93
+ </property>
94
+ <item>
95
+ <layout class="QHBoxLayout" name="horizontalLayout_4">
96
+ <item>
97
+ <widget class="QLabel" name="label_2">
98
+ <property name="text">
99
+ <string>Name</string>
100
+ </property>
101
+ </widget>
102
+ </item>
103
+ <item>
104
+ <widget class="QLineEdit" name="lineEdit"/>
105
+ </item>
106
+ </layout>
107
+ </item>
108
+ <item>
109
+ <widget class="QGroupBox" name="groupBox">
110
+ <property name="title">
111
+ <string>Layout</string>
112
+ </property>
113
+ <layout class="QVBoxLayout" name="verticalLayout_6">
114
+ <item>
115
+ <layout class="QGridLayout" name="gridLayout_5">
116
+ <property name="bottomMargin">
117
+ <number>0</number>
118
+ </property>
119
+ <item row="0" column="0">
120
+ <widget class="QLabel" name="label_3">
121
+ <property name="text">
122
+ <string>Division</string>
123
+ </property>
124
+ </widget>
125
+ </item>
126
+ <item row="0" column="1">
127
+ <layout class="QHBoxLayout" name="horizontalLayout_11">
128
+ <item>
129
+ <widget class="QComboBox" name="comboBox_division">
130
+ <item>
131
+ <property name="text">
132
+ <string>Multiple Plots</string>
133
+ </property>
134
+ </item>
135
+ <item>
136
+ <property name="text">
137
+ <string>Joint Plot</string>
138
+ </property>
139
+ </item>
140
+ </widget>
141
+ </item>
142
+ <item>
143
+ <widget class="QSpinBox" name="spinBox_column_count">
144
+ <property name="suffix">
145
+ <string> column(s)</string>
146
+ </property>
147
+ <property name="minimum">
148
+ <number>1</number>
149
+ </property>
150
+ </widget>
151
+ </item>
152
+ <item>
153
+ <spacer name="horizontalSpacer_13">
154
+ <property name="orientation">
155
+ <enum>Qt::Horizontal</enum>
156
+ </property>
157
+ <property name="sizeHint" stdset="0">
158
+ <size>
159
+ <width>0</width>
160
+ <height>20</height>
161
+ </size>
162
+ </property>
163
+ </spacer>
164
+ </item>
165
+ </layout>
166
+ </item>
167
+ <item row="1" column="0">
168
+ <widget class="QLabel" name="label_13">
169
+ <property name="text">
170
+ <string>Size</string>
171
+ </property>
172
+ </widget>
173
+ </item>
174
+ <item row="1" column="1">
175
+ <layout class="QHBoxLayout" name="horizontalLayout_12">
176
+ <item>
177
+ <widget class="QLabel" name="label_15">
178
+ <property name="text">
179
+ <string>X</string>
180
+ </property>
181
+ </widget>
182
+ </item>
183
+ <item>
184
+ <widget class="QSpinBox" name="spinBox_size_x">
185
+ <property name="suffix">
186
+ <string> pt</string>
187
+ </property>
188
+ <property name="minimum">
189
+ <number>100</number>
190
+ </property>
191
+ <property name="maximum">
192
+ <number>100000</number>
193
+ </property>
194
+ <property name="singleStep">
195
+ <number>50</number>
196
+ </property>
197
+ <property name="value">
198
+ <number>500</number>
199
+ </property>
200
+ </widget>
201
+ </item>
202
+ <item>
203
+ <widget class="QLabel" name="label_14">
204
+ <property name="text">
205
+ <string>Y</string>
206
+ </property>
207
+ </widget>
208
+ </item>
209
+ <item>
210
+ <widget class="QSpinBox" name="spinBox_size_y">
211
+ <property name="suffix">
212
+ <string> pt</string>
213
+ </property>
214
+ <property name="minimum">
215
+ <number>100</number>
216
+ </property>
217
+ <property name="maximum">
218
+ <number>100000</number>
219
+ </property>
220
+ <property name="singleStep">
221
+ <number>50</number>
222
+ </property>
223
+ <property name="value">
224
+ <number>400</number>
225
+ </property>
226
+ </widget>
227
+ </item>
228
+ <item>
229
+ <spacer name="horizontalSpacer_14">
230
+ <property name="orientation">
231
+ <enum>Qt::Horizontal</enum>
232
+ </property>
233
+ <property name="sizeHint" stdset="0">
234
+ <size>
235
+ <width>0</width>
236
+ <height>20</height>
237
+ </size>
238
+ </property>
239
+ </spacer>
240
+ </item>
241
+ </layout>
242
+ </item>
243
+ </layout>
244
+ </item>
245
+ <item>
246
+ <widget class="QCheckBox" name="checkBox_label_plots">
247
+ <property name="text">
248
+ <string>Label subplots</string>
249
+ </property>
250
+ <property name="checked">
251
+ <bool>true</bool>
252
+ </property>
253
+ </widget>
254
+ </item>
255
+ </layout>
256
+ </widget>
257
+ </item>
258
+ <item>
259
+ <widget class="QGroupBox" name="groupBox_2">
260
+ <property name="title">
261
+ <string>General</string>
262
+ </property>
263
+ <layout class="QVBoxLayout" name="verticalLayout_5">
264
+ <item>
265
+ <layout class="QGridLayout" name="gridLayout">
266
+ <item row="6" column="1">
267
+ <layout class="QHBoxLayout" name="horizontalLayout_10">
268
+ <item>
269
+ <widget class="QComboBox" name="comboBox_kde">
270
+ <item>
271
+ <property name="text">
272
+ <string>Histogram</string>
273
+ </property>
274
+ </item>
275
+ </widget>
276
+ </item>
277
+ <item>
278
+ <spacer name="horizontalSpacer_12">
279
+ <property name="orientation">
280
+ <enum>Qt::Horizontal</enum>
281
+ </property>
282
+ <property name="sizeHint" stdset="0">
283
+ <size>
284
+ <width>40</width>
285
+ <height>20</height>
286
+ </size>
287
+ </property>
288
+ </spacer>
289
+ </item>
290
+ </layout>
291
+ </item>
292
+ <item row="4" column="1">
293
+ <layout class="QHBoxLayout" name="horizontalLayout_8">
294
+ <item>
295
+ <widget class="FeatureComboBox" name="comboBox_axis_y"/>
296
+ </item>
297
+ <item>
298
+ <widget class="QComboBox" name="comboBox_scale_y">
299
+ <item>
300
+ <property name="text">
301
+ <string>linear</string>
302
+ </property>
303
+ </item>
304
+ <item>
305
+ <property name="text">
306
+ <string>logarithmic</string>
307
+ </property>
308
+ </item>
309
+ </widget>
310
+ </item>
311
+ <item>
312
+ <spacer name="horizontalSpacer_11">
313
+ <property name="orientation">
314
+ <enum>Qt::Horizontal</enum>
315
+ </property>
316
+ <property name="sizeHint" stdset="0">
317
+ <size>
318
+ <width>0</width>
319
+ <height>20</height>
320
+ </size>
321
+ </property>
322
+ </spacer>
323
+ </item>
324
+ </layout>
325
+ </item>
326
+ <item row="6" column="0">
327
+ <widget class="QLabel" name="label_9">
328
+ <property name="toolTip">
329
+ <string>Kernel Density Estimator</string>
330
+ </property>
331
+ <property name="text">
332
+ <string>KDE</string>
333
+ </property>
334
+ </widget>
335
+ </item>
336
+ <item row="2" column="1">
337
+ <layout class="QHBoxLayout" name="horizontalLayout_7">
338
+ <property name="rightMargin">
339
+ <number>0</number>
340
+ </property>
341
+ <item>
342
+ <widget class="FeatureComboBox" name="comboBox_axis_x">
343
+ <property name="sizePolicy">
344
+ <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
345
+ <horstretch>0</horstretch>
346
+ <verstretch>0</verstretch>
347
+ </sizepolicy>
348
+ </property>
349
+ </widget>
350
+ </item>
351
+ <item>
352
+ <widget class="QComboBox" name="comboBox_scale_x">
353
+ <item>
354
+ <property name="text">
355
+ <string>linear</string>
356
+ </property>
357
+ </item>
358
+ <item>
359
+ <property name="text">
360
+ <string>logarithmic</string>
361
+ </property>
362
+ </item>
363
+ </widget>
364
+ </item>
365
+ <item>
366
+ <spacer name="horizontalSpacer_3">
367
+ <property name="orientation">
368
+ <enum>Qt::Horizontal</enum>
369
+ </property>
370
+ <property name="sizeHint" stdset="0">
371
+ <size>
372
+ <width>0</width>
373
+ <height>20</height>
374
+ </size>
375
+ </property>
376
+ </spacer>
377
+ </item>
378
+ </layout>
379
+ </item>
380
+ <item row="4" column="0">
381
+ <widget class="QLabel" name="label_7">
382
+ <property name="text">
383
+ <string>Y axis</string>
384
+ </property>
385
+ </widget>
386
+ </item>
387
+ <item row="5" column="1">
388
+ <widget class="RangeControl" name="widget_range_y" native="true">
389
+ <property name="minimumSize">
390
+ <size>
391
+ <width>0</width>
392
+ <height>25</height>
393
+ </size>
394
+ </property>
395
+ </widget>
396
+ </item>
397
+ <item row="3" column="1">
398
+ <widget class="RangeControl" name="widget_range_x" native="true">
399
+ <property name="minimumSize">
400
+ <size>
401
+ <width>0</width>
402
+ <height>25</height>
403
+ </size>
404
+ </property>
405
+ </widget>
406
+ </item>
407
+ <item row="2" column="0">
408
+ <widget class="QLabel" name="label_6">
409
+ <property name="text">
410
+ <string>X axis</string>
411
+ </property>
412
+ </widget>
413
+ </item>
414
+ </layout>
415
+ </item>
416
+ <item>
417
+ <layout class="QHBoxLayout" name="horizontalLayout_3">
418
+ <item>
419
+ <widget class="QCheckBox" name="checkBox_isoelastics">
420
+ <property name="text">
421
+ <string>Isoelasticity lines</string>
422
+ </property>
423
+ <property name="checked">
424
+ <bool>true</bool>
425
+ </property>
426
+ </widget>
427
+ </item>
428
+ <item>
429
+ <widget class="QComboBox" name="comboBox_lut"/>
430
+ </item>
431
+ <item>
432
+ <spacer name="horizontalSpacer_5">
433
+ <property name="orientation">
434
+ <enum>Qt::Horizontal</enum>
435
+ </property>
436
+ <property name="sizeHint" stdset="0">
437
+ <size>
438
+ <width>0</width>
439
+ <height>20</height>
440
+ </size>
441
+ </property>
442
+ </spacer>
443
+ </item>
444
+ </layout>
445
+ </item>
446
+ <item>
447
+ <layout class="QHBoxLayout" name="horizontalLayout_19">
448
+ <item>
449
+ <widget class="QCheckBox" name="checkBox_auto_range">
450
+ <property name="text">
451
+ <string>Auto XY-range</string>
452
+ </property>
453
+ <property name="checked">
454
+ <bool>true</bool>
455
+ </property>
456
+ </widget>
457
+ </item>
458
+ <item>
459
+ <spacer name="horizontalSpacer">
460
+ <property name="orientation">
461
+ <enum>Qt::Horizontal</enum>
462
+ </property>
463
+ <property name="sizeHint" stdset="0">
464
+ <size>
465
+ <width>40</width>
466
+ <height>20</height>
467
+ </size>
468
+ </property>
469
+ </spacer>
470
+ </item>
471
+ </layout>
472
+ </item>
473
+ </layout>
474
+ </widget>
475
+ </item>
476
+ <item>
477
+ <widget class="QGroupBox" name="groupBox_scatter">
478
+ <property name="title">
479
+ <string>Scatter plot</string>
480
+ </property>
481
+ <property name="checkable">
482
+ <bool>true</bool>
483
+ </property>
484
+ <layout class="QVBoxLayout" name="verticalLayout_3" stretch="0,0,0">
485
+ <property name="sizeConstraint">
486
+ <enum>QLayout::SetDefaultConstraint</enum>
487
+ </property>
488
+ <item>
489
+ <layout class="QHBoxLayout" name="horizontalLayout_2">
490
+ <item>
491
+ <widget class="QCheckBox" name="checkBox_downsample">
492
+ <property name="text">
493
+ <string>Downsampling</string>
494
+ </property>
495
+ <property name="checked">
496
+ <bool>true</bool>
497
+ </property>
498
+ </widget>
499
+ </item>
500
+ <item>
501
+ <widget class="QSpinBox" name="spinBox_downsample">
502
+ <property name="suffix">
503
+ <string> events</string>
504
+ </property>
505
+ <property name="minimum">
506
+ <number>10</number>
507
+ </property>
508
+ <property name="maximum">
509
+ <number>999999999</number>
510
+ </property>
511
+ <property name="singleStep">
512
+ <number>100</number>
513
+ </property>
514
+ <property name="value">
515
+ <number>5000</number>
516
+ </property>
517
+ </widget>
518
+ </item>
519
+ <item>
520
+ <spacer name="horizontalSpacer_4">
521
+ <property name="orientation">
522
+ <enum>Qt::Horizontal</enum>
523
+ </property>
524
+ <property name="sizeHint" stdset="0">
525
+ <size>
526
+ <width>40</width>
527
+ <height>20</height>
528
+ </size>
529
+ </property>
530
+ </spacer>
531
+ </item>
532
+ </layout>
533
+ </item>
534
+ <item>
535
+ <layout class="QGridLayout" name="gridLayout_scat">
536
+ <property name="sizeConstraint">
537
+ <enum>QLayout::SetMinimumSize</enum>
538
+ </property>
539
+ <item row="0" column="0">
540
+ <widget class="QLabel" name="label_4">
541
+ <property name="text">
542
+ <string>Marker size</string>
543
+ </property>
544
+ </widget>
545
+ </item>
546
+ <item row="1" column="0">
547
+ <widget class="QLabel" name="label_8">
548
+ <property name="text">
549
+ <string>Marker hue</string>
550
+ </property>
551
+ </widget>
552
+ </item>
553
+ <item row="3" column="0">
554
+ <widget class="QLabel" name="label_colormap">
555
+ <property name="text">
556
+ <string>Colormap</string>
557
+ </property>
558
+ </widget>
559
+ </item>
560
+ <item row="1" column="3">
561
+ <layout class="QHBoxLayout" name="horizontalLayout_5">
562
+ <property name="spacing">
563
+ <number>0</number>
564
+ </property>
565
+ <property name="rightMargin">
566
+ <number>0</number>
567
+ </property>
568
+ </layout>
569
+ </item>
570
+ <item row="2" column="1">
571
+ <widget class="RangeControl" name="widget_range_feat" native="true">
572
+ <property name="minimumSize">
573
+ <size>
574
+ <width>0</width>
575
+ <height>25</height>
576
+ </size>
577
+ </property>
578
+ </widget>
579
+ </item>
580
+ <item row="0" column="1">
581
+ <layout class="QHBoxLayout" name="horizontalLayout_16">
582
+ <item>
583
+ <widget class="QDoubleSpinBox" name="doubleSpinBox_marker_size">
584
+ <property name="suffix">
585
+ <string> pt</string>
586
+ </property>
587
+ <property name="decimals">
588
+ <number>1</number>
589
+ </property>
590
+ <property name="minimum">
591
+ <double>-999999999999989.000000000000000</double>
592
+ </property>
593
+ <property name="value">
594
+ <double>3.000000000000000</double>
595
+ </property>
596
+ </widget>
597
+ </item>
598
+ <item>
599
+ <spacer name="horizontalSpacer_6">
600
+ <property name="orientation">
601
+ <enum>Qt::Horizontal</enum>
602
+ </property>
603
+ <property name="sizeHint" stdset="0">
604
+ <size>
605
+ <width>0</width>
606
+ <height>20</height>
607
+ </size>
608
+ </property>
609
+ </spacer>
610
+ </item>
611
+ </layout>
612
+ </item>
613
+ <item row="1" column="1">
614
+ <layout class="QHBoxLayout" name="horizontalLayout_17">
615
+ <item>
616
+ <widget class="QComboBox" name="comboBox_marker_hue">
617
+ <item>
618
+ <property name="text">
619
+ <string>KDE</string>
620
+ </property>
621
+ </item>
622
+ <item>
623
+ <property name="text">
624
+ <string>Dataset</string>
625
+ </property>
626
+ </item>
627
+ <item>
628
+ <property name="text">
629
+ <string>Feature</string>
630
+ </property>
631
+ </item>
632
+ <item>
633
+ <property name="text">
634
+ <string>Disabled</string>
635
+ </property>
636
+ </item>
637
+ </widget>
638
+ </item>
639
+ <item>
640
+ <widget class="FeatureComboBox" name="comboBox_marker_feature">
641
+ <item>
642
+ <property name="text">
643
+ <string>Area [µm]</string>
644
+ </property>
645
+ </item>
646
+ </widget>
647
+ </item>
648
+ <item>
649
+ <widget class="QWidget" name="widget_dataset_alpha" native="true">
650
+ <layout class="QHBoxLayout" name="horizontalLayout_9">
651
+ <property name="leftMargin">
652
+ <number>0</number>
653
+ </property>
654
+ <property name="topMargin">
655
+ <number>0</number>
656
+ </property>
657
+ <property name="rightMargin">
658
+ <number>0</number>
659
+ </property>
660
+ <property name="bottomMargin">
661
+ <number>0</number>
662
+ </property>
663
+ <item>
664
+ <widget class="QLabel" name="label_12">
665
+ <property name="text">
666
+ <string>Alpha: </string>
667
+ </property>
668
+ </widget>
669
+ </item>
670
+ <item>
671
+ <widget class="QSpinBox" name="spinBox_alpha">
672
+ <property name="suffix">
673
+ <string> %</string>
674
+ </property>
675
+ <property name="minimum">
676
+ <number>1</number>
677
+ </property>
678
+ <property name="maximum">
679
+ <number>100</number>
680
+ </property>
681
+ <property name="singleStep">
682
+ <number>5</number>
683
+ </property>
684
+ <property name="value">
685
+ <number>80</number>
686
+ </property>
687
+ </widget>
688
+ </item>
689
+ </layout>
690
+ </widget>
691
+ </item>
692
+ <item>
693
+ <spacer name="horizontalSpacer_8">
694
+ <property name="orientation">
695
+ <enum>Qt::Horizontal</enum>
696
+ </property>
697
+ <property name="sizeHint" stdset="0">
698
+ <size>
699
+ <width>0</width>
700
+ <height>20</height>
701
+ </size>
702
+ </property>
703
+ </spacer>
704
+ </item>
705
+ </layout>
706
+ </item>
707
+ <item row="3" column="1">
708
+ <layout class="QHBoxLayout" name="horizontalLayout_18">
709
+ <item>
710
+ <widget class="QComboBox" name="comboBox_colormap"/>
711
+ </item>
712
+ <item>
713
+ <spacer name="horizontalSpacer_16">
714
+ <property name="orientation">
715
+ <enum>Qt::Horizontal</enum>
716
+ </property>
717
+ <property name="sizeHint" stdset="0">
718
+ <size>
719
+ <width>0</width>
720
+ <height>20</height>
721
+ </size>
722
+ </property>
723
+ </spacer>
724
+ </item>
725
+ </layout>
726
+ </item>
727
+ </layout>
728
+ </item>
729
+ <item>
730
+ <widget class="QCheckBox" name="checkBox_event_count">
731
+ <property name="text">
732
+ <string>Show event count</string>
733
+ </property>
734
+ <property name="checked">
735
+ <bool>true</bool>
736
+ </property>
737
+ </widget>
738
+ </item>
739
+ </layout>
740
+ </widget>
741
+ </item>
742
+ <item>
743
+ <widget class="QGroupBox" name="groupBox_contour">
744
+ <property name="title">
745
+ <string>Contour density plot</string>
746
+ </property>
747
+ <property name="checkable">
748
+ <bool>true</bool>
749
+ </property>
750
+ <property name="checked">
751
+ <bool>true</bool>
752
+ </property>
753
+ <layout class="QVBoxLayout" name="verticalLayout_2">
754
+ <item>
755
+ <layout class="QGridLayout" name="gridLayout_4">
756
+ <property name="bottomMargin">
757
+ <number>0</number>
758
+ </property>
759
+ <item row="1" column="0">
760
+ <widget class="QLabel" name="label_10">
761
+ <property name="text">
762
+ <string>Level 1</string>
763
+ </property>
764
+ </widget>
765
+ </item>
766
+ <item row="1" column="1">
767
+ <layout class="QHBoxLayout" name="horizontalLayout_13">
768
+ <property name="rightMargin">
769
+ <number>0</number>
770
+ </property>
771
+ <item>
772
+ <widget class="QDoubleSpinBox" name="doubleSpinBox_perc_1">
773
+ <property name="prefix">
774
+ <string/>
775
+ </property>
776
+ <property name="suffix">
777
+ <string>th percentile</string>
778
+ </property>
779
+ <property name="decimals">
780
+ <number>0</number>
781
+ </property>
782
+ <property name="value">
783
+ <double>50.000000000000000</double>
784
+ </property>
785
+ </widget>
786
+ </item>
787
+ <item>
788
+ <widget class="QDoubleSpinBox" name="doubleSpinBox_lw_1">
789
+ <property name="suffix">
790
+ <string> pt</string>
791
+ </property>
792
+ <property name="minimum">
793
+ <double>0.100000000000000</double>
794
+ </property>
795
+ <property name="maximum">
796
+ <double>7.000000000000000</double>
797
+ </property>
798
+ <property name="singleStep">
799
+ <double>0.300000000000000</double>
800
+ </property>
801
+ <property name="value">
802
+ <double>3.000000000000000</double>
803
+ </property>
804
+ </widget>
805
+ </item>
806
+ <item>
807
+ <widget class="QComboBox" name="comboBox_ls_1">
808
+ <property name="currentIndex">
809
+ <number>0</number>
810
+ </property>
811
+ <item>
812
+ <property name="text">
813
+ <string>solid</string>
814
+ </property>
815
+ </item>
816
+ <item>
817
+ <property name="text">
818
+ <string>dashed</string>
819
+ </property>
820
+ </item>
821
+ </widget>
822
+ </item>
823
+ </layout>
824
+ </item>
825
+ <item row="2" column="0">
826
+ <widget class="QLabel" name="label_11">
827
+ <property name="text">
828
+ <string>Level 2</string>
829
+ </property>
830
+ </widget>
831
+ </item>
832
+ <item row="2" column="1">
833
+ <layout class="QHBoxLayout" name="horizontalLayout_14">
834
+ <item>
835
+ <widget class="QDoubleSpinBox" name="doubleSpinBox_perc_2">
836
+ <property name="suffix">
837
+ <string>th percentile</string>
838
+ </property>
839
+ <property name="decimals">
840
+ <number>0</number>
841
+ </property>
842
+ <property name="value">
843
+ <double>95.000000000000000</double>
844
+ </property>
845
+ </widget>
846
+ </item>
847
+ <item>
848
+ <widget class="QDoubleSpinBox" name="doubleSpinBox_lw_2">
849
+ <property name="suffix">
850
+ <string> pt</string>
851
+ </property>
852
+ <property name="minimum">
853
+ <double>0.100000000000000</double>
854
+ </property>
855
+ <property name="maximum">
856
+ <double>7.000000000000000</double>
857
+ </property>
858
+ <property name="singleStep">
859
+ <double>0.300000000000000</double>
860
+ </property>
861
+ <property name="value">
862
+ <double>1.500000000000000</double>
863
+ </property>
864
+ </widget>
865
+ </item>
866
+ <item>
867
+ <widget class="QComboBox" name="comboBox_ls_2">
868
+ <property name="currentIndex">
869
+ <number>1</number>
870
+ </property>
871
+ <item>
872
+ <property name="text">
873
+ <string>solid</string>
874
+ </property>
875
+ </item>
876
+ <item>
877
+ <property name="text">
878
+ <string>dashed</string>
879
+ </property>
880
+ </item>
881
+ </widget>
882
+ </item>
883
+ </layout>
884
+ </item>
885
+ <item row="3" column="1">
886
+ <layout class="QHBoxLayout" name="horizontalLayout_15">
887
+ <item>
888
+ <widget class="QLabel" name="label_16">
889
+ <property name="text">
890
+ <string>X</string>
891
+ </property>
892
+ </widget>
893
+ </item>
894
+ <item>
895
+ <widget class="QDoubleSpinBox" name="doubleSpinBox_spacing_x"/>
896
+ </item>
897
+ <item>
898
+ <widget class="QLabel" name="label_17">
899
+ <property name="text">
900
+ <string>Y</string>
901
+ </property>
902
+ </widget>
903
+ </item>
904
+ <item>
905
+ <widget class="QDoubleSpinBox" name="doubleSpinBox_spacing_y"/>
906
+ </item>
907
+ <item>
908
+ <widget class="QToolButton" name="toolButton_spacing_auto">
909
+ <property name="text">
910
+ <string>Find best spacing</string>
911
+ </property>
912
+ </widget>
913
+ </item>
914
+ <item>
915
+ <spacer name="horizontalSpacer_15">
916
+ <property name="orientation">
917
+ <enum>Qt::Horizontal</enum>
918
+ </property>
919
+ <property name="sizeHint" stdset="0">
920
+ <size>
921
+ <width>0</width>
922
+ <height>20</height>
923
+ </size>
924
+ </property>
925
+ </spacer>
926
+ </item>
927
+ </layout>
928
+ </item>
929
+ <item row="3" column="0">
930
+ <widget class="QLabel" name="label_5">
931
+ <property name="text">
932
+ <string>Spacing</string>
933
+ </property>
934
+ </widget>
935
+ </item>
936
+ <item row="1" column="5">
937
+ <spacer name="horizontalSpacer_7">
938
+ <property name="orientation">
939
+ <enum>Qt::Horizontal</enum>
940
+ </property>
941
+ <property name="sizeHint" stdset="0">
942
+ <size>
943
+ <width>0</width>
944
+ <height>20</height>
945
+ </size>
946
+ </property>
947
+ </spacer>
948
+ </item>
949
+ </layout>
950
+ </item>
951
+ <item>
952
+ <widget class="QCheckBox" name="checkBox_legend">
953
+ <property name="text">
954
+ <string>Legend</string>
955
+ </property>
956
+ <property name="checked">
957
+ <bool>false</bool>
958
+ </property>
959
+ </widget>
960
+ </item>
961
+ </layout>
962
+ </widget>
963
+ </item>
964
+ <item>
965
+ <spacer name="verticalSpacer">
966
+ <property name="orientation">
967
+ <enum>Qt::Vertical</enum>
968
+ </property>
969
+ <property name="sizeHint" stdset="0">
970
+ <size>
971
+ <width>20</width>
972
+ <height>0</height>
973
+ </size>
974
+ </property>
975
+ </spacer>
976
+ </item>
977
+ <item>
978
+ <layout class="QHBoxLayout" name="horizontalLayout_6">
979
+ <item>
980
+ <spacer name="horizontalSpacer_9">
981
+ <property name="orientation">
982
+ <enum>Qt::Horizontal</enum>
983
+ </property>
984
+ <property name="sizeHint" stdset="0">
985
+ <size>
986
+ <width>40</width>
987
+ <height>20</height>
988
+ </size>
989
+ </property>
990
+ </spacer>
991
+ </item>
992
+ <item>
993
+ <widget class="QPushButton" name="pushButton_reset">
994
+ <property name="text">
995
+ <string>Reset</string>
996
+ </property>
997
+ </widget>
998
+ </item>
999
+ <item>
1000
+ <spacer name="horizontalSpacer_10">
1001
+ <property name="orientation">
1002
+ <enum>Qt::Horizontal</enum>
1003
+ </property>
1004
+ <property name="sizeType">
1005
+ <enum>QSizePolicy::Fixed</enum>
1006
+ </property>
1007
+ <property name="sizeHint" stdset="0">
1008
+ <size>
1009
+ <width>40</width>
1010
+ <height>20</height>
1011
+ </size>
1012
+ </property>
1013
+ </spacer>
1014
+ </item>
1015
+ <item>
1016
+ <widget class="QPushButton" name="pushButton_apply">
1017
+ <property name="text">
1018
+ <string>Apply</string>
1019
+ </property>
1020
+ </widget>
1021
+ </item>
1022
+ </layout>
1023
+ </item>
1024
+ </layout>
1025
+ </item>
1026
+ </layout>
1027
+ </widget>
1028
+ <customwidgets>
1029
+ <customwidget>
1030
+ <class>FeatureComboBox</class>
1031
+ <extends>QComboBox</extends>
1032
+ <header>dcscope.gui.widgets</header>
1033
+ </customwidget>
1034
+ <customwidget>
1035
+ <class>RangeControl</class>
1036
+ <extends>QWidget</extends>
1037
+ <header>dcscope.gui.widgets</header>
1038
+ <container>1</container>
1039
+ </customwidget>
1040
+ </customwidgets>
1041
+ <resources/>
1042
+ <connections>
1043
+ <connection>
1044
+ <sender>checkBox_downsample</sender>
1045
+ <signal>toggled(bool)</signal>
1046
+ <receiver>spinBox_downsample</receiver>
1047
+ <slot>setEnabled(bool)</slot>
1048
+ <hints>
1049
+ <hint type="sourcelabel">
1050
+ <x>93</x>
1051
+ <y>484</y>
1052
+ </hint>
1053
+ <hint type="destinationlabel">
1054
+ <x>240</x>
1055
+ <y>484</y>
1056
+ </hint>
1057
+ </hints>
1058
+ </connection>
1059
+ </connections>
1060
+ </ui>