MainWindow.ui 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>DMainWindow</class>
  4. <widget class="QMainWindow" name="DMainWindow">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>990</width>
  10. <height>590</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Dolphin</string>
  15. </property>
  16. <property name="iconSize">
  17. <size>
  18. <width>32</width>
  19. <height>32</height>
  20. </size>
  21. </property>
  22. <property name="toolButtonStyle">
  23. <enum>Qt::ToolButtonTextUnderIcon</enum>
  24. </property>
  25. <property name="unifiedTitleAndToolBarOnMac">
  26. <bool>true</bool>
  27. </property>
  28. <widget class="QStackedWidget" name="centralWidget"/>
  29. <widget class="QMenuBar" name="menubar">
  30. <property name="geometry">
  31. <rect>
  32. <x>0</x>
  33. <y>0</y>
  34. <width>990</width>
  35. <height>19</height>
  36. </rect>
  37. </property>
  38. <widget class="QMenu" name="mnuFile">
  39. <property name="title">
  40. <string>Fi&amp;le</string>
  41. </property>
  42. <addaction name="actionOpen"/>
  43. <addaction name="separator"/>
  44. <addaction name="actionBrowse"/>
  45. <addaction name="separator"/>
  46. <addaction name="actionExit"/>
  47. </widget>
  48. <widget class="QMenu" name="mnuEmulation">
  49. <property name="title">
  50. <string>E&amp;mulation</string>
  51. </property>
  52. <addaction name="actionPlay_mnu"/>
  53. <addaction name="actionStop_mnu"/>
  54. <addaction name="actionReset"/>
  55. </widget>
  56. <widget class="QMenu" name="mnuOptions">
  57. <property name="title">
  58. <string>Optio&amp;ns</string>
  59. </property>
  60. </widget>
  61. <widget class="QMenu" name="mnuTools">
  62. <property name="title">
  63. <string>Tools</string>
  64. </property>
  65. </widget>
  66. <widget class="QMenu" name="mnuView">
  67. <property name="title">
  68. <string>&amp;View</string>
  69. </property>
  70. <widget class="QMenu" name="mnuListStyle">
  71. <property name="title">
  72. <string>&amp;List style</string>
  73. </property>
  74. <addaction name="actionListView"/>
  75. <addaction name="actionTreeView"/>
  76. <addaction name="actionGridView"/>
  77. <addaction name="actionIconView"/>
  78. </widget>
  79. <addaction name="mnuListStyle"/>
  80. </widget>
  81. <widget class="QMenu" name="mnuHelp">
  82. <property name="title">
  83. <string>Help</string>
  84. </property>
  85. <addaction name="actionWebsite"/>
  86. <addaction name="actionOnlineDocs"/>
  87. <addaction name="actionGitHub"/>
  88. <addaction name="separator"/>
  89. <addaction name="actionSystemInfo"/>
  90. <addaction name="actionAbout"/>
  91. <addaction name="actionAboutQt"/>
  92. </widget>
  93. <widget class="QMenu" name="mnuMovie">
  94. <property name="title">
  95. <string>Movie</string>
  96. </property>
  97. </widget>
  98. <addaction name="mnuFile"/>
  99. <addaction name="mnuView"/>
  100. <addaction name="mnuEmulation"/>
  101. <addaction name="mnuMovie"/>
  102. <addaction name="mnuOptions"/>
  103. <addaction name="mnuTools"/>
  104. <addaction name="mnuHelp"/>
  105. </widget>
  106. <widget class="QStatusBar" name="statusbar"/>
  107. <widget class="QToolBar" name="toolbar">
  108. <property name="windowTitle">
  109. <string>Toolbar</string>
  110. </property>
  111. <attribute name="toolBarArea">
  112. <enum>TopToolBarArea</enum>
  113. </attribute>
  114. <attribute name="toolBarBreak">
  115. <bool>false</bool>
  116. </attribute>
  117. <addaction name="actionPlay"/>
  118. <addaction name="actionStop"/>
  119. </widget>
  120. <action name="actionWebsite">
  121. <property name="text">
  122. <string>&amp;Website</string>
  123. </property>
  124. </action>
  125. <action name="actionOnlineDocs">
  126. <property name="text">
  127. <string>&amp;Online Documentation</string>
  128. </property>
  129. </action>
  130. <action name="actionGitHub">
  131. <property name="text">
  132. <string>&amp;GitHub Repository</string>
  133. </property>
  134. </action>
  135. <action name="actionAbout">
  136. <property name="text">
  137. <string>&amp;About</string>
  138. </property>
  139. <property name="menuRole">
  140. <enum>QAction::AboutRole</enum>
  141. </property>
  142. </action>
  143. <action name="actionOpen">
  144. <property name="text">
  145. <string>&amp;Open...</string>
  146. </property>
  147. <property name="toolTip">
  148. <string>Open file...</string>
  149. </property>
  150. <property name="shortcut">
  151. <string>Ctrl+O</string>
  152. </property>
  153. </action>
  154. <action name="actionSystemInfo">
  155. <property name="text">
  156. <string>&amp;System Information</string>
  157. </property>
  158. </action>
  159. <action name="actionPlay">
  160. <property name="text">
  161. <string>Play</string>
  162. </property>
  163. </action>
  164. <action name="actionStop">
  165. <property name="text">
  166. <string>Stop</string>
  167. </property>
  168. </action>
  169. <action name="actionAboutQt">
  170. <property name="text">
  171. <string>About &amp;Qt</string>
  172. </property>
  173. <property name="menuRole">
  174. <enum>QAction::AboutQtRole</enum>
  175. </property>
  176. </action>
  177. <action name="actionListView">
  178. <property name="checkable">
  179. <bool>true</bool>
  180. </property>
  181. <property name="text">
  182. <string>&amp;List view</string>
  183. </property>
  184. </action>
  185. <action name="actionTreeView">
  186. <property name="checkable">
  187. <bool>true</bool>
  188. </property>
  189. <property name="text">
  190. <string>&amp;Tree view</string>
  191. </property>
  192. </action>
  193. <action name="actionGridView">
  194. <property name="checkable">
  195. <bool>true</bool>
  196. </property>
  197. <property name="text">
  198. <string>&amp;Grid view</string>
  199. </property>
  200. </action>
  201. <action name="actionIconView">
  202. <property name="checkable">
  203. <bool>true</bool>
  204. </property>
  205. <property name="text">
  206. <string>&amp;Icon view</string>
  207. </property>
  208. </action>
  209. <action name="actionBrowse">
  210. <property name="text">
  211. <string>&amp;Browse for ISOs...</string>
  212. </property>
  213. </action>
  214. <action name="actionExit">
  215. <property name="text">
  216. <string>Exit</string>
  217. </property>
  218. </action>
  219. <action name="actionPlay_mnu">
  220. <property name="text">
  221. <string>&amp;Play</string>
  222. </property>
  223. <property name="shortcut">
  224. <string>F10</string>
  225. </property>
  226. </action>
  227. <action name="actionStop_mnu">
  228. <property name="text">
  229. <string>&amp;Stop</string>
  230. </property>
  231. <property name="shortcut">
  232. <string>Esc</string>
  233. </property>
  234. </action>
  235. <action name="actionReset">
  236. <property name="text">
  237. <string>&amp;Reset</string>
  238. </property>
  239. </action>
  240. </widget>
  241. <resources/>
  242. <connections/>
  243. </ui>