sectionExtractionSubDlg.ui 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>SectionExtractionSubDlg</class>
  4. <widget class="QDialog" name="SectionExtractionSubDlg">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>329</width>
  10. <height>392</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Extract Sections</string>
  15. </property>
  16. <layout class="QVBoxLayout" name="verticalLayout">
  17. <item>
  18. <widget class="QFrame" name="frame">
  19. <layout class="QFormLayout" name="formLayout_2">
  20. <item row="0" column="0">
  21. <widget class="QLabel" name="label_5">
  22. <property name="text">
  23. <string>Active section(s)</string>
  24. </property>
  25. </widget>
  26. </item>
  27. <item row="0" column="1">
  28. <widget class="QLabel" name="activeSectionsLabel">
  29. <property name="text">
  30. <string notr="true">0</string>
  31. </property>
  32. </widget>
  33. </item>
  34. <item row="1" column="0">
  35. <widget class="QLabel" name="label">
  36. <property name="text">
  37. <string>Sections thickness</string>
  38. </property>
  39. </widget>
  40. </item>
  41. <item row="1" column="1">
  42. <widget class="QDoubleSpinBox" name="thicknessDoubleSpinBox">
  43. <property name="toolTip">
  44. <string>Thickness of each section (depends on the cloud density)</string>
  45. </property>
  46. <property name="decimals">
  47. <number>6</number>
  48. </property>
  49. <property name="maximum">
  50. <double>1000000000.000000000000000</double>
  51. </property>
  52. </widget>
  53. </item>
  54. </layout>
  55. </widget>
  56. </item>
  57. <item>
  58. <widget class="QGroupBox" name="extractCloudsGroupBox">
  59. <property name="toolTip">
  60. <string>To extract each section as a point cloud</string>
  61. </property>
  62. <property name="title">
  63. <string>Extract section cloud(s)</string>
  64. </property>
  65. <property name="checkable">
  66. <bool>true</bool>
  67. </property>
  68. <property name="checked">
  69. <bool>false</bool>
  70. </property>
  71. <layout class="QVBoxLayout" name="verticalLayout_2">
  72. <item>
  73. <widget class="QLabel" name="label_4">
  74. <property name="text">
  75. <string>No parameter</string>
  76. </property>
  77. </widget>
  78. </item>
  79. </layout>
  80. </widget>
  81. </item>
  82. <item>
  83. <widget class="QGroupBox" name="extractEnvelopesGroupBox">
  84. <property name="toolTip">
  85. <string>To extract the contour of each section as a polyline</string>
  86. </property>
  87. <property name="title">
  88. <string>Extract section profile(s)</string>
  89. </property>
  90. <property name="checkable">
  91. <bool>true</bool>
  92. </property>
  93. <property name="checked">
  94. <bool>true</bool>
  95. </property>
  96. <layout class="QVBoxLayout" name="verticalLayout_3">
  97. <item>
  98. <widget class="QFrame" name="frame_2">
  99. <property name="minimumSize">
  100. <size>
  101. <width>0</width>
  102. <height>50</height>
  103. </size>
  104. </property>
  105. <layout class="QFormLayout" name="formLayout">
  106. <property name="leftMargin">
  107. <number>0</number>
  108. </property>
  109. <property name="topMargin">
  110. <number>0</number>
  111. </property>
  112. <property name="rightMargin">
  113. <number>0</number>
  114. </property>
  115. <property name="bottomMargin">
  116. <number>0</number>
  117. </property>
  118. <item row="0" column="0">
  119. <widget class="QLabel" name="label_3">
  120. <property name="text">
  121. <string>type</string>
  122. </property>
  123. </widget>
  124. </item>
  125. <item row="0" column="1">
  126. <widget class="QComboBox" name="envelopeTypeComboBox">
  127. <property name="toolTip">
  128. <string>Section type (lower or upper part, or both)</string>
  129. </property>
  130. <item>
  131. <property name="text">
  132. <string>Lower</string>
  133. </property>
  134. </item>
  135. <item>
  136. <property name="text">
  137. <string>Upper</string>
  138. </property>
  139. </item>
  140. <item>
  141. <property name="text">
  142. <string>Both</string>
  143. </property>
  144. </item>
  145. </widget>
  146. </item>
  147. <item row="1" column="0">
  148. <widget class="QLabel" name="label_2">
  149. <property name="text">
  150. <string>max edge length</string>
  151. </property>
  152. </widget>
  153. </item>
  154. <item row="1" column="1">
  155. <widget class="QDoubleSpinBox" name="maxEdgeLengthDoubleSpinBox">
  156. <property name="toolTip">
  157. <string>Max output polyline edge length (the smaller, the closer to the points the contour will be).
  158. Warning: if 0, generates the convex hull.</string>
  159. </property>
  160. <property name="decimals">
  161. <number>6</number>
  162. </property>
  163. <property name="maximum">
  164. <double>1000000000.000000000000000</double>
  165. </property>
  166. </widget>
  167. </item>
  168. </layout>
  169. </widget>
  170. </item>
  171. <item>
  172. <widget class="QCheckBox" name="multiPassCheckBox">
  173. <property name="toolTip">
  174. <string>Multi-pass process where longer edges may be temporarily created to obtain a better fit... or a worst one ;)</string>
  175. </property>
  176. <property name="text">
  177. <string>multi-pass</string>
  178. </property>
  179. </widget>
  180. </item>
  181. <item>
  182. <widget class="QCheckBox" name="splitEnvelopeCheckBox">
  183. <property name="toolTip">
  184. <string>split the generated profile(s) in smaller parts to avoid creating too long edges (10 times the specified max edge length).
  185. Warning: may not be compatible with Mascaret export.</string>
  186. </property>
  187. <property name="text">
  188. <string>split profile on longer edges</string>
  189. </property>
  190. </widget>
  191. </item>
  192. <item>
  193. <widget class="QCheckBox" name="debugModeCheckBox">
  194. <property name="toolTip">
  195. <string>Display a dialog with step-by-step execution of the algorithm (debug mode - very slow)</string>
  196. </property>
  197. <property name="text">
  198. <string>visual debug mode</string>
  199. </property>
  200. </widget>
  201. </item>
  202. </layout>
  203. </widget>
  204. </item>
  205. <item>
  206. <spacer name="verticalSpacer">
  207. <property name="orientation">
  208. <enum>Qt::Vertical</enum>
  209. </property>
  210. <property name="sizeHint" stdset="0">
  211. <size>
  212. <width>20</width>
  213. <height>1</height>
  214. </size>
  215. </property>
  216. </spacer>
  217. </item>
  218. <item>
  219. <widget class="QDialogButtonBox" name="buttonBox">
  220. <property name="orientation">
  221. <enum>Qt::Horizontal</enum>
  222. </property>
  223. <property name="standardButtons">
  224. <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
  225. </property>
  226. </widget>
  227. </item>
  228. </layout>
  229. </widget>
  230. <resources/>
  231. <connections>
  232. <connection>
  233. <sender>buttonBox</sender>
  234. <signal>accepted()</signal>
  235. <receiver>SectionExtractionSubDlg</receiver>
  236. <slot>accept()</slot>
  237. <hints>
  238. <hint type="sourcelabel">
  239. <x>248</x>
  240. <y>254</y>
  241. </hint>
  242. <hint type="destinationlabel">
  243. <x>157</x>
  244. <y>274</y>
  245. </hint>
  246. </hints>
  247. </connection>
  248. <connection>
  249. <sender>buttonBox</sender>
  250. <signal>rejected()</signal>
  251. <receiver>SectionExtractionSubDlg</receiver>
  252. <slot>reject()</slot>
  253. <hints>
  254. <hint type="sourcelabel">
  255. <x>316</x>
  256. <y>260</y>
  257. </hint>
  258. <hint type="destinationlabel">
  259. <x>286</x>
  260. <y>274</y>
  261. </hint>
  262. </hints>
  263. </connection>
  264. </connections>
  265. </ui>