You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

182 lines
4.2 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>Dialog</class>
  4. <widget class="QDialog" name="Dialog">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>300</width>
  10. <height>111</height>
  11. </rect>
  12. </property>
  13. <property name="minimumSize">
  14. <size>
  15. <width>300</width>
  16. <height>111</height>
  17. </size>
  18. </property>
  19. <property name="maximumSize">
  20. <size>
  21. <width>300</width>
  22. <height>111</height>
  23. </size>
  24. </property>
  25. <property name="windowTitle">
  26. <string>Guitar chord editor</string>
  27. </property>
  28. <layout class="QVBoxLayout" name="verticalLayout">
  29. <item>
  30. <layout class="QGridLayout" name="gridLayout">
  31. <item row="0" column="3">
  32. <widget class="QLabel" name="labelG">
  33. <property name="text">
  34. <string>G</string>
  35. </property>
  36. </widget>
  37. </item>
  38. <item row="0" column="0">
  39. <widget class="QLabel" name="labelE">
  40. <property name="text">
  41. <string>E</string>
  42. </property>
  43. </widget>
  44. </item>
  45. <item row="0" column="4">
  46. <widget class="QLabel" name="labelB">
  47. <property name="text">
  48. <string>B</string>
  49. </property>
  50. </widget>
  51. </item>
  52. <item row="0" column="1">
  53. <widget class="QLabel" name="labelA">
  54. <property name="text">
  55. <string>A</string>
  56. </property>
  57. </widget>
  58. </item>
  59. <item row="0" column="2">
  60. <widget class="QLabel" name="labelD">
  61. <property name="text">
  62. <string>D</string>
  63. </property>
  64. </widget>
  65. </item>
  66. <item row="0" column="5">
  67. <widget class="QLabel" name="labele">
  68. <property name="text">
  69. <string>e</string>
  70. </property>
  71. </widget>
  72. </item>
  73. <item row="1" column="0">
  74. <widget class="QLineEdit" name="ELineEdit">
  75. <property name="minimumSize">
  76. <size>
  77. <width>0</width>
  78. <height>21</height>
  79. </size>
  80. </property>
  81. </widget>
  82. </item>
  83. <item row="1" column="1">
  84. <widget class="QLineEdit" name="ALineEdit">
  85. <property name="minimumSize">
  86. <size>
  87. <width>0</width>
  88. <height>21</height>
  89. </size>
  90. </property>
  91. </widget>
  92. </item>
  93. <item row="1" column="2">
  94. <widget class="QLineEdit" name="DLineEdit">
  95. <property name="minimumSize">
  96. <size>
  97. <width>0</width>
  98. <height>21</height>
  99. </size>
  100. </property>
  101. </widget>
  102. </item>
  103. <item row="1" column="3">
  104. <widget class="QLineEdit" name="GLineEdit">
  105. <property name="minimumSize">
  106. <size>
  107. <width>0</width>
  108. <height>21</height>
  109. </size>
  110. </property>
  111. </widget>
  112. </item>
  113. <item row="1" column="4">
  114. <widget class="QLineEdit" name="BLineEdit">
  115. <property name="minimumSize">
  116. <size>
  117. <width>0</width>
  118. <height>21</height>
  119. </size>
  120. </property>
  121. </widget>
  122. </item>
  123. <item row="1" column="5">
  124. <widget class="QLineEdit" name="eLineEdit">
  125. <property name="minimumSize">
  126. <size>
  127. <width>0</width>
  128. <height>21</height>
  129. </size>
  130. </property>
  131. </widget>
  132. </item>
  133. </layout>
  134. </item>
  135. <item>
  136. <widget class="QDialogButtonBox" name="buttonBox">
  137. <property name="orientation">
  138. <enum>Qt::Horizontal</enum>
  139. </property>
  140. <property name="standardButtons">
  141. <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
  142. </property>
  143. </widget>
  144. </item>
  145. </layout>
  146. </widget>
  147. <resources/>
  148. <connections>
  149. <connection>
  150. <sender>buttonBox</sender>
  151. <signal>accepted()</signal>
  152. <receiver>Dialog</receiver>
  153. <slot>accept()</slot>
  154. <hints>
  155. <hint type="sourcelabel">
  156. <x>248</x>
  157. <y>254</y>
  158. </hint>
  159. <hint type="destinationlabel">
  160. <x>157</x>
  161. <y>274</y>
  162. </hint>
  163. </hints>
  164. </connection>
  165. <connection>
  166. <sender>buttonBox</sender>
  167. <signal>rejected()</signal>
  168. <receiver>Dialog</receiver>
  169. <slot>reject()</slot>
  170. <hints>
  171. <hint type="sourcelabel">
  172. <x>316</x>
  173. <y>260</y>
  174. </hint>
  175. <hint type="destinationlabel">
  176. <x>286</x>
  177. <y>274</y>
  178. </hint>
  179. </hints>
  180. </connection>
  181. </connections>
  182. </ui>