configure.ui 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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>441</width>
  10. <height>501</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Citra 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="ConfigureAudio" name="audioTab">
  43. <attribute name="title">
  44. <string>Audio</string>
  45. </attribute>
  46. </widget>
  47. <widget class="ConfigureDebug" name="debugTab">
  48. <attribute name="title">
  49. <string>Debug</string>
  50. </attribute>
  51. </widget>
  52. </widget>
  53. </item>
  54. <item>
  55. <widget class="QDialogButtonBox" name="buttonBox">
  56. <property name="standardButtons">
  57. <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
  58. </property>
  59. </widget>
  60. </item>
  61. </layout>
  62. </widget>
  63. <customwidgets>
  64. <customwidget>
  65. <class>ConfigureGeneral</class>
  66. <extends>QWidget</extends>
  67. <header>configure_general.h</header>
  68. <container>1</container>
  69. </customwidget>
  70. <customwidget>
  71. <class>ConfigureSystem</class>
  72. <extends>QWidget</extends>
  73. <header>configure_system.h</header>
  74. <container>1</container>
  75. </customwidget>
  76. <customwidget>
  77. <class>ConfigureAudio</class>
  78. <extends>QWidget</extends>
  79. <header>configure_audio.h</header>
  80. <container>1</container>
  81. </customwidget>
  82. <customwidget>
  83. <class>ConfigureDebug</class>
  84. <extends>QWidget</extends>
  85. <header>configure_debug.h</header>
  86. <container>1</container>
  87. </customwidget>
  88. <customwidget>
  89. <class>ConfigureInput</class>
  90. <extends>QWidget</extends>
  91. <header>configure_input.h</header>
  92. <container>1</container>
  93. </customwidget>
  94. <customwidget>
  95. <class>ConfigureGraphics</class>
  96. <extends>QWidget</extends>
  97. <header>configure_graphics.h</header>
  98. <container>1</container>
  99. </customwidget>
  100. </customwidgets>
  101. <resources/>
  102. <connections>
  103. <connection>
  104. <sender>buttonBox</sender>
  105. <signal>accepted()</signal>
  106. <receiver>ConfigureDialog</receiver>
  107. <slot>accept()</slot>
  108. <hints>
  109. <hint type="sourcelabel">
  110. <x>220</x>
  111. <y>380</y>
  112. </hint>
  113. <hint type="destinationlabel">
  114. <x>220</x>
  115. <y>200</y>
  116. </hint>
  117. </hints>
  118. </connection>
  119. <connection>
  120. <sender>buttonBox</sender>
  121. <signal>rejected()</signal>
  122. <receiver>ConfigureDialog</receiver>
  123. <slot>reject()</slot>
  124. <hints>
  125. <hint type="sourcelabel">
  126. <x>220</x>
  127. <y>380</y>
  128. </hint>
  129. <hint type="destinationlabel">
  130. <x>220</x>
  131. <y>200</y>
  132. </hint>
  133. </hints>
  134. </connection>
  135. </connections>
  136. </ui>