main.ui 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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. <addaction name="action_Configure_Current_Game"/>
  85. </widget>
  86. <widget class="QMenu" name="menu_View">
  87. <property name="title">
  88. <string>&amp;View</string>
  89. </property>
  90. <widget class="QMenu" name="menu_View_Debugging">
  91. <property name="title">
  92. <string>Debugging</string>
  93. </property>
  94. </widget>
  95. <addaction name="action_Fullscreen"/>
  96. <addaction name="action_Single_Window_Mode"/>
  97. <addaction name="action_Display_Dock_Widget_Headers"/>
  98. <addaction name="action_Show_Filter_Bar"/>
  99. <addaction name="action_Show_Status_Bar"/>
  100. <addaction name="action_Reset_Window_Size"/>
  101. <addaction name="separator"/>
  102. <addaction name="menu_View_Debugging"/>
  103. </widget>
  104. <widget class="QMenu" name="menu_Tools">
  105. <property name="title">
  106. <string>Tools</string>
  107. </property>
  108. <addaction name="action_Rederive"/>
  109. <addaction name="separator"/>
  110. <addaction name="action_Capture_Screenshot"/>
  111. </widget>
  112. <widget class="QMenu" name="menu_Help">
  113. <property name="title">
  114. <string>&amp;Help</string>
  115. </property>
  116. <addaction name="action_Report_Compatibility"/>
  117. <addaction name="action_Open_Mods_Page"/>
  118. <addaction name="action_Open_Quickstart_Guide"/>
  119. <addaction name="action_Open_FAQ"/>
  120. <addaction name="separator"/>
  121. <addaction name="action_About"/>
  122. </widget>
  123. <addaction name="menu_File"/>
  124. <addaction name="menu_Emulation"/>
  125. <addaction name="menu_View"/>
  126. <addaction name="menu_Tools"/>
  127. <addaction name="menu_Help"/>
  128. </widget>
  129. <action name="action_Install_File_NAND">
  130. <property name="enabled">
  131. <bool>true</bool>
  132. </property>
  133. <property name="text">
  134. <string>Install Files to NAND...</string>
  135. </property>
  136. </action>
  137. <action name="action_Load_File">
  138. <property name="text">
  139. <string>Load File...</string>
  140. </property>
  141. </action>
  142. <action name="action_Load_Folder">
  143. <property name="text">
  144. <string>Load Folder...</string>
  145. </property>
  146. </action>
  147. <action name="action_Exit">
  148. <property name="text">
  149. <string>E&amp;xit</string>
  150. </property>
  151. </action>
  152. <action name="action_Start">
  153. <property name="enabled">
  154. <bool>false</bool>
  155. </property>
  156. <property name="text">
  157. <string>&amp;Start</string>
  158. </property>
  159. </action>
  160. <action name="action_Pause">
  161. <property name="enabled">
  162. <bool>false</bool>
  163. </property>
  164. <property name="text">
  165. <string>&amp;Pause</string>
  166. </property>
  167. </action>
  168. <action name="action_Stop">
  169. <property name="enabled">
  170. <bool>false</bool>
  171. </property>
  172. <property name="text">
  173. <string>&amp;Stop</string>
  174. </property>
  175. </action>
  176. <action name="action_Rederive">
  177. <property name="text">
  178. <string>Reinitialize keys...</string>
  179. </property>
  180. </action>
  181. <action name="action_About">
  182. <property name="text">
  183. <string>About yuzu</string>
  184. </property>
  185. </action>
  186. <action name="action_Single_Window_Mode">
  187. <property name="checkable">
  188. <bool>true</bool>
  189. </property>
  190. <property name="text">
  191. <string>Single Window Mode</string>
  192. </property>
  193. </action>
  194. <action name="action_Configure">
  195. <property name="text">
  196. <string>Configure...</string>
  197. </property>
  198. </action>
  199. <action name="action_Display_Dock_Widget_Headers">
  200. <property name="checkable">
  201. <bool>true</bool>
  202. </property>
  203. <property name="text">
  204. <string>Display Dock Widget Headers</string>
  205. </property>
  206. </action>
  207. <action name="action_Show_Filter_Bar">
  208. <property name="checkable">
  209. <bool>true</bool>
  210. </property>
  211. <property name="text">
  212. <string>Show Filter Bar</string>
  213. </property>
  214. </action>
  215. <action name="action_Show_Status_Bar">
  216. <property name="checkable">
  217. <bool>true</bool>
  218. </property>
  219. <property name="text">
  220. <string>Show Status Bar</string>
  221. </property>
  222. </action>
  223. <action name="action_Reset_Window_Size">
  224. <property name="text">
  225. <string>Reset Window Size</string>
  226. </property>
  227. </action>
  228. <action name="action_Fullscreen">
  229. <property name="checkable">
  230. <bool>true</bool>
  231. </property>
  232. <property name="text">
  233. <string>Fullscreen</string>
  234. </property>
  235. </action>
  236. <action name="action_Restart">
  237. <property name="enabled">
  238. <bool>false</bool>
  239. </property>
  240. <property name="text">
  241. <string>Restart</string>
  242. </property>
  243. </action>
  244. <action name="action_Load_Amiibo">
  245. <property name="enabled">
  246. <bool>false</bool>
  247. </property>
  248. <property name="text">
  249. <string>Load Amiibo...</string>
  250. </property>
  251. </action>
  252. <action name="action_Report_Compatibility">
  253. <property name="enabled">
  254. <bool>false</bool>
  255. </property>
  256. <property name="text">
  257. <string>Report Compatibility</string>
  258. </property>
  259. <property name="visible">
  260. <bool>false</bool>
  261. </property>
  262. </action>
  263. <action name="action_Open_Mods_Page">
  264. <property name="text">
  265. <string>Open Mods Page</string>
  266. </property>
  267. </action>
  268. <action name="action_Open_Quickstart_Guide">
  269. <property name="text">
  270. <string>Open Quickstart Guide</string>
  271. </property>
  272. </action>
  273. <action name="action_Open_FAQ">
  274. <property name="text">
  275. <string>FAQ</string>
  276. </property>
  277. </action>
  278. <action name="action_Open_yuzu_Folder">
  279. <property name="text">
  280. <string>Open yuzu Folder</string>
  281. </property>
  282. </action>
  283. <action name="action_Capture_Screenshot">
  284. <property name="enabled">
  285. <bool>false</bool>
  286. </property>
  287. <property name="text">
  288. <string>Capture Screenshot</string>
  289. </property>
  290. </action>
  291. <action name="action_Configure_Current_Game">
  292. <property name="enabled">
  293. <bool>false</bool>
  294. </property>
  295. <property name="text">
  296. <string>Configure Current Game...</string>
  297. </property>
  298. </action>
  299. </widget>
  300. <resources/>
  301. <connections/>
  302. </ui>