computeOctreeDlg.ui 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>ComputeOctreeDialog</class>
  4. <widget class="QDialog" name="ComputeOctreeDialog">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>300</width>
  10. <height>180</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Compute Octree</string>
  15. </property>
  16. <layout class="QVBoxLayout" name="verticalLayout">
  17. <item>
  18. <widget class="QLabel" name="headerLabel">
  19. <property name="text">
  20. <string>Max subdivision level: ??</string>
  21. </property>
  22. </widget>
  23. </item>
  24. <item>
  25. <widget class="QGroupBox" name="">
  26. <property name="title">
  27. <string>Octree box</string>
  28. </property>
  29. <layout class="QFormLayout" name="formLayout">
  30. <item row="0" column="0">
  31. <widget class="QRadioButton" name="defaultRadioButton">
  32. <property name="text">
  33. <string>Default</string>
  34. </property>
  35. <property name="checked">
  36. <bool>true</bool>
  37. </property>
  38. </widget>
  39. </item>
  40. <item row="1" column="0">
  41. <widget class="QRadioButton" name="cellSizeRadioButton">
  42. <property name="text">
  43. <string>Cell size at max level</string>
  44. </property>
  45. </widget>
  46. </item>
  47. <item row="1" column="1">
  48. <widget class="QDoubleSpinBox" name="cellSizeDoubleSpinBox">
  49. <property name="enabled">
  50. <bool>false</bool>
  51. </property>
  52. <property name="decimals">
  53. <number>6</number>
  54. </property>
  55. <property name="maximum">
  56. <double>1000000000.000000000000000</double>
  57. </property>
  58. </widget>
  59. </item>
  60. <item row="2" column="0">
  61. <widget class="QRadioButton" name="customBBRadioButton">
  62. <property name="text">
  63. <string>Custom bounding box</string>
  64. </property>
  65. </widget>
  66. </item>
  67. <item row="2" column="1">
  68. <widget class="QToolButton" name="customBBToolButton">
  69. <property name="enabled">
  70. <bool>false</bool>
  71. </property>
  72. <property name="text">
  73. <string>Edit</string>
  74. </property>
  75. </widget>
  76. </item>
  77. </layout>
  78. </widget>
  79. </item>
  80. <item>
  81. <spacer name="verticalSpacer">
  82. <property name="orientation">
  83. <enum>Qt::Vertical</enum>
  84. </property>
  85. <property name="sizeHint" stdset="0">
  86. <size>
  87. <width>20</width>
  88. <height>4</height>
  89. </size>
  90. </property>
  91. </spacer>
  92. </item>
  93. <item>
  94. <widget class="QDialogButtonBox" name="buttonBox">
  95. <property name="orientation">
  96. <enum>Qt::Horizontal</enum>
  97. </property>
  98. <property name="standardButtons">
  99. <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
  100. </property>
  101. </widget>
  102. </item>
  103. </layout>
  104. </widget>
  105. <resources/>
  106. <connections>
  107. <connection>
  108. <sender>buttonBox</sender>
  109. <signal>accepted()</signal>
  110. <receiver>ComputeOctreeDialog</receiver>
  111. <slot>accept()</slot>
  112. <hints>
  113. <hint type="sourcelabel">
  114. <x>248</x>
  115. <y>254</y>
  116. </hint>
  117. <hint type="destinationlabel">
  118. <x>157</x>
  119. <y>274</y>
  120. </hint>
  121. </hints>
  122. </connection>
  123. <connection>
  124. <sender>buttonBox</sender>
  125. <signal>rejected()</signal>
  126. <receiver>ComputeOctreeDialog</receiver>
  127. <slot>reject()</slot>
  128. <hints>
  129. <hint type="sourcelabel">
  130. <x>316</x>
  131. <y>260</y>
  132. </hint>
  133. <hint type="destinationlabel">
  134. <x>286</x>
  135. <y>274</y>
  136. </hint>
  137. </hints>
  138. </connection>
  139. <connection>
  140. <sender>cellSizeRadioButton</sender>
  141. <signal>toggled(bool)</signal>
  142. <receiver>cellSizeDoubleSpinBox</receiver>
  143. <slot>setEnabled(bool)</slot>
  144. <hints>
  145. <hint type="sourcelabel">
  146. <x>79</x>
  147. <y>82</y>
  148. </hint>
  149. <hint type="destinationlabel">
  150. <x>216</x>
  151. <y>83</y>
  152. </hint>
  153. </hints>
  154. </connection>
  155. <connection>
  156. <sender>customBBRadioButton</sender>
  157. <signal>toggled(bool)</signal>
  158. <receiver>customBBToolButton</receiver>
  159. <slot>setEnabled(bool)</slot>
  160. <hints>
  161. <hint type="sourcelabel">
  162. <x>82</x>
  163. <y>108</y>
  164. </hint>
  165. <hint type="destinationlabel">
  166. <x>167</x>
  167. <y>109</y>
  168. </hint>
  169. </hints>
  170. </connection>
  171. </connections>
  172. </ui>