configure.ui 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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="ConfigureSystem" name="systemTab">
  28. <attribute name="title">
  29. <string>System</string>
  30. </attribute>
  31. </widget>
  32. <widget class="ConfigureInput" name="inputTab">
  33. <attribute name="title">
  34. <string>Input</string>
  35. </attribute>
  36. </widget>
  37. <widget class="ConfigureGraphics" name="graphicsTab">
  38. <attribute name="title">
  39. <string>Graphics</string>
  40. </attribute>
  41. </widget>
  42. <widget class="ConfigureDebug" name="debugTab">
  43. <attribute name="title">
  44. <string>Debug</string>
  45. </attribute>
  46. </widget>
  47. </widget>
  48. </item>
  49. <item>
  50. <widget class="QDialogButtonBox" name="buttonBox">
  51. <property name="standardButtons">
  52. <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
  53. </property>
  54. </widget>
  55. </item>
  56. </layout>
  57. </widget>
  58. <customwidgets>
  59. <customwidget>
  60. <class>ConfigureGeneral</class>
  61. <extends>QWidget</extends>
  62. <header>configuration/configure_general.h</header>
  63. <container>1</container>
  64. </customwidget>
  65. <customwidget>
  66. <class>ConfigureSystem</class>
  67. <extends>QWidget</extends>
  68. <header>configuration/configure_system.h</header>
  69. <container>1</container>
  70. </customwidget>
  71. <customwidget>
  72. <class>ConfigureDebug</class>
  73. <extends>QWidget</extends>
  74. <header>configuration/configure_debug.h</header>
  75. <container>1</container>
  76. </customwidget>
  77. <customwidget>
  78. <class>ConfigureInput</class>
  79. <extends>QWidget</extends>
  80. <header>configuration/configure_input.h</header>
  81. <container>1</container>
  82. </customwidget>
  83. <customwidget>
  84. <class>ConfigureGraphics</class>
  85. <extends>QWidget</extends>
  86. <header>configuration/configure_graphics.h</header>
  87. <container>1</container>
  88. </customwidget>
  89. </customwidgets>
  90. <resources/>
  91. <connections>
  92. <connection>
  93. <sender>buttonBox</sender>
  94. <signal>accepted()</signal>
  95. <receiver>ConfigureDialog</receiver>
  96. <slot>accept()</slot>
  97. <hints>
  98. <hint type="sourcelabel">
  99. <x>220</x>
  100. <y>380</y>
  101. </hint>
  102. <hint type="destinationlabel">
  103. <x>220</x>
  104. <y>200</y>
  105. </hint>
  106. </hints>
  107. </connection>
  108. <connection>
  109. <sender>buttonBox</sender>
  110. <signal>rejected()</signal>
  111. <receiver>ConfigureDialog</receiver>
  112. <slot>reject()</slot>
  113. <hints>
  114. <hint type="sourcelabel">
  115. <x>220</x>
  116. <y>380</y>
  117. </hint>
  118. <hint type="destinationlabel">
  119. <x>220</x>
  120. <y>200</y>
  121. </hint>
  122. </hints>
  123. </connection>
  124. </connections>
  125. </ui>