configure.ui 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>ConfigureDialog</class>
  4. <widget class="QDialog" name="ConfigureDialog">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>461</width>
  10. <height>500</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>yuzu Configuration</string>
  15. </property>
  16. <layout class="QVBoxLayout" name="verticalLayout">
  17. <item>
  18. <widget class="QTabWidget" name="tabWidget">
  19. <property name="currentIndex">
  20. <number>0</number>
  21. </property>
  22. <widget class="ConfigureGeneral" name="generalTab">
  23. <attribute name="title">
  24. <string>General</string>
  25. </attribute>
  26. </widget>
  27. <widget class="ConfigureGameList" name="gameListTab">
  28. <attribute name="title">
  29. <string>Game List</string>
  30. </attribute>
  31. </widget>
  32. <widget class="ConfigureSystem" name="systemTab">
  33. <attribute name="title">
  34. <string>System</string>
  35. </attribute>
  36. </widget>
  37. <widget class="ConfigureInput" name="inputTab">
  38. <attribute name="title">
  39. <string>Input</string>
  40. </attribute>
  41. </widget>
  42. <widget class="ConfigureGraphics" name="graphicsTab">
  43. <attribute name="title">
  44. <string>Graphics</string>
  45. </attribute>
  46. </widget>
  47. <widget class="ConfigureAudio" name="audioTab">
  48. <attribute name="title">
  49. <string>Audio</string>
  50. </attribute>
  51. </widget>
  52. <widget class="ConfigureDebug" name="debugTab">
  53. <attribute name="title">
  54. <string>Debug</string>
  55. </attribute>
  56. </widget>
  57. <widget class="ConfigureWeb" name="webTab">
  58. <attribute name="title">
  59. <string>Web</string>
  60. </attribute>
  61. </widget>
  62. </widget>
  63. </item>
  64. <item>
  65. <widget class="QDialogButtonBox" name="buttonBox">
  66. <property name="standardButtons">
  67. <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
  68. </property>
  69. </widget>
  70. </item>
  71. </layout>
  72. </widget>
  73. <customwidgets>
  74. <customwidget>
  75. <class>ConfigureGeneral</class>
  76. <extends>QWidget</extends>
  77. <header>configuration/configure_general.h</header>
  78. <container>1</container>
  79. </customwidget>
  80. <customwidget>
  81. <class>ConfigureGameList</class>
  82. <extends>QWidget</extends>
  83. <header>configuration/configure_gamelist.h</header>
  84. <container>1</container>
  85. </customwidget>
  86. <customwidget>
  87. <class>ConfigureSystem</class>
  88. <extends>QWidget</extends>
  89. <header>configuration/configure_system.h</header>
  90. <container>1</container>
  91. </customwidget>
  92. <customwidget>
  93. <class>ConfigureAudio</class>
  94. <extends>QWidget</extends>
  95. <header>configuration/configure_audio.h</header>
  96. <container>1</container>
  97. </customwidget>
  98. <customwidget>
  99. <class>ConfigureDebug</class>
  100. <extends>QWidget</extends>
  101. <header>configuration/configure_debug.h</header>
  102. <container>1</container>
  103. </customwidget>
  104. <customwidget>
  105. <class>ConfigureInput</class>
  106. <extends>QWidget</extends>
  107. <header>configuration/configure_input.h</header>
  108. <container>1</container>
  109. </customwidget>
  110. <customwidget>
  111. <class>ConfigureGraphics</class>
  112. <extends>QWidget</extends>
  113. <header>configuration/configure_graphics.h</header>
  114. <container>1</container>
  115. </customwidget>
  116. <customwidget>
  117. <class>ConfigureWeb</class>
  118. <extends>QWidget</extends>
  119. <header>configuration/configure_web.h</header>
  120. <container>1</container>
  121. </customwidget>
  122. </customwidgets>
  123. <resources/>
  124. <connections>
  125. <connection>
  126. <sender>buttonBox</sender>
  127. <signal>accepted()</signal>
  128. <receiver>ConfigureDialog</receiver>
  129. <slot>accept()</slot>
  130. <hints>
  131. <hint type="sourcelabel">
  132. <x>220</x>
  133. <y>380</y>
  134. </hint>
  135. <hint type="destinationlabel">
  136. <x>220</x>
  137. <y>200</y>
  138. </hint>
  139. </hints>
  140. </connection>
  141. <connection>
  142. <sender>buttonBox</sender>
  143. <signal>rejected()</signal>
  144. <receiver>ConfigureDialog</receiver>
  145. <slot>reject()</slot>
  146. <hints>
  147. <hint type="sourcelabel">
  148. <x>220</x>
  149. <y>380</y>
  150. </hint>
  151. <hint type="destinationlabel">
  152. <x>220</x>
  153. <y>200</y>
  154. </hint>
  155. </hints>
  156. </connection>
  157. </connections>
  158. </ui>