main.ui 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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>1081</width>
  10. <height>730</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>yuzu</string>
  15. </property>
  16. <property name="windowIcon">
  17. <iconset>
  18. <normaloff>src/pcafe/res/icon3_64x64.ico</normaloff>src/pcafe/res/icon3_64x64.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>1081</width>
  48. <height>19</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_Load_File"/>
  61. <addaction name="separator"/>
  62. <addaction name="action_Select_Game_List_Root"/>
  63. <addaction name="menu_recent_files"/>
  64. <addaction name="separator"/>
  65. <addaction name="action_Exit"/>
  66. </widget>
  67. <widget class="QMenu" name="menu_Emulation">
  68. <property name="title">
  69. <string>&amp;Emulation</string>
  70. </property>
  71. <addaction name="action_Start"/>
  72. <addaction name="action_Pause"/>
  73. <addaction name="action_Stop"/>
  74. <addaction name="separator"/>
  75. <addaction name="action_Configure"/>
  76. </widget>
  77. <widget class="QMenu" name="menu_View">
  78. <property name="title">
  79. <string>&amp;View</string>
  80. </property>
  81. <widget class="QMenu" name="menu_View_Debugging">
  82. <property name="title">
  83. <string>Debugging</string>
  84. </property>
  85. </widget>
  86. <addaction name="action_Single_Window_Mode"/>
  87. <addaction name="action_Display_Dock_Widget_Headers"/>
  88. <addaction name="action_Show_Filter_Bar"/>
  89. <addaction name="action_Show_Status_Bar"/>
  90. <addaction name="menu_View_Debugging"/>
  91. </widget>
  92. <widget class="QMenu" name="menu_Help">
  93. <property name="title">
  94. <string>&amp;Help</string>
  95. </property>
  96. <addaction name="action_About"/>
  97. </widget>
  98. <addaction name="menu_File"/>
  99. <addaction name="menu_Emulation"/>
  100. <addaction name="menu_View"/>
  101. <addaction name="menu_Help"/>
  102. </widget>
  103. <action name="action_Load_File">
  104. <property name="text">
  105. <string>Load File...</string>
  106. </property>
  107. </action>
  108. <action name="action_Load_Symbol_Map">
  109. <property name="text">
  110. <string>Load Symbol Map...</string>
  111. </property>
  112. </action>
  113. <action name="action_Exit">
  114. <property name="text">
  115. <string>E&amp;xit</string>
  116. </property>
  117. </action>
  118. <action name="action_Start">
  119. <property name="enabled">
  120. <bool>false</bool>
  121. </property>
  122. <property name="text">
  123. <string>&amp;Start</string>
  124. </property>
  125. </action>
  126. <action name="action_Pause">
  127. <property name="enabled">
  128. <bool>false</bool>
  129. </property>
  130. <property name="text">
  131. <string>&amp;Pause</string>
  132. </property>
  133. </action>
  134. <action name="action_Stop">
  135. <property name="enabled">
  136. <bool>false</bool>
  137. </property>
  138. <property name="text">
  139. <string>&amp;Stop</string>
  140. </property>
  141. </action>
  142. <action name="action_About">
  143. <property name="text">
  144. <string>About yuzu</string>
  145. </property>
  146. </action>
  147. <action name="action_Single_Window_Mode">
  148. <property name="checkable">
  149. <bool>true</bool>
  150. </property>
  151. <property name="text">
  152. <string>Single Window Mode</string>
  153. </property>
  154. </action>
  155. <action name="action_Configure">
  156. <property name="text">
  157. <string>Configure...</string>
  158. </property>
  159. </action>
  160. <action name="action_Display_Dock_Widget_Headers">
  161. <property name="checkable">
  162. <bool>true</bool>
  163. </property>
  164. <property name="text">
  165. <string>Display Dock Widget Headers</string>
  166. </property>
  167. </action>
  168. <action name="action_Show_Filter_Bar">
  169. <property name="checkable">
  170. <bool>true</bool>
  171. </property>
  172. <property name="text">
  173. <string>Show Filter Bar</string>
  174. </property>
  175. </action>
  176. <action name="action_Show_Status_Bar">
  177. <property name="checkable">
  178. <bool>true</bool>
  179. </property>
  180. <property name="text">
  181. <string>Show Status Bar</string>
  182. </property>
  183. </action>
  184. <action name="action_Select_Game_List_Root">
  185. <property name="text">
  186. <string>Select Game Directory...</string>
  187. </property>
  188. <property name="toolTip">
  189. <string>Selects a folder to display in the game list</string>
  190. </property>
  191. </action>
  192. </widget>
  193. <resources/>
  194. </ui>