waveDlg.ui 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>WaveDialog</class>
  4. <widget class="QDialog" name="WaveDialog">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>600</width>
  10. <height>400</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Waveform</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>Point index</string>
  23. </property>
  24. </widget>
  25. </item>
  26. <item>
  27. <widget class="QSpinBox" name="pointIndexSpinBox"/>
  28. </item>
  29. <item>
  30. <widget class="QToolButton" name="pointPickingToolButton">
  31. <property name="toolTip">
  32. <string>Pick a 3D point (click again to cancel)</string>
  33. </property>
  34. <property name="icon">
  35. <iconset resource="../icons.qrc">
  36. <normaloff>:/CC/images/ccPointPicking.png</normaloff>:/CC/images/ccPointPicking.png</iconset>
  37. </property>
  38. <property name="checkable">
  39. <bool>true</bool>
  40. </property>
  41. </widget>
  42. </item>
  43. <item>
  44. <spacer name="horizontalSpacer">
  45. <property name="orientation">
  46. <enum>Qt::Horizontal</enum>
  47. </property>
  48. <property name="sizeHint" stdset="0">
  49. <size>
  50. <width>40</width>
  51. <height>20</height>
  52. </size>
  53. </property>
  54. </spacer>
  55. </item>
  56. <item>
  57. <widget class="QCheckBox" name="logScaleCheckBox">
  58. <property name="text">
  59. <string>log scale</string>
  60. </property>
  61. </widget>
  62. </item>
  63. <item>
  64. <widget class="QCheckBox" name="fixedAmplitudeCheckBox">
  65. <property name="text">
  66. <string>fixed amplitude</string>
  67. </property>
  68. <property name="checked">
  69. <bool>true</bool>
  70. </property>
  71. </widget>
  72. </item>
  73. <item>
  74. <widget class="QToolButton" name="saveWaveToolButton">
  75. <property name="toolTip">
  76. <string>Export wave as CSV file</string>
  77. </property>
  78. <property name="icon">
  79. <iconset resource="../icons.qrc">
  80. <normaloff>:/CC/images/smallCSVFile.png</normaloff>:/CC/images/smallCSVFile.png</iconset>
  81. </property>
  82. </widget>
  83. </item>
  84. </layout>
  85. </item>
  86. <item>
  87. <widget class="QFrame" name="waveFrame">
  88. <property name="sizePolicy">
  89. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  90. <horstretch>0</horstretch>
  91. <verstretch>0</verstretch>
  92. </sizepolicy>
  93. </property>
  94. </widget>
  95. </item>
  96. <item>
  97. <widget class="QDialogButtonBox" name="buttonBox">
  98. <property name="orientation">
  99. <enum>Qt::Horizontal</enum>
  100. </property>
  101. <property name="standardButtons">
  102. <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
  103. </property>
  104. </widget>
  105. </item>
  106. </layout>
  107. </widget>
  108. <resources>
  109. <include location="../icons.qrc"/>
  110. </resources>
  111. <connections>
  112. <connection>
  113. <sender>buttonBox</sender>
  114. <signal>accepted()</signal>
  115. <receiver>WaveDialog</receiver>
  116. <slot>accept()</slot>
  117. <hints>
  118. <hint type="sourcelabel">
  119. <x>248</x>
  120. <y>254</y>
  121. </hint>
  122. <hint type="destinationlabel">
  123. <x>157</x>
  124. <y>274</y>
  125. </hint>
  126. </hints>
  127. </connection>
  128. <connection>
  129. <sender>buttonBox</sender>
  130. <signal>rejected()</signal>
  131. <receiver>WaveDialog</receiver>
  132. <slot>reject()</slot>
  133. <hints>
  134. <hint type="sourcelabel">
  135. <x>316</x>
  136. <y>260</y>
  137. </hint>
  138. <hint type="destinationlabel">
  139. <x>286</x>
  140. <y>274</y>
  141. </hint>
  142. </hints>
  143. </connection>
  144. </connections>
  145. </ui>