main.ui 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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>1280</width>
  10. <height>720</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>yuzu</string>
  15. </property>
  16. <property name="windowIcon">
  17. <iconset>
  18. <normaloff>../dist/yuzu.ico</normaloff>../dist/yuzu.ico</iconset>
  19. </property>
  20. <property name="tabShape">
  21. <enum>QTabWidget::Rounded</enum>
  22. </property>
  23. <property name="dockNestingEnabled">
  24. <bool>true</bool>
  25. </property>
  26. <widget class="QWidget" name="centralwidget">
  27. <layout class="QHBoxLayout" name="horizontalLayout">
  28. <property name="leftMargin">
  29. <number>0</number>
  30. </property>
  31. <property name="topMargin">
  32. <number>0</number>
  33. </property>
  34. <property name="rightMargin">
  35. <number>0</number>
  36. </property>
  37. <property name="bottomMargin">
  38. <number>0</number>
  39. </property>
  40. </layout>
  41. </widget>
  42. <widget class="QMenuBar" name="menubar">
  43. <property name="geometry">
  44. <rect>
  45. <x>0</x>
  46. <y>0</y>
  47. <width>1280</width>
  48. <height>21</height>
  49. </rect>
  50. </property>
  51. <widget class="QMenu" name="menu_File">
  52. <property name="title">
  53. <string>&amp;File</string>
  54. </property>
  55. <widget class="QMenu" name="menu_recent_files">
  56. <property name="title">
  57. <string>Recent Files</string>
  58. </property>
  59. </widget>
  60. <addaction name="action_Install_File_NAND"/>
  61. <addaction name="separator"/>
  62. <addaction name="action_Load_File"/>
  63. <addaction name="action_Load_Folder"/>
  64. <addaction name="separator"/>
  65. <addaction name="menu_recent_files"/>
  66. <addaction name="separator"/>
  67. <addaction name="separator"/>
  68. <addaction name="action_Load_Amiibo"/>
  69. <addaction name="separator"/>
  70. <addaction name="action_Open_yuzu_Folder"/>
  71. <addaction name="separator"/>
  72. <addaction name="action_Exit"/>
  73. </widget>
  74. <widget class="QMenu" name="menu_Emulation">
  75. <property name="title">
  76. <string>&amp;Emulation</string>
  77. </property>
  78. <addaction name="action_Start"/>
  79. <addaction name="action_Pause"/>
  80. <addaction name="action_Stop"/>
  81. <addaction name="action_Restart"/>
  82. <addaction name="separator"/>
  83. <addaction name="action_Configure"/>
  84. </widget>
  85. <widget class="QMenu" name="menu_View">
  86. <property name="title">
  87. <string>&amp;View</string>
  88. </property>
  89. <widget class="QMenu" name="menu_View_Debugging">
  90. <property name="title">
  91. <string>Debugging</string>
  92. </property>
  93. </widget>
  94. <addaction name="action_Fullscreen"/>
  95. <addaction name="action_Single_Window_Mode"/>
  96. <addaction name="action_Display_Dock_Widget_Headers"/>
  97. <addaction name="action_Show_Filter_Bar"/>
  98. <addaction name="action_Show_Status_Bar"/>
  99. <addaction name="action_Reset_Window_Size"/>
  100. <addaction name="separator"/>
  101. <addaction name="menu_View_Debugging"/>
  102. </widget>
  103. <widget class="QMenu" name="menu_Tools">
  104. <property name="title">
  105. <string>Tools</string>
  106. </property>
  107. <addaction name="action_Rederive"/>
  108. <addaction name="separator"/>
  109. <addaction name="action_Capture_Screenshot"/>
  110. </widget>
  111. <widget class="QMenu" name="menu_Help">
  112. <property name="title">
  113. <string>&amp;Help</string>
  114. </property>
  115. <addaction name="action_Report_Compatibility"/>
  116. <addaction name="action_Open_Mods_Page"/>
  117. <addaction name="separator"/>
  118. <addaction name="action_About"/>
  119. </widget>
  120. <addaction name="menu_File"/>
  121. <addaction name="menu_Emulation"/>
  122. <addaction name="menu_View"/>
  123. <addaction name="menu_Tools"/>
  124. <addaction name="menu_Help"/>
  125. </widget>
  126. <action name="action_Install_File_NAND">
  127. <property name="enabled">
  128. <bool>true</bool>
  129. </property>
  130. <property name="text">
  131. <string>Install File to NAND...</string>
  132. </property>
  133. </action>
  134. <action name="action_Load_File">
  135. <property name="text">
  136. <string>Load File...</string>
  137. </property>
  138. </action>
  139. <action name="action_Load_Folder">
  140. <property name="text">
  141. <string>Load Folder...</string>
  142. </property>
  143. </action>
  144. <action name="action_Exit">
  145. <property name="text">
  146. <string>E&amp;xit</string>
  147. </property>
  148. </action>
  149. <action name="action_Start">
  150. <property name="enabled">
  151. <bool>false</bool>
  152. </property>
  153. <property name="text">
  154. <string>&amp;Start</string>
  155. </property>
  156. </action>
  157. <action name="action_Pause">
  158. <property name="enabled">
  159. <bool>false</bool>
  160. </property>
  161. <property name="text">
  162. <string>&amp;Pause</string>
  163. </property>
  164. </action>
  165. <action name="action_Stop">
  166. <property name="enabled">
  167. <bool>false</bool>
  168. </property>
  169. <property name="text">
  170. <string>&amp;Stop</string>
  171. </property>
  172. </action>
  173. <action name="action_Rederive">
  174. <property name="text">
  175. <string>Reinitialize keys...</string>
  176. </property>
  177. </action>
  178. <action name="action_About">
  179. <property name="text">
  180. <string>About yuzu</string>
  181. </property>
  182. </action>
  183. <action name="action_Single_Window_Mode">
  184. <property name="checkable">
  185. <bool>true</bool>
  186. </property>
  187. <property name="text">
  188. <string>Single Window Mode</string>
  189. </property>
  190. </action>
  191. <action name="action_Configure">
  192. <property name="text">
  193. <string>Configure...</string>
  194. </property>
  195. </action>
  196. <action name="action_Display_Dock_Widget_Headers">
  197. <property name="checkable">
  198. <bool>true</bool>
  199. </property>
  200. <property name="text">
  201. <string>Display Dock Widget Headers</string>
  202. </property>
  203. </action>
  204. <action name="action_Show_Filter_Bar">
  205. <property name="checkable">
  206. <bool>true</bool>
  207. </property>
  208. <property name="text">
  209. <string>Show Filter Bar</string>
  210. </property>
  211. </action>
  212. <action name="action_Show_Status_Bar">
  213. <property name="checkable">
  214. <bool>true</bool>
  215. </property>
  216. <property name="text">
  217. <string>Show Status Bar</string>
  218. </property>
  219. </action>
  220. <action name="action_Reset_Window_Size">
  221. <property name="text">
  222. <string>Reset Window Size</string>
  223. </property>
  224. </action>
  225. <action name="action_Fullscreen">
  226. <property name="checkable">
  227. <bool>true</bool>
  228. </property>
  229. <property name="text">
  230. <string>Fullscreen</string>
  231. </property>
  232. </action>
  233. <action name="action_Restart">
  234. <property name="enabled">
  235. <bool>false</bool>
  236. </property>
  237. <property name="text">
  238. <string>Restart</string>
  239. </property>
  240. </action>
  241. <action name="action_Load_Amiibo">
  242. <property name="enabled">
  243. <bool>false</bool>
  244. </property>
  245. <property name="text">
  246. <string>Load Amiibo...</string>
  247. </property>
  248. </action>
  249. <action name="action_Report_Compatibility">
  250. <property name="enabled">
  251. <bool>false</bool>
  252. </property>
  253. <property name="text">
  254. <string>Report Compatibility</string>
  255. </property>
  256. <property name="visible">
  257. <bool>false</bool>
  258. </property>
  259. </action>
  260. <action name="action_Open_Mods_Page">
  261. <property name="text">
  262. <string>Open Mods Page</string>
  263. </property>
  264. </action>
  265. <action name="action_Open_yuzu_Folder">
  266. <property name="text">
  267. <string>Open yuzu Folder</string>
  268. </property>
  269. </action>
  270. <action name="action_Capture_Screenshot">
  271. <property name="enabled">
  272. <bool>false</bool>
  273. </property>
  274. <property name="text">
  275. <string>Capture Screenshot</string>
  276. </property>
  277. </action>
  278. </widget>
  279. <resources/>
  280. <connections/>
  281. </ui>