filterByValueDlg.ui 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>FilterByValueDialog</class>
  4. <widget class="QDialog" name="FilterByValueDialog">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>432</width>
  10. <height>99</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Filter by value</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>Range</string>
  23. </property>
  24. </widget>
  25. </item>
  26. <item>
  27. <widget class="QDoubleSpinBox" name="minDoubleSpinBox">
  28. <property name="toolTip">
  29. <string>Min range value</string>
  30. </property>
  31. <property name="decimals">
  32. <number>8</number>
  33. </property>
  34. <property name="minimum">
  35. <double>-1000000000.000000000000000</double>
  36. </property>
  37. <property name="maximum">
  38. <double>1000000000.000000000000000</double>
  39. </property>
  40. </widget>
  41. </item>
  42. <item>
  43. <widget class="QLabel" name="label_2">
  44. <property name="sizePolicy">
  45. <sizepolicy hsizetype="Maximum" vsizetype="Preferred">
  46. <horstretch>0</horstretch>
  47. <verstretch>0</verstretch>
  48. </sizepolicy>
  49. </property>
  50. <property name="text">
  51. <string notr="true">-</string>
  52. </property>
  53. <property name="alignment">
  54. <set>Qt::AlignCenter</set>
  55. </property>
  56. </widget>
  57. </item>
  58. <item>
  59. <widget class="QDoubleSpinBox" name="maxDoubleSpinBox">
  60. <property name="toolTip">
  61. <string>Max range value</string>
  62. </property>
  63. <property name="decimals">
  64. <number>8</number>
  65. </property>
  66. <property name="minimum">
  67. <double>-1000000000.000000000000000</double>
  68. </property>
  69. <property name="maximum">
  70. <double>1000000000.000000000000000</double>
  71. </property>
  72. </widget>
  73. </item>
  74. </layout>
  75. </item>
  76. <item>
  77. <layout class="QHBoxLayout" name="horizontalLayout_2">
  78. <item>
  79. <widget class="QPushButton" name="exportPushButton">
  80. <property name="toolTip">
  81. <string>Exports the points falling inside the specified range.</string>
  82. </property>
  83. <property name="text">
  84. <string>Export</string>
  85. </property>
  86. </widget>
  87. </item>
  88. <item>
  89. <widget class="QPushButton" name="splitPushButton">
  90. <property name="toolTip">
  91. <string>Creates two clouds: one with the points falling inside the specified range,
  92. the other with the points falling outside.</string>
  93. </property>
  94. <property name="text">
  95. <string>Split</string>
  96. </property>
  97. </widget>
  98. </item>
  99. <item>
  100. <widget class="QPushButton" name="cancelPushButton">
  101. <property name="text">
  102. <string>Cancel</string>
  103. </property>
  104. </widget>
  105. </item>
  106. </layout>
  107. </item>
  108. <item>
  109. <spacer name="verticalSpacer">
  110. <property name="orientation">
  111. <enum>Qt::Vertical</enum>
  112. </property>
  113. <property name="sizeHint" stdset="0">
  114. <size>
  115. <width>20</width>
  116. <height>2</height>
  117. </size>
  118. </property>
  119. </spacer>
  120. </item>
  121. </layout>
  122. </widget>
  123. <resources/>
  124. <connections>
  125. <connection>
  126. <sender>cancelPushButton</sender>
  127. <signal>clicked()</signal>
  128. <receiver>FilterByValueDialog</receiver>
  129. <slot>reject()</slot>
  130. <hints>
  131. <hint type="sourcelabel">
  132. <x>286</x>
  133. <y>49</y>
  134. </hint>
  135. <hint type="destinationlabel">
  136. <x>174</x>
  137. <y>38</y>
  138. </hint>
  139. </hints>
  140. </connection>
  141. </connections>
  142. </ui>