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.

219 lines
5.5 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>MainWindow</class>
  4. <widget class="QMainWindow" name="MainWindow">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>1061</width>
  10. <height>639</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Chordsheet</string>
  15. </property>
  16. <property name="documentMode">
  17. <bool>false</bool>
  18. </property>
  19. <property name="tabShape">
  20. <enum>QTabWidget::Rounded</enum>
  21. </property>
  22. <widget class="QWidget" name="centralWidget">
  23. <layout class="QHBoxLayout" name="horizontalLayout">
  24. <property name="leftMargin">
  25. <number>0</number>
  26. </property>
  27. <property name="topMargin">
  28. <number>0</number>
  29. </property>
  30. <property name="rightMargin">
  31. <number>0</number>
  32. </property>
  33. <property name="bottomMargin">
  34. <number>0</number>
  35. </property>
  36. <item>
  37. <widget class="QMdiArea" name="mdiArea">
  38. <property name="enabled">
  39. <bool>true</bool>
  40. </property>
  41. <property name="documentMode">
  42. <bool>true</bool>
  43. </property>
  44. <property name="tabsClosable">
  45. <bool>true</bool>
  46. </property>
  47. <property name="tabsMovable">
  48. <bool>true</bool>
  49. </property>
  50. </widget>
  51. </item>
  52. </layout>
  53. </widget>
  54. <widget class="QMenuBar" name="menuBar">
  55. <property name="geometry">
  56. <rect>
  57. <x>0</x>
  58. <y>0</y>
  59. <width>1061</width>
  60. <height>22</height>
  61. </rect>
  62. </property>
  63. <widget class="QMenu" name="menuFile">
  64. <property name="title">
  65. <string>File</string>
  66. </property>
  67. <addaction name="actionNew"/>
  68. <addaction name="actionOpen"/>
  69. <addaction name="separator"/>
  70. <addaction name="actionSave"/>
  71. <addaction name="actionSave_as"/>
  72. <addaction name="actionSave_PDF"/>
  73. <addaction name="separator"/>
  74. <addaction name="actionPrint"/>
  75. <addaction name="separator"/>
  76. <addaction name="actionClose"/>
  77. <addaction name="separator"/>
  78. <addaction name="actionQuit"/>
  79. </widget>
  80. <widget class="QMenu" name="menuEdit">
  81. <property name="title">
  82. <string>Edit</string>
  83. </property>
  84. <addaction name="actionUndo"/>
  85. <addaction name="actionRedo"/>
  86. <addaction name="separator"/>
  87. <addaction name="actionCut"/>
  88. <addaction name="actionCopy"/>
  89. <addaction name="actionPaste"/>
  90. <addaction name="separator"/>
  91. </widget>
  92. <widget class="QMenu" name="menuWindow">
  93. <property name="title">
  94. <string>Window</string>
  95. </property>
  96. <addaction name="actionCascadeSubWindows"/>
  97. <addaction name="actionTileSubWindows"/>
  98. <addaction name="separator"/>
  99. <addaction name="actionActivateNextSubWindow"/>
  100. <addaction name="actionActivatePreviousSubWindow"/>
  101. <addaction name="separator"/>
  102. <addaction name="actionRedockAllPanels"/>
  103. <addaction name="separator"/>
  104. </widget>
  105. <widget class="QMenu" name="menuHelo">
  106. <property name="title">
  107. <string>Help</string>
  108. </property>
  109. <addaction name="actionAbout"/>
  110. </widget>
  111. <addaction name="menuFile"/>
  112. <addaction name="menuEdit"/>
  113. <addaction name="menuWindow"/>
  114. <addaction name="menuHelo"/>
  115. </widget>
  116. <action name="actionNew">
  117. <property name="text">
  118. <string>New...</string>
  119. </property>
  120. </action>
  121. <action name="actionOpen">
  122. <property name="text">
  123. <string>Open...</string>
  124. </property>
  125. </action>
  126. <action name="actionSave">
  127. <property name="text">
  128. <string>Save</string>
  129. </property>
  130. </action>
  131. <action name="actionSave_PDF">
  132. <property name="text">
  133. <string>Save PDF...</string>
  134. </property>
  135. </action>
  136. <action name="actionPrint">
  137. <property name="text">
  138. <string>Print...</string>
  139. </property>
  140. </action>
  141. <action name="actionClose">
  142. <property name="text">
  143. <string>Close</string>
  144. </property>
  145. </action>
  146. <action name="actionSave_as">
  147. <property name="text">
  148. <string>Save as...</string>
  149. </property>
  150. </action>
  151. <action name="actionQuit">
  152. <property name="text">
  153. <string>Quit</string>
  154. </property>
  155. </action>
  156. <action name="actionUndo">
  157. <property name="text">
  158. <string>Undo</string>
  159. </property>
  160. </action>
  161. <action name="actionRedo">
  162. <property name="text">
  163. <string>Redo</string>
  164. </property>
  165. </action>
  166. <action name="actionCut">
  167. <property name="text">
  168. <string>Cut</string>
  169. </property>
  170. </action>
  171. <action name="actionCopy">
  172. <property name="text">
  173. <string>Copy</string>
  174. </property>
  175. </action>
  176. <action name="actionPaste">
  177. <property name="text">
  178. <string>Paste</string>
  179. </property>
  180. </action>
  181. <action name="actionPreferences">
  182. <property name="text">
  183. <string>Preferences</string>
  184. </property>
  185. </action>
  186. <action name="actionAbout">
  187. <property name="text">
  188. <string>About</string>
  189. </property>
  190. </action>
  191. <action name="actionCascadeSubWindows">
  192. <property name="text">
  193. <string>Cascade windows</string>
  194. </property>
  195. </action>
  196. <action name="actionTileSubWindows">
  197. <property name="text">
  198. <string>Tile windows</string>
  199. </property>
  200. </action>
  201. <action name="actionActivateNextSubWindow">
  202. <property name="text">
  203. <string>Next window</string>
  204. </property>
  205. </action>
  206. <action name="actionActivatePreviousSubWindow">
  207. <property name="text">
  208. <string>Previous window</string>
  209. </property>
  210. </action>
  211. <action name="actionRedockAllPanels">
  212. <property name="text">
  213. <string>Redock all panels</string>
  214. </property>
  215. </action>
  216. </widget>
  217. <resources/>
  218. <connections/>
  219. </ui>