SwitchSettings.glade 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Generated with glade 3.22.1 -->
  3. <interface>
  4. <requires lib="gtk+" version="3.20"/>
  5. <object class="GtkAdjustment" id="_fsLogSpinAdjustment">
  6. <property name="upper">3</property>
  7. <property name="step_increment">1</property>
  8. <property name="page_increment">10</property>
  9. </object>
  10. <object class="GtkDialog" id="_settingsWin">
  11. <property name="can_focus">False</property>
  12. <property name="title" translatable="yes">Ryujinx - Settings</property>
  13. <property name="modal">True</property>
  14. <property name="window_position">center</property>
  15. <property name="default_width">910</property>
  16. <property name="default_height">790</property>
  17. <property name="type_hint">dialog</property>
  18. <child>
  19. <placeholder/>
  20. </child>
  21. <child internal-child="vbox">
  22. <object class="GtkBox">
  23. <property name="can_focus">False</property>
  24. <property name="orientation">vertical</property>
  25. <property name="spacing">2</property>
  26. <child internal-child="action_area">
  27. <object class="GtkButtonBox">
  28. <property name="can_focus">False</property>
  29. <property name="margin_right">5</property>
  30. <property name="margin_top">3</property>
  31. <property name="margin_bottom">3</property>
  32. <property name="layout_style">end</property>
  33. <child>
  34. <object class="GtkToggleButton" id="SaveToggle">
  35. <property name="label" translatable="yes">Save</property>
  36. <property name="visible">True</property>
  37. <property name="can_focus">True</property>
  38. <property name="receives_default">True</property>
  39. <signal name="toggled" handler="SaveToggle_Activated" swapped="no"/>
  40. </object>
  41. <packing>
  42. <property name="expand">False</property>
  43. <property name="fill">True</property>
  44. <property name="position">0</property>
  45. </packing>
  46. </child>
  47. <child>
  48. <object class="GtkToggleButton" id="CloseToggle">
  49. <property name="label" translatable="yes">Close</property>
  50. <property name="visible">True</property>
  51. <property name="can_focus">True</property>
  52. <property name="receives_default">True</property>
  53. <signal name="toggled" handler="CloseToggle_Activated" swapped="no"/>
  54. </object>
  55. <packing>
  56. <property name="expand">False</property>
  57. <property name="fill">True</property>
  58. <property name="padding">5</property>
  59. <property name="position">1</property>
  60. </packing>
  61. </child>
  62. </object>
  63. <packing>
  64. <property name="expand">False</property>
  65. <property name="fill">False</property>
  66. <property name="position">0</property>
  67. </packing>
  68. </child>
  69. <child>
  70. <object class="GtkScrolledWindow">
  71. <property name="visible">True</property>
  72. <property name="can_focus">True</property>
  73. <property name="shadow_type">in</property>
  74. <child>
  75. <object class="GtkViewport">
  76. <property name="visible">True</property>
  77. <property name="can_focus">False</property>
  78. <child>
  79. <object class="GtkNotebook">
  80. <property name="visible">True</property>
  81. <property name="can_focus">True</property>
  82. <child>
  83. <object class="GtkBox" id="TabGeneral">
  84. <property name="visible">True</property>
  85. <property name="can_focus">False</property>
  86. <property name="margin_left">5</property>
  87. <property name="margin_right">10</property>
  88. <property name="margin_top">5</property>
  89. <property name="orientation">vertical</property>
  90. <child>
  91. <object class="GtkBox" id="CatGeneral">
  92. <property name="visible">True</property>
  93. <property name="can_focus">False</property>
  94. <property name="margin_left">5</property>
  95. <property name="margin_right">5</property>
  96. <property name="orientation">vertical</property>
  97. <child>
  98. <object class="GtkLabel">
  99. <property name="visible">True</property>
  100. <property name="can_focus">False</property>
  101. <property name="halign">start</property>
  102. <property name="margin_bottom">5</property>
  103. <property name="label" translatable="yes">General</property>
  104. <attributes>
  105. <attribute name="weight" value="bold"/>
  106. </attributes>
  107. </object>
  108. <packing>
  109. <property name="expand">False</property>
  110. <property name="fill">True</property>
  111. <property name="position">0</property>
  112. </packing>
  113. </child>
  114. <child>
  115. <object class="GtkBox" id="box1">
  116. <property name="visible">True</property>
  117. <property name="can_focus">False</property>
  118. <property name="orientation">vertical</property>
  119. <child>
  120. <object class="GtkBox">
  121. <property name="visible">True</property>
  122. <property name="can_focus">False</property>
  123. <child>
  124. <object class="GtkLabel">
  125. <property name="visible">True</property>
  126. <property name="can_focus">False</property>
  127. <property name="tooltip_text" translatable="yes">Change System Language</property>
  128. <property name="halign">end</property>
  129. <property name="label" translatable="yes">System Language:</property>
  130. </object>
  131. <packing>
  132. <property name="expand">False</property>
  133. <property name="fill">True</property>
  134. <property name="position">0</property>
  135. </packing>
  136. </child>
  137. <child>
  138. <object class="GtkComboBoxText" id="_systemLanguageSelect">
  139. <property name="visible">True</property>
  140. <property name="can_focus">False</property>
  141. <property name="tooltip_text" translatable="yes">Change System Language</property>
  142. <items>
  143. <item id="AmericanEnglish" translatable="yes">American English</item>
  144. <item id="BritishEnglish" translatable="yes">British English</item>
  145. <item id="CanadianFrench" translatable="yes">Canadian French</item>
  146. <item id="Chinese" translatable="yes">Chinese</item>
  147. <item id="Dutch" translatable="yes">Dutch</item>
  148. <item id="French" translatable="yes">French</item>
  149. <item id="German" translatable="yes">German</item>
  150. <item id="Italian" translatable="yes">Italian</item>
  151. <item id="Japanese" translatable="yes">Japanese</item>
  152. <item id="Korean" translatable="yes">Korean</item>
  153. <item id="LatinAmericanSpanish" translatable="yes">Latin American Spanish</item>
  154. <item id="Portuguese" translatable="yes">Portuguese</item>
  155. <item id="Russian" translatable="yes">Russian</item>
  156. <item id="SimplifiedChinese" translatable="yes">Simplified Chinese</item>
  157. <item id="Spanish" translatable="yes">Spanish</item>
  158. <item id="Taiwanese" translatable="yes">Taiwanese</item>
  159. <item id="TraditionalChinese" translatable="yes">Traditional Chinese</item>
  160. </items>
  161. </object>
  162. <packing>
  163. <property name="expand">False</property>
  164. <property name="fill">True</property>
  165. <property name="position">1</property>
  166. </packing>
  167. </child>
  168. </object>
  169. <packing>
  170. <property name="expand">False</property>
  171. <property name="fill">True</property>
  172. <property name="position">0</property>
  173. </packing>
  174. </child>
  175. <child>
  176. <object class="GtkCheckButton" id="_discordToggle">
  177. <property name="label" translatable="yes">Enable Discord Integration</property>
  178. <property name="visible">True</property>
  179. <property name="can_focus">True</property>
  180. <property name="receives_default">False</property>
  181. <property name="tooltip_text" translatable="yes">Enables or disables Discord Rich Presense</property>
  182. <property name="halign">start</property>
  183. <property name="draw_indicator">True</property>
  184. </object>
  185. <packing>
  186. <property name="expand">False</property>
  187. <property name="fill">True</property>
  188. <property name="padding">5</property>
  189. <property name="position">1</property>
  190. </packing>
  191. </child>
  192. </object>
  193. <packing>
  194. <property name="expand">True</property>
  195. <property name="fill">True</property>
  196. <property name="position">1</property>
  197. </packing>
  198. </child>
  199. </object>
  200. <packing>
  201. <property name="expand">False</property>
  202. <property name="fill">True</property>
  203. <property name="padding">5</property>
  204. <property name="position">1</property>
  205. </packing>
  206. </child>
  207. <child>
  208. <object class="GtkSeparator">
  209. <property name="visible">True</property>
  210. <property name="can_focus">False</property>
  211. <property name="margin_left">5</property>
  212. <property name="margin_right">5</property>
  213. </object>
  214. <packing>
  215. <property name="expand">False</property>
  216. <property name="fill">True</property>
  217. <property name="padding">5</property>
  218. <property name="position">2</property>
  219. </packing>
  220. </child>
  221. <child>
  222. <object class="GtkBox" id="CatGameDir">
  223. <property name="visible">True</property>
  224. <property name="can_focus">False</property>
  225. <property name="margin_left">5</property>
  226. <property name="margin_right">5</property>
  227. <property name="orientation">vertical</property>
  228. <child>
  229. <object class="GtkLabel">
  230. <property name="visible">True</property>
  231. <property name="can_focus">False</property>
  232. <property name="halign">start</property>
  233. <property name="margin_bottom">5</property>
  234. <property name="label" translatable="yes">Game Directories</property>
  235. <attributes>
  236. <attribute name="weight" value="bold"/>
  237. </attributes>
  238. </object>
  239. <packing>
  240. <property name="expand">False</property>
  241. <property name="fill">True</property>
  242. <property name="position">0</property>
  243. </packing>
  244. </child>
  245. <child>
  246. <object class="GtkBox">
  247. <property name="visible">True</property>
  248. <property name="can_focus">False</property>
  249. <property name="margin_left">10</property>
  250. <property name="margin_right">10</property>
  251. <property name="orientation">vertical</property>
  252. <child>
  253. <object class="GtkScrolledWindow">
  254. <property name="visible">True</property>
  255. <property name="can_focus">True</property>
  256. <property name="margin_bottom">10</property>
  257. <property name="shadow_type">in</property>
  258. <child>
  259. <object class="GtkTreeView" id="_gameDirsBox">
  260. <property name="visible">True</property>
  261. <property name="can_focus">True</property>
  262. <property name="headers_visible">False</property>
  263. <property name="headers_clickable">False</property>
  264. <child internal-child="selection">
  265. <object class="GtkTreeSelection"/>
  266. </child>
  267. </object>
  268. </child>
  269. <style>
  270. <class name="GameDir"/>
  271. </style>
  272. </object>
  273. <packing>
  274. <property name="expand">True</property>
  275. <property name="fill">True</property>
  276. <property name="position">0</property>
  277. </packing>
  278. </child>
  279. <child>
  280. <object class="GtkBox">
  281. <property name="visible">True</property>
  282. <property name="can_focus">False</property>
  283. <child>
  284. <object class="GtkEntry" id="_addGameDirBox">
  285. <property name="visible">True</property>
  286. <property name="can_focus">True</property>
  287. <property name="tooltip_text" translatable="yes">Enter a game directroy to add to the list</property>
  288. </object>
  289. <packing>
  290. <property name="expand">True</property>
  291. <property name="fill">True</property>
  292. <property name="position">0</property>
  293. </packing>
  294. </child>
  295. <child>
  296. <object class="GtkToggleButton" id="_addDir">
  297. <property name="label" translatable="yes">Add</property>
  298. <property name="width_request">80</property>
  299. <property name="visible">True</property>
  300. <property name="can_focus">True</property>
  301. <property name="receives_default">True</property>
  302. <property name="tooltip_text" translatable="yes"> Add a game directory to the list</property>
  303. <property name="margin_left">5</property>
  304. <signal name="toggled" handler="AddDir_Pressed" swapped="no"/>
  305. </object>
  306. <packing>
  307. <property name="expand">False</property>
  308. <property name="fill">True</property>
  309. <property name="position">1</property>
  310. </packing>
  311. </child>
  312. <child>
  313. <object class="GtkToggleButton" id="_browseDir">
  314. <property name="label" translatable="yes">Browse...</property>
  315. <property name="width_request">80</property>
  316. <property name="visible">True</property>
  317. <property name="can_focus">True</property>
  318. <property name="receives_default">True</property>
  319. <property name="tooltip_text" translatable="yes">Browse for a game directory</property>
  320. <property name="margin_left">5</property>
  321. <signal name="toggled" handler="BrowseDir_Pressed" swapped="no"/>
  322. </object>
  323. <packing>
  324. <property name="expand">False</property>
  325. <property name="fill">True</property>
  326. <property name="position">2</property>
  327. </packing>
  328. </child>
  329. <child>
  330. <object class="GtkToggleButton" id="_removeDir">
  331. <property name="label" translatable="yes">Remove</property>
  332. <property name="width_request">80</property>
  333. <property name="visible">True</property>
  334. <property name="can_focus">True</property>
  335. <property name="receives_default">True</property>
  336. <property name="tooltip_text" translatable="yes">Remove selected game directory</property>
  337. <property name="margin_left">5</property>
  338. <signal name="toggled" handler="RemoveDir_Pressed" swapped="no"/>
  339. </object>
  340. <packing>
  341. <property name="expand">False</property>
  342. <property name="fill">True</property>
  343. <property name="position">3</property>
  344. </packing>
  345. </child>
  346. </object>
  347. <packing>
  348. <property name="expand">False</property>
  349. <property name="fill">True</property>
  350. <property name="position">1</property>
  351. </packing>
  352. </child>
  353. </object>
  354. <packing>
  355. <property name="expand">True</property>
  356. <property name="fill">True</property>
  357. <property name="position">1</property>
  358. </packing>
  359. </child>
  360. </object>
  361. <packing>
  362. <property name="expand">True</property>
  363. <property name="fill">True</property>
  364. <property name="padding">5</property>
  365. <property name="position">4</property>
  366. </packing>
  367. </child>
  368. <child>
  369. <object class="GtkSeparator">
  370. <property name="visible">True</property>
  371. <property name="can_focus">False</property>
  372. <property name="margin_left">5</property>
  373. <property name="margin_right">5</property>
  374. </object>
  375. <packing>
  376. <property name="expand">False</property>
  377. <property name="fill">True</property>
  378. <property name="padding">5</property>
  379. <property name="position">5</property>
  380. </packing>
  381. </child>
  382. <child>
  383. <object class="GtkBox" id="CatThemes">
  384. <property name="visible">True</property>
  385. <property name="can_focus">False</property>
  386. <property name="margin_left">5</property>
  387. <property name="margin_right">5</property>
  388. <property name="orientation">vertical</property>
  389. <child>
  390. <object class="GtkLabel">
  391. <property name="visible">True</property>
  392. <property name="can_focus">False</property>
  393. <property name="halign">start</property>
  394. <property name="margin_bottom">5</property>
  395. <property name="label" translatable="yes">Themes</property>
  396. <attributes>
  397. <attribute name="weight" value="bold"/>
  398. </attributes>
  399. </object>
  400. <packing>
  401. <property name="expand">False</property>
  402. <property name="fill">True</property>
  403. <property name="position">0</property>
  404. </packing>
  405. </child>
  406. <child>
  407. <object class="GtkBox">
  408. <property name="visible">True</property>
  409. <property name="can_focus">False</property>
  410. <property name="margin_left">10</property>
  411. <property name="margin_right">10</property>
  412. <property name="orientation">vertical</property>
  413. <child>
  414. <object class="GtkCheckButton" id="_custThemeToggle">
  415. <property name="label" translatable="yes">Use Custom Theme</property>
  416. <property name="visible">True</property>
  417. <property name="can_focus">True</property>
  418. <property name="receives_default">False</property>
  419. <property name="tooltip_text" translatable="yes">Enable or disable custom themes in the GUI</property>
  420. <property name="halign">start</property>
  421. <property name="draw_indicator">True</property>
  422. <signal name="toggled" handler="CustThemeToggle_Activated" swapped="no"/>
  423. </object>
  424. <packing>
  425. <property name="expand">False</property>
  426. <property name="fill">True</property>
  427. <property name="padding">5</property>
  428. <property name="position">1</property>
  429. </packing>
  430. </child>
  431. <child>
  432. <object class="GtkBox">
  433. <property name="visible">True</property>
  434. <property name="can_focus">False</property>
  435. <child>
  436. <object class="GtkLabel" id="_custThemePathLabel">
  437. <property name="visible">True</property>
  438. <property name="can_focus">False</property>
  439. <property name="tooltip_text" translatable="yes">Path to custom GUI theme</property>
  440. <property name="label" translatable="yes">Custom Theme Path:</property>
  441. </object>
  442. <packing>
  443. <property name="expand">False</property>
  444. <property name="fill">True</property>
  445. <property name="padding">5</property>
  446. <property name="position">0</property>
  447. </packing>
  448. </child>
  449. <child>
  450. <object class="GtkEntry" id="_custThemePath">
  451. <property name="visible">True</property>
  452. <property name="can_focus">True</property>
  453. <property name="tooltip_text" translatable="yes">Path to custom GUI theme</property>
  454. <property name="valign">center</property>
  455. </object>
  456. <packing>
  457. <property name="expand">True</property>
  458. <property name="fill">True</property>
  459. <property name="position">1</property>
  460. </packing>
  461. </child>
  462. <child>
  463. <object class="GtkToggleButton" id="_browseThemePath">
  464. <property name="label" translatable="yes">Browse...</property>
  465. <property name="width_request">80</property>
  466. <property name="visible">True</property>
  467. <property name="can_focus">True</property>
  468. <property name="receives_default">True</property>
  469. <property name="tooltip_text" translatable="yes">Browse for a custom GUI theme</property>
  470. <property name="margin_left">5</property>
  471. <signal name="toggled" handler="BrowseThemeDir_Pressed" swapped="no"/>
  472. </object>
  473. <packing>
  474. <property name="expand">False</property>
  475. <property name="fill">True</property>
  476. <property name="position">2</property>
  477. </packing>
  478. </child>
  479. </object>
  480. <packing>
  481. <property name="expand">False</property>
  482. <property name="fill">True</property>
  483. <property name="padding">10</property>
  484. <property name="position">2</property>
  485. </packing>
  486. </child>
  487. </object>
  488. <packing>
  489. <property name="expand">False</property>
  490. <property name="fill">True</property>
  491. <property name="position">1</property>
  492. </packing>
  493. </child>
  494. </object>
  495. <packing>
  496. <property name="expand">False</property>
  497. <property name="fill">True</property>
  498. <property name="padding">5</property>
  499. <property name="position">6</property>
  500. </packing>
  501. </child>
  502. </object>
  503. </child>
  504. <child type="tab">
  505. <object class="GtkLabel">
  506. <property name="visible">True</property>
  507. <property name="can_focus">False</property>
  508. <property name="label" translatable="yes">General</property>
  509. </object>
  510. <packing>
  511. <property name="tab_fill">False</property>
  512. </packing>
  513. </child>
  514. <child>
  515. <object class="GtkBox" id="TabController">
  516. <property name="visible">True</property>
  517. <property name="can_focus">False</property>
  518. <property name="orientation">vertical</property>
  519. <child>
  520. <object class="GtkBox">
  521. <property name="visible">True</property>
  522. <property name="can_focus">False</property>
  523. <property name="margin_top">5</property>
  524. <property name="margin_bottom">10</property>
  525. <child>
  526. <object class="GtkCheckButton" id="_dockedModeToggle">
  527. <property name="label" translatable="yes">Enable Docked Mode</property>
  528. <property name="visible">True</property>
  529. <property name="can_focus">True</property>
  530. <property name="receives_default">False</property>
  531. <property name="tooltip_text" translatable="yes">Enable or disable Docked Mode</property>
  532. <property name="draw_indicator">True</property>
  533. </object>
  534. <packing>
  535. <property name="expand">False</property>
  536. <property name="fill">True</property>
  537. <property name="padding">10</property>
  538. <property name="position">0</property>
  539. </packing>
  540. </child>
  541. <child>
  542. <object class="GtkCheckButton" id="_directKeyboardAccess">
  543. <property name="label" translatable="yes">Direct Keyboard Access</property>
  544. <property name="visible">True</property>
  545. <property name="can_focus">True</property>
  546. <property name="receives_default">False</property>
  547. <property name="tooltip_text" translatable="yes">Enable or disable "direct keyboard access (HID) support" (Provides games access to your keyboard as a text entry device)</property>
  548. <property name="draw_indicator">True</property>
  549. </object>
  550. <packing>
  551. <property name="expand">False</property>
  552. <property name="fill">False</property>
  553. <property name="padding">10</property>
  554. <property name="position">1</property>
  555. </packing>
  556. </child>
  557. </object>
  558. <packing>
  559. <property name="expand">False</property>
  560. <property name="fill">True</property>
  561. <property name="padding">5</property>
  562. <property name="position">0</property>
  563. </packing>
  564. </child>
  565. <child>
  566. <object class="GtkNotebook">
  567. <property name="visible">True</property>
  568. <property name="can_focus">True</property>
  569. <child>
  570. <object class="GtkBox">
  571. <property name="visible">True</property>
  572. <property name="can_focus">False</property>
  573. <property name="margin_left">5</property>
  574. <property name="margin_right">5</property>
  575. <property name="margin_top">5</property>
  576. <property name="margin_bottom">5</property>
  577. <child>
  578. <object class="GtkBox">
  579. <property name="visible">True</property>
  580. <property name="can_focus">False</property>
  581. <property name="orientation">vertical</property>
  582. <child>
  583. <object class="GtkBox">
  584. <property name="visible">True</property>
  585. <property name="can_focus">False</property>
  586. <child>
  587. <object class="GtkLabel">
  588. <property name="visible">True</property>
  589. <property name="can_focus">False</property>
  590. <property name="tooltip_text" translatable="yes">The primary controller's type</property>
  591. <property name="halign">center</property>
  592. <property name="margin_left">10</property>
  593. <property name="margin_right">10</property>
  594. <property name="margin_top">5</property>
  595. <property name="margin_bottom">5</property>
  596. <property name="label" translatable="yes">Controller Type:</property>
  597. </object>
  598. <packing>
  599. <property name="expand">False</property>
  600. <property name="fill">True</property>
  601. <property name="position">0</property>
  602. </packing>
  603. </child>
  604. <child>
  605. <object class="GtkComboBoxText" id="_controller1Type">
  606. <property name="visible">True</property>
  607. <property name="can_focus">False</property>
  608. <property name="tooltip_text" translatable="yes">The primary controller's type</property>
  609. <property name="margin_left">5</property>
  610. <property name="active">0</property>
  611. <items>
  612. <item id="Handheld" translatable="yes">Handheld</item>
  613. <item id="ProController" translatable="yes">Pro Controller</item>
  614. <item id="NpadPair" translatable="yes">Paired Joycons</item>
  615. <item id="NpadLeft" translatable="yes">Left Joycon</item>
  616. <item id="NpadRight" translatable="yes">Right Joycon</item>
  617. </items>
  618. </object>
  619. <packing>
  620. <property name="expand">True</property>
  621. <property name="fill">True</property>
  622. <property name="position">1</property>
  623. </packing>
  624. </child>
  625. </object>
  626. <packing>
  627. <property name="expand">True</property>
  628. <property name="fill">True</property>
  629. <property name="padding">10</property>
  630. <property name="position">0</property>
  631. </packing>
  632. </child>
  633. <child>
  634. <object class="GtkGrid">
  635. <property name="visible">True</property>
  636. <property name="can_focus">False</property>
  637. <property name="row_spacing">2</property>
  638. <property name="column_spacing">5</property>
  639. <child>
  640. <object class="GtkLabel">
  641. <property name="visible">True</property>
  642. <property name="can_focus">False</property>
  643. <property name="label" translatable="yes">LStick Up</property>
  644. </object>
  645. <packing>
  646. <property name="left_attach">0</property>
  647. <property name="top_attach">0</property>
  648. </packing>
  649. </child>
  650. <child>
  651. <object class="GtkLabel">
  652. <property name="visible">True</property>
  653. <property name="can_focus">False</property>
  654. <property name="label" translatable="yes">LStick Down</property>
  655. </object>
  656. <packing>
  657. <property name="left_attach">0</property>
  658. <property name="top_attach">1</property>
  659. </packing>
  660. </child>
  661. <child>
  662. <object class="GtkLabel">
  663. <property name="visible">True</property>
  664. <property name="can_focus">False</property>
  665. <property name="label" translatable="yes">LStick Left</property>
  666. </object>
  667. <packing>
  668. <property name="left_attach">0</property>
  669. <property name="top_attach">2</property>
  670. </packing>
  671. </child>
  672. <child>
  673. <object class="GtkLabel">
  674. <property name="visible">True</property>
  675. <property name="can_focus">False</property>
  676. <property name="label" translatable="yes">LStick Right</property>
  677. </object>
  678. <packing>
  679. <property name="left_attach">0</property>
  680. <property name="top_attach">3</property>
  681. </packing>
  682. </child>
  683. <child>
  684. <object class="GtkLabel">
  685. <property name="visible">True</property>
  686. <property name="can_focus">False</property>
  687. <property name="label" translatable="yes">LStick Button</property>
  688. </object>
  689. <packing>
  690. <property name="left_attach">0</property>
  691. <property name="top_attach">4</property>
  692. </packing>
  693. </child>
  694. <child>
  695. <object class="GtkLabel">
  696. <property name="visible">True</property>
  697. <property name="can_focus">False</property>
  698. <property name="label" translatable="yes">Dpad Up</property>
  699. </object>
  700. <packing>
  701. <property name="left_attach">0</property>
  702. <property name="top_attach">5</property>
  703. </packing>
  704. </child>
  705. <child>
  706. <object class="GtkLabel">
  707. <property name="visible">True</property>
  708. <property name="can_focus">False</property>
  709. <property name="label" translatable="yes">Dpad Down</property>
  710. </object>
  711. <packing>
  712. <property name="left_attach">0</property>
  713. <property name="top_attach">6</property>
  714. </packing>
  715. </child>
  716. <child>
  717. <object class="GtkLabel">
  718. <property name="visible">True</property>
  719. <property name="can_focus">False</property>
  720. <property name="label" translatable="yes">Dpad Left</property>
  721. </object>
  722. <packing>
  723. <property name="left_attach">0</property>
  724. <property name="top_attach">7</property>
  725. </packing>
  726. </child>
  727. <child>
  728. <object class="GtkLabel">
  729. <property name="visible">True</property>
  730. <property name="can_focus">False</property>
  731. <property name="label" translatable="yes">Dpad Right</property>
  732. </object>
  733. <packing>
  734. <property name="left_attach">0</property>
  735. <property name="top_attach">8</property>
  736. </packing>
  737. </child>
  738. <child>
  739. <object class="GtkLabel">
  740. <property name="visible">True</property>
  741. <property name="can_focus">False</property>
  742. <property name="label" translatable="yes">-</property>
  743. </object>
  744. <packing>
  745. <property name="left_attach">0</property>
  746. <property name="top_attach">9</property>
  747. </packing>
  748. </child>
  749. <child>
  750. <object class="GtkLabel">
  751. <property name="visible">True</property>
  752. <property name="can_focus">False</property>
  753. <property name="label" translatable="yes">L</property>
  754. </object>
  755. <packing>
  756. <property name="left_attach">0</property>
  757. <property name="top_attach">10</property>
  758. </packing>
  759. </child>
  760. <child>
  761. <object class="GtkLabel">
  762. <property name="visible">True</property>
  763. <property name="can_focus">False</property>
  764. <property name="label" translatable="yes">ZL</property>
  765. </object>
  766. <packing>
  767. <property name="left_attach">0</property>
  768. <property name="top_attach">11</property>
  769. </packing>
  770. </child>
  771. <child>
  772. <object class="GtkLabel">
  773. <property name="visible">True</property>
  774. <property name="can_focus">False</property>
  775. <property name="label" translatable="yes">ZR</property>
  776. </object>
  777. <packing>
  778. <property name="left_attach">2</property>
  779. <property name="top_attach">11</property>
  780. </packing>
  781. </child>
  782. <child>
  783. <object class="GtkLabel">
  784. <property name="visible">True</property>
  785. <property name="can_focus">False</property>
  786. <property name="label" translatable="yes">R</property>
  787. </object>
  788. <packing>
  789. <property name="left_attach">2</property>
  790. <property name="top_attach">10</property>
  791. </packing>
  792. </child>
  793. <child>
  794. <object class="GtkLabel">
  795. <property name="visible">True</property>
  796. <property name="can_focus">False</property>
  797. <property name="label" translatable="yes">+</property>
  798. </object>
  799. <packing>
  800. <property name="left_attach">2</property>
  801. <property name="top_attach">9</property>
  802. </packing>
  803. </child>
  804. <child>
  805. <object class="GtkLabel">
  806. <property name="visible">True</property>
  807. <property name="can_focus">False</property>
  808. <property name="label" translatable="yes">Y</property>
  809. </object>
  810. <packing>
  811. <property name="left_attach">2</property>
  812. <property name="top_attach">8</property>
  813. </packing>
  814. </child>
  815. <child>
  816. <object class="GtkLabel">
  817. <property name="visible">True</property>
  818. <property name="can_focus">False</property>
  819. <property name="label" translatable="yes">X</property>
  820. </object>
  821. <packing>
  822. <property name="left_attach">2</property>
  823. <property name="top_attach">7</property>
  824. </packing>
  825. </child>
  826. <child>
  827. <object class="GtkLabel">
  828. <property name="visible">True</property>
  829. <property name="can_focus">False</property>
  830. <property name="label" translatable="yes">B</property>
  831. </object>
  832. <packing>
  833. <property name="left_attach">2</property>
  834. <property name="top_attach">6</property>
  835. </packing>
  836. </child>
  837. <child>
  838. <object class="GtkLabel">
  839. <property name="visible">True</property>
  840. <property name="can_focus">False</property>
  841. <property name="label" translatable="yes">A</property>
  842. </object>
  843. <packing>
  844. <property name="left_attach">2</property>
  845. <property name="top_attach">5</property>
  846. </packing>
  847. </child>
  848. <child>
  849. <object class="GtkLabel">
  850. <property name="visible">True</property>
  851. <property name="can_focus">False</property>
  852. <property name="label" translatable="yes">RStick Button</property>
  853. </object>
  854. <packing>
  855. <property name="left_attach">2</property>
  856. <property name="top_attach">4</property>
  857. </packing>
  858. </child>
  859. <child>
  860. <object class="GtkLabel">
  861. <property name="visible">True</property>
  862. <property name="can_focus">False</property>
  863. <property name="label" translatable="yes">RStick Right</property>
  864. </object>
  865. <packing>
  866. <property name="left_attach">2</property>
  867. <property name="top_attach">3</property>
  868. </packing>
  869. </child>
  870. <child>
  871. <object class="GtkLabel">
  872. <property name="visible">True</property>
  873. <property name="can_focus">False</property>
  874. <property name="label" translatable="yes">RStick Left</property>
  875. </object>
  876. <packing>
  877. <property name="left_attach">2</property>
  878. <property name="top_attach">2</property>
  879. </packing>
  880. </child>
  881. <child>
  882. <object class="GtkLabel">
  883. <property name="visible">True</property>
  884. <property name="can_focus">False</property>
  885. <property name="label" translatable="yes">RStick Down</property>
  886. </object>
  887. <packing>
  888. <property name="left_attach">2</property>
  889. <property name="top_attach">1</property>
  890. </packing>
  891. </child>
  892. <child>
  893. <object class="GtkLabel">
  894. <property name="visible">True</property>
  895. <property name="can_focus">False</property>
  896. <property name="label" translatable="yes">RStick Up</property>
  897. </object>
  898. <packing>
  899. <property name="left_attach">2</property>
  900. <property name="top_attach">0</property>
  901. </packing>
  902. </child>
  903. <child>
  904. <object class="GtkToggleButton" id="_lStickUp1">
  905. <property name="label" translatable="yes"> </property>
  906. <property name="visible">True</property>
  907. <property name="can_focus">True</property>
  908. <property name="receives_default">True</property>
  909. </object>
  910. <packing>
  911. <property name="left_attach">1</property>
  912. <property name="top_attach">0</property>
  913. </packing>
  914. </child>
  915. <child>
  916. <object class="GtkToggleButton" id="_lStickDown1">
  917. <property name="label" translatable="yes"> </property>
  918. <property name="visible">True</property>
  919. <property name="can_focus">True</property>
  920. <property name="receives_default">True</property>
  921. </object>
  922. <packing>
  923. <property name="left_attach">1</property>
  924. <property name="top_attach">1</property>
  925. </packing>
  926. </child>
  927. <child>
  928. <object class="GtkToggleButton" id="_lStickLeft1">
  929. <property name="label" translatable="yes"> </property>
  930. <property name="visible">True</property>
  931. <property name="can_focus">True</property>
  932. <property name="receives_default">True</property>
  933. </object>
  934. <packing>
  935. <property name="left_attach">1</property>
  936. <property name="top_attach">2</property>
  937. </packing>
  938. </child>
  939. <child>
  940. <object class="GtkToggleButton" id="_lStickRight1">
  941. <property name="label" translatable="yes"> </property>
  942. <property name="visible">True</property>
  943. <property name="can_focus">True</property>
  944. <property name="receives_default">True</property>
  945. </object>
  946. <packing>
  947. <property name="left_attach">1</property>
  948. <property name="top_attach">3</property>
  949. </packing>
  950. </child>
  951. <child>
  952. <object class="GtkToggleButton" id="_lStickButton1">
  953. <property name="label" translatable="yes"> </property>
  954. <property name="visible">True</property>
  955. <property name="can_focus">True</property>
  956. <property name="receives_default">True</property>
  957. </object>
  958. <packing>
  959. <property name="left_attach">1</property>
  960. <property name="top_attach">4</property>
  961. </packing>
  962. </child>
  963. <child>
  964. <object class="GtkToggleButton" id="_dpadUp1">
  965. <property name="label" translatable="yes"> </property>
  966. <property name="visible">True</property>
  967. <property name="can_focus">True</property>
  968. <property name="receives_default">True</property>
  969. </object>
  970. <packing>
  971. <property name="left_attach">1</property>
  972. <property name="top_attach">5</property>
  973. </packing>
  974. </child>
  975. <child>
  976. <object class="GtkToggleButton" id="_dpadDown1">
  977. <property name="label" translatable="yes"> </property>
  978. <property name="visible">True</property>
  979. <property name="can_focus">True</property>
  980. <property name="receives_default">True</property>
  981. </object>
  982. <packing>
  983. <property name="left_attach">1</property>
  984. <property name="top_attach">6</property>
  985. </packing>
  986. </child>
  987. <child>
  988. <object class="GtkToggleButton" id="_dpadLeft1">
  989. <property name="label" translatable="yes"> </property>
  990. <property name="visible">True</property>
  991. <property name="can_focus">True</property>
  992. <property name="receives_default">True</property>
  993. </object>
  994. <packing>
  995. <property name="left_attach">1</property>
  996. <property name="top_attach">7</property>
  997. </packing>
  998. </child>
  999. <child>
  1000. <object class="GtkToggleButton" id="_dpadRight1">
  1001. <property name="label" translatable="yes"> </property>
  1002. <property name="visible">True</property>
  1003. <property name="can_focus">True</property>
  1004. <property name="receives_default">True</property>
  1005. </object>
  1006. <packing>
  1007. <property name="left_attach">1</property>
  1008. <property name="top_attach">8</property>
  1009. </packing>
  1010. </child>
  1011. <child>
  1012. <object class="GtkToggleButton" id="_minus1">
  1013. <property name="label" translatable="yes"> </property>
  1014. <property name="visible">True</property>
  1015. <property name="can_focus">True</property>
  1016. <property name="receives_default">True</property>
  1017. </object>
  1018. <packing>
  1019. <property name="left_attach">1</property>
  1020. <property name="top_attach">9</property>
  1021. </packing>
  1022. </child>
  1023. <child>
  1024. <object class="GtkToggleButton" id="_l1">
  1025. <property name="label" translatable="yes"> </property>
  1026. <property name="visible">True</property>
  1027. <property name="can_focus">True</property>
  1028. <property name="receives_default">True</property>
  1029. </object>
  1030. <packing>
  1031. <property name="left_attach">1</property>
  1032. <property name="top_attach">10</property>
  1033. </packing>
  1034. </child>
  1035. <child>
  1036. <object class="GtkToggleButton" id="_zL1">
  1037. <property name="label" translatable="yes"> </property>
  1038. <property name="visible">True</property>
  1039. <property name="can_focus">True</property>
  1040. <property name="receives_default">True</property>
  1041. </object>
  1042. <packing>
  1043. <property name="left_attach">1</property>
  1044. <property name="top_attach">11</property>
  1045. </packing>
  1046. </child>
  1047. <child>
  1048. <object class="GtkToggleButton" id="_rStickUp1">
  1049. <property name="label" translatable="yes"> </property>
  1050. <property name="visible">True</property>
  1051. <property name="can_focus">True</property>
  1052. <property name="receives_default">True</property>
  1053. </object>
  1054. <packing>
  1055. <property name="left_attach">3</property>
  1056. <property name="top_attach">0</property>
  1057. </packing>
  1058. </child>
  1059. <child>
  1060. <object class="GtkToggleButton" id="_rStickDown1">
  1061. <property name="label" translatable="yes"> </property>
  1062. <property name="visible">True</property>
  1063. <property name="can_focus">True</property>
  1064. <property name="receives_default">True</property>
  1065. </object>
  1066. <packing>
  1067. <property name="left_attach">3</property>
  1068. <property name="top_attach">1</property>
  1069. </packing>
  1070. </child>
  1071. <child>
  1072. <object class="GtkToggleButton" id="_rStickLeft1">
  1073. <property name="label" translatable="yes"> </property>
  1074. <property name="visible">True</property>
  1075. <property name="can_focus">True</property>
  1076. <property name="receives_default">True</property>
  1077. </object>
  1078. <packing>
  1079. <property name="left_attach">3</property>
  1080. <property name="top_attach">2</property>
  1081. </packing>
  1082. </child>
  1083. <child>
  1084. <object class="GtkToggleButton" id="_rStickRight1">
  1085. <property name="label" translatable="yes"> </property>
  1086. <property name="visible">True</property>
  1087. <property name="can_focus">True</property>
  1088. <property name="receives_default">True</property>
  1089. </object>
  1090. <packing>
  1091. <property name="left_attach">3</property>
  1092. <property name="top_attach">3</property>
  1093. </packing>
  1094. </child>
  1095. <child>
  1096. <object class="GtkToggleButton" id="_rStickButton1">
  1097. <property name="label" translatable="yes"> </property>
  1098. <property name="visible">True</property>
  1099. <property name="can_focus">True</property>
  1100. <property name="receives_default">True</property>
  1101. </object>
  1102. <packing>
  1103. <property name="left_attach">3</property>
  1104. <property name="top_attach">4</property>
  1105. </packing>
  1106. </child>
  1107. <child>
  1108. <object class="GtkToggleButton" id="_a1">
  1109. <property name="label" translatable="yes"> </property>
  1110. <property name="visible">True</property>
  1111. <property name="can_focus">True</property>
  1112. <property name="receives_default">True</property>
  1113. </object>
  1114. <packing>
  1115. <property name="left_attach">3</property>
  1116. <property name="top_attach">5</property>
  1117. </packing>
  1118. </child>
  1119. <child>
  1120. <object class="GtkToggleButton" id="_b1">
  1121. <property name="label" translatable="yes"> </property>
  1122. <property name="visible">True</property>
  1123. <property name="can_focus">True</property>
  1124. <property name="receives_default">True</property>
  1125. </object>
  1126. <packing>
  1127. <property name="left_attach">3</property>
  1128. <property name="top_attach">6</property>
  1129. </packing>
  1130. </child>
  1131. <child>
  1132. <object class="GtkToggleButton" id="_x1">
  1133. <property name="label" translatable="yes"> </property>
  1134. <property name="visible">True</property>
  1135. <property name="can_focus">True</property>
  1136. <property name="receives_default">True</property>
  1137. </object>
  1138. <packing>
  1139. <property name="left_attach">3</property>
  1140. <property name="top_attach">7</property>
  1141. </packing>
  1142. </child>
  1143. <child>
  1144. <object class="GtkToggleButton" id="_y1">
  1145. <property name="label" translatable="yes"> </property>
  1146. <property name="visible">True</property>
  1147. <property name="can_focus">True</property>
  1148. <property name="receives_default">True</property>
  1149. </object>
  1150. <packing>
  1151. <property name="left_attach">3</property>
  1152. <property name="top_attach">8</property>
  1153. </packing>
  1154. </child>
  1155. <child>
  1156. <object class="GtkToggleButton" id="_plus1">
  1157. <property name="label" translatable="yes"> </property>
  1158. <property name="visible">True</property>
  1159. <property name="can_focus">True</property>
  1160. <property name="receives_default">True</property>
  1161. </object>
  1162. <packing>
  1163. <property name="left_attach">3</property>
  1164. <property name="top_attach">9</property>
  1165. </packing>
  1166. </child>
  1167. <child>
  1168. <object class="GtkToggleButton" id="_r1">
  1169. <property name="label" translatable="yes"> </property>
  1170. <property name="visible">True</property>
  1171. <property name="can_focus">True</property>
  1172. <property name="receives_default">True</property>
  1173. </object>
  1174. <packing>
  1175. <property name="left_attach">3</property>
  1176. <property name="top_attach">10</property>
  1177. </packing>
  1178. </child>
  1179. <child>
  1180. <object class="GtkToggleButton" id="_zR1">
  1181. <property name="label" translatable="yes"> </property>
  1182. <property name="visible">True</property>
  1183. <property name="can_focus">True</property>
  1184. <property name="receives_default">True</property>
  1185. </object>
  1186. <packing>
  1187. <property name="left_attach">3</property>
  1188. <property name="top_attach">11</property>
  1189. </packing>
  1190. </child>
  1191. </object>
  1192. <packing>
  1193. <property name="expand">False</property>
  1194. <property name="fill">True</property>
  1195. <property name="padding">10</property>
  1196. <property name="position">1</property>
  1197. </packing>
  1198. </child>
  1199. </object>
  1200. <packing>
  1201. <property name="expand">False</property>
  1202. <property name="fill">True</property>
  1203. <property name="position">0</property>
  1204. </packing>
  1205. </child>
  1206. <child>
  1207. <object class="GtkImage" id="_controllerImage">
  1208. <property name="visible">True</property>
  1209. <property name="can_focus">False</property>
  1210. <property name="margin_left">5</property>
  1211. </object>
  1212. <packing>
  1213. <property name="expand">True</property>
  1214. <property name="fill">True</property>
  1215. <property name="position">1</property>
  1216. </packing>
  1217. </child>
  1218. </object>
  1219. </child>
  1220. <child type="tab">
  1221. <object class="GtkLabel" id="Controller1">
  1222. <property name="visible">True</property>
  1223. <property name="can_focus">False</property>
  1224. <property name="label" translatable="yes">Controller 1</property>
  1225. </object>
  1226. <packing>
  1227. <property name="tab_fill">False</property>
  1228. </packing>
  1229. </child>
  1230. <child>
  1231. <object class="GtkLabel">
  1232. <property name="visible">True</property>
  1233. <property name="can_focus">False</property>
  1234. <property name="label" translatable="yes">Multiple controllers are not yet supported</property>
  1235. </object>
  1236. <packing>
  1237. <property name="position">1</property>
  1238. <property name="tab_expand">True</property>
  1239. </packing>
  1240. </child>
  1241. <child type="tab">
  1242. <object class="GtkLabel" id="Controller2">
  1243. <property name="visible">True</property>
  1244. <property name="can_focus">False</property>
  1245. <property name="label" translatable="yes">Controller 2</property>
  1246. </object>
  1247. <packing>
  1248. <property name="position">1</property>
  1249. <property name="tab_fill">False</property>
  1250. </packing>
  1251. </child>
  1252. <child>
  1253. <object class="GtkLabel">
  1254. <property name="visible">True</property>
  1255. <property name="can_focus">False</property>
  1256. <property name="label" translatable="yes">Multiple controllers are not yet supported</property>
  1257. </object>
  1258. <packing>
  1259. <property name="position">2</property>
  1260. </packing>
  1261. </child>
  1262. <child type="tab">
  1263. <object class="GtkLabel" id="Controller3">
  1264. <property name="visible">True</property>
  1265. <property name="can_focus">False</property>
  1266. <property name="label" translatable="yes">Controller 3</property>
  1267. </object>
  1268. <packing>
  1269. <property name="position">2</property>
  1270. <property name="tab_fill">False</property>
  1271. </packing>
  1272. </child>
  1273. <child>
  1274. <object class="GtkLabel">
  1275. <property name="visible">True</property>
  1276. <property name="can_focus">False</property>
  1277. <property name="label" translatable="yes">Multiple controllers are not yet supported</property>
  1278. </object>
  1279. <packing>
  1280. <property name="position">3</property>
  1281. </packing>
  1282. </child>
  1283. <child type="tab">
  1284. <object class="GtkLabel" id="Controller4">
  1285. <property name="visible">True</property>
  1286. <property name="can_focus">False</property>
  1287. <property name="label" translatable="yes">Controller 4</property>
  1288. </object>
  1289. <packing>
  1290. <property name="position">3</property>
  1291. <property name="tab_fill">False</property>
  1292. </packing>
  1293. </child>
  1294. <child>
  1295. <object class="GtkLabel">
  1296. <property name="visible">True</property>
  1297. <property name="can_focus">False</property>
  1298. <property name="label" translatable="yes">Multiple controllers are not yet supported</property>
  1299. </object>
  1300. <packing>
  1301. <property name="position">4</property>
  1302. </packing>
  1303. </child>
  1304. <child type="tab">
  1305. <object class="GtkLabel" id="Controller5">
  1306. <property name="visible">True</property>
  1307. <property name="can_focus">False</property>
  1308. <property name="label" translatable="yes">Controller 5</property>
  1309. </object>
  1310. <packing>
  1311. <property name="position">4</property>
  1312. <property name="tab_fill">False</property>
  1313. </packing>
  1314. </child>
  1315. <child>
  1316. <object class="GtkLabel">
  1317. <property name="visible">True</property>
  1318. <property name="can_focus">False</property>
  1319. <property name="label" translatable="yes">Multiple controllers are not yet supported</property>
  1320. </object>
  1321. <packing>
  1322. <property name="position">5</property>
  1323. </packing>
  1324. </child>
  1325. <child type="tab">
  1326. <object class="GtkLabel" id="Controller6">
  1327. <property name="visible">True</property>
  1328. <property name="can_focus">False</property>
  1329. <property name="label" translatable="yes">Controller 6</property>
  1330. </object>
  1331. <packing>
  1332. <property name="position">5</property>
  1333. <property name="tab_fill">False</property>
  1334. </packing>
  1335. </child>
  1336. <child>
  1337. <object class="GtkLabel">
  1338. <property name="visible">True</property>
  1339. <property name="can_focus">False</property>
  1340. <property name="label" translatable="yes">Multiple controllers are not yet supported</property>
  1341. </object>
  1342. <packing>
  1343. <property name="position">6</property>
  1344. </packing>
  1345. </child>
  1346. <child type="tab">
  1347. <object class="GtkLabel" id="Controller7">
  1348. <property name="visible">True</property>
  1349. <property name="can_focus">False</property>
  1350. <property name="label" translatable="yes">Controller 7</property>
  1351. </object>
  1352. <packing>
  1353. <property name="position">6</property>
  1354. <property name="tab_fill">False</property>
  1355. </packing>
  1356. </child>
  1357. <child>
  1358. <object class="GtkLabel">
  1359. <property name="visible">True</property>
  1360. <property name="can_focus">False</property>
  1361. <property name="label" translatable="yes">Multiple controllers are not yet supported</property>
  1362. </object>
  1363. <packing>
  1364. <property name="position">7</property>
  1365. </packing>
  1366. </child>
  1367. <child type="tab">
  1368. <object class="GtkLabel" id="Controller8">
  1369. <property name="visible">True</property>
  1370. <property name="can_focus">False</property>
  1371. <property name="label" translatable="yes">Controller 8</property>
  1372. </object>
  1373. <packing>
  1374. <property name="position">7</property>
  1375. <property name="tab_fill">False</property>
  1376. </packing>
  1377. </child>
  1378. </object>
  1379. <packing>
  1380. <property name="expand">False</property>
  1381. <property name="fill">True</property>
  1382. <property name="position">2</property>
  1383. </packing>
  1384. </child>
  1385. </object>
  1386. <packing>
  1387. <property name="position">1</property>
  1388. </packing>
  1389. </child>
  1390. <child type="tab">
  1391. <object class="GtkLabel">
  1392. <property name="visible">True</property>
  1393. <property name="can_focus">False</property>
  1394. <property name="label" translatable="yes">Input</property>
  1395. </object>
  1396. <packing>
  1397. <property name="position">1</property>
  1398. <property name="tab_fill">False</property>
  1399. </packing>
  1400. </child>
  1401. <child>
  1402. <object class="GtkBox" id="TabSystem">
  1403. <property name="visible">True</property>
  1404. <property name="can_focus">False</property>
  1405. <property name="margin_left">5</property>
  1406. <property name="margin_right">10</property>
  1407. <property name="margin_top">5</property>
  1408. <property name="orientation">vertical</property>
  1409. <child>
  1410. <object class="GtkBox" id="CatCore">
  1411. <property name="visible">True</property>
  1412. <property name="can_focus">False</property>
  1413. <property name="valign">start</property>
  1414. <property name="margin_left">5</property>
  1415. <property name="margin_right">5</property>
  1416. <property name="orientation">vertical</property>
  1417. <child>
  1418. <object class="GtkLabel">
  1419. <property name="visible">True</property>
  1420. <property name="can_focus">False</property>
  1421. <property name="halign">start</property>
  1422. <property name="margin_left">5</property>
  1423. <property name="margin_bottom">5</property>
  1424. <property name="label" translatable="yes">Core</property>
  1425. <attributes>
  1426. <attribute name="weight" value="bold"/>
  1427. </attributes>
  1428. </object>
  1429. <packing>
  1430. <property name="expand">False</property>
  1431. <property name="fill">True</property>
  1432. <property name="position">0</property>
  1433. </packing>
  1434. </child>
  1435. <child>
  1436. <object class="GtkBox">
  1437. <property name="visible">True</property>
  1438. <property name="can_focus">False</property>
  1439. <property name="margin_left">10</property>
  1440. <property name="margin_right">10</property>
  1441. <property name="orientation">vertical</property>
  1442. <child>
  1443. <object class="GtkCheckButton" id="_vSyncToggle">
  1444. <property name="label" translatable="yes">Enable VSync</property>
  1445. <property name="visible">True</property>
  1446. <property name="can_focus">True</property>
  1447. <property name="receives_default">False</property>
  1448. <property name="tooltip_text" translatable="yes">Enables or disables Vertical Sync</property>
  1449. <property name="halign">start</property>
  1450. <property name="margin_top">5</property>
  1451. <property name="margin_bottom">5</property>
  1452. <property name="draw_indicator">True</property>
  1453. </object>
  1454. <packing>
  1455. <property name="expand">False</property>
  1456. <property name="fill">True</property>
  1457. <property name="position">0</property>
  1458. </packing>
  1459. </child>
  1460. <child>
  1461. <object class="GtkCheckButton" id="_multiSchedToggle">
  1462. <property name="label" translatable="yes">Enable Multicore Scheduling</property>
  1463. <property name="visible">True</property>
  1464. <property name="can_focus">True</property>
  1465. <property name="receives_default">False</property>
  1466. <property name="tooltip_text" translatable="yes">Enables or disables multi-core scheduling of threads</property>
  1467. <property name="halign">start</property>
  1468. <property name="margin_top">5</property>
  1469. <property name="margin_bottom">5</property>
  1470. <property name="draw_indicator">True</property>
  1471. </object>
  1472. <packing>
  1473. <property name="expand">False</property>
  1474. <property name="fill">True</property>
  1475. <property name="position">1</property>
  1476. </packing>
  1477. </child>
  1478. <child>
  1479. <object class="GtkCheckButton" id="_legacyJitToggle">
  1480. <property name="label" translatable="yes">Use old ChocolArm64 ARM emulator</property>
  1481. <property name="visible">True</property>
  1482. <property name="can_focus">True</property>
  1483. <property name="receives_default">False</property>
  1484. <property name="tooltip_text" translatable="yes">Uses old ChocolArm64 ARM emulator rather then the new ARMeilleure</property>
  1485. <property name="halign">start</property>
  1486. <property name="margin_top">5</property>
  1487. <property name="margin_bottom">5</property>
  1488. <property name="draw_indicator">True</property>
  1489. </object>
  1490. <packing>
  1491. <property name="expand">False</property>
  1492. <property name="fill">True</property>
  1493. <property name="position">2</property>
  1494. </packing>
  1495. </child>
  1496. <child>
  1497. <object class="GtkCheckButton" id="_fsicToggle">
  1498. <property name="label" translatable="yes">Enable FS Integrity Checks</property>
  1499. <property name="visible">True</property>
  1500. <property name="can_focus">True</property>
  1501. <property name="receives_default">False</property>
  1502. <property name="tooltip_text" translatable="yes">Enables integrity checks on Game content files</property>
  1503. <property name="halign">start</property>
  1504. <property name="margin_top">5</property>
  1505. <property name="margin_bottom">5</property>
  1506. <property name="draw_indicator">True</property>
  1507. </object>
  1508. <packing>
  1509. <property name="expand">False</property>
  1510. <property name="fill">True</property>
  1511. <property name="position">3</property>
  1512. </packing>
  1513. </child>
  1514. <child>
  1515. <object class="GtkBox">
  1516. <property name="visible">True</property>
  1517. <property name="can_focus">False</property>
  1518. <child>
  1519. <object class="GtkLabel">
  1520. <property name="visible">True</property>
  1521. <property name="can_focus">False</property>
  1522. <property name="tooltip_text" translatable="yes">Graphics Shaders Dump Path</property>
  1523. <property name="label" translatable="yes">Graphics Shaders Dump Path:</property>
  1524. </object>
  1525. <packing>
  1526. <property name="expand">False</property>
  1527. <property name="fill">True</property>
  1528. <property name="padding">5</property>
  1529. <property name="position">0</property>
  1530. </packing>
  1531. </child>
  1532. <child>
  1533. <object class="GtkEntry" id="_graphicsShadersDumpPath">
  1534. <property name="visible">True</property>
  1535. <property name="can_focus">True</property>
  1536. <property name="tooltip_text" translatable="yes">Graphics Shaders Dump Path</property>
  1537. <property name="valign">center</property>
  1538. <property name="caps_lock_warning">False</property>
  1539. </object>
  1540. <packing>
  1541. <property name="expand">True</property>
  1542. <property name="fill">True</property>
  1543. <property name="position">1</property>
  1544. </packing>
  1545. </child>
  1546. </object>
  1547. <packing>
  1548. <property name="expand">False</property>
  1549. <property name="fill">True</property>
  1550. <property name="padding">5</property>
  1551. <property name="position">4</property>
  1552. </packing>
  1553. </child>
  1554. </object>
  1555. <packing>
  1556. <property name="expand">True</property>
  1557. <property name="fill">True</property>
  1558. <property name="position">1</property>
  1559. </packing>
  1560. </child>
  1561. </object>
  1562. <packing>
  1563. <property name="expand">False</property>
  1564. <property name="fill">True</property>
  1565. <property name="padding">5</property>
  1566. <property name="position">0</property>
  1567. </packing>
  1568. </child>
  1569. <child>
  1570. <object class="GtkSeparator">
  1571. <property name="visible">True</property>
  1572. <property name="can_focus">False</property>
  1573. <property name="margin_left">5</property>
  1574. <property name="margin_right">5</property>
  1575. </object>
  1576. <packing>
  1577. <property name="expand">False</property>
  1578. <property name="fill">True</property>
  1579. <property name="padding">5</property>
  1580. <property name="position">1</property>
  1581. </packing>
  1582. </child>
  1583. <child>
  1584. <object class="GtkBox" id="CatLog">
  1585. <property name="visible">True</property>
  1586. <property name="can_focus">False</property>
  1587. <property name="margin_left">5</property>
  1588. <property name="margin_right">5</property>
  1589. <property name="orientation">vertical</property>
  1590. <child>
  1591. <object class="GtkLabel">
  1592. <property name="visible">True</property>
  1593. <property name="can_focus">False</property>
  1594. <property name="halign">start</property>
  1595. <property name="margin_bottom">5</property>
  1596. <property name="label" translatable="yes">Logging</property>
  1597. <attributes>
  1598. <attribute name="weight" value="bold"/>
  1599. </attributes>
  1600. </object>
  1601. <packing>
  1602. <property name="expand">False</property>
  1603. <property name="fill">True</property>
  1604. <property name="position">0</property>
  1605. </packing>
  1606. </child>
  1607. <child>
  1608. <object class="GtkBox">
  1609. <property name="visible">True</property>
  1610. <property name="can_focus">False</property>
  1611. <property name="margin_left">10</property>
  1612. <property name="margin_right">10</property>
  1613. <property name="orientation">vertical</property>
  1614. <child>
  1615. <object class="GtkCheckButton" id="_fileLogToggle">
  1616. <property name="label" translatable="yes">Enable Logging to File</property>
  1617. <property name="visible">True</property>
  1618. <property name="can_focus">True</property>
  1619. <property name="receives_default">False</property>
  1620. <property name="tooltip_text" translatable="yes">Enables or disables logging to a file on disk</property>
  1621. <property name="halign">start</property>
  1622. <property name="margin_top">5</property>
  1623. <property name="margin_bottom">5</property>
  1624. <property name="draw_indicator">True</property>
  1625. </object>
  1626. <packing>
  1627. <property name="expand">False</property>
  1628. <property name="fill">True</property>
  1629. <property name="position">0</property>
  1630. </packing>
  1631. </child>
  1632. <child>
  1633. <object class="GtkBox">
  1634. <property name="visible">True</property>
  1635. <property name="can_focus">False</property>
  1636. <property name="margin_left">5</property>
  1637. <property name="margin_bottom">10</property>
  1638. <child>
  1639. <object class="GtkLabel">
  1640. <property name="visible">True</property>
  1641. <property name="can_focus">False</property>
  1642. <property name="tooltip_text" translatable="yes">Location of the log file</property>
  1643. <property name="label" translatable="yes">Log File Location:</property>
  1644. </object>
  1645. <packing>
  1646. <property name="expand">False</property>
  1647. <property name="fill">True</property>
  1648. <property name="padding">5</property>
  1649. <property name="position">0</property>
  1650. </packing>
  1651. </child>
  1652. <child>
  1653. <object class="GtkEntry" id="_logPath">
  1654. <property name="visible">True</property>
  1655. <property name="can_focus">True</property>
  1656. <property name="tooltip_text" translatable="yes">Location of the log file</property>
  1657. <property name="valign">center</property>
  1658. <property name="editable">False</property>
  1659. <property name="caps_lock_warning">False</property>
  1660. </object>
  1661. <packing>
  1662. <property name="expand">True</property>
  1663. <property name="fill">True</property>
  1664. <property name="position">1</property>
  1665. </packing>
  1666. </child>
  1667. </object>
  1668. <packing>
  1669. <property name="expand">False</property>
  1670. <property name="fill">True</property>
  1671. <property name="padding">5</property>
  1672. <property name="position">1</property>
  1673. </packing>
  1674. </child>
  1675. <child>
  1676. <object class="GtkCheckButton" id="_debugLogToggle">
  1677. <property name="label" translatable="yes">Enable Debug Logs</property>
  1678. <property name="visible">True</property>
  1679. <property name="can_focus">True</property>
  1680. <property name="receives_default">False</property>
  1681. <property name="tooltip_text" translatable="yes">Enables printing debug log messages</property>
  1682. <property name="halign">start</property>
  1683. <property name="margin_top">5</property>
  1684. <property name="margin_bottom">5</property>
  1685. <property name="draw_indicator">True</property>
  1686. </object>
  1687. <packing>
  1688. <property name="expand">False</property>
  1689. <property name="fill">True</property>
  1690. <property name="position">2</property>
  1691. </packing>
  1692. </child>
  1693. <child>
  1694. <object class="GtkCheckButton" id="_stubLogToggle">
  1695. <property name="label" translatable="yes">Enable Stub Logs</property>
  1696. <property name="visible">True</property>
  1697. <property name="can_focus">True</property>
  1698. <property name="receives_default">False</property>
  1699. <property name="tooltip_text" translatable="yes">Enables printing stub log messages</property>
  1700. <property name="halign">start</property>
  1701. <property name="margin_top">5</property>
  1702. <property name="margin_bottom">5</property>
  1703. <property name="draw_indicator">True</property>
  1704. </object>
  1705. <packing>
  1706. <property name="expand">False</property>
  1707. <property name="fill">True</property>
  1708. <property name="position">3</property>
  1709. </packing>
  1710. </child>
  1711. <child>
  1712. <object class="GtkCheckButton" id="_infoLogToggle">
  1713. <property name="label" translatable="yes">Enable Info Logs</property>
  1714. <property name="visible">True</property>
  1715. <property name="can_focus">True</property>
  1716. <property name="receives_default">False</property>
  1717. <property name="tooltip_text" translatable="yes">Enables printing info log messages</property>
  1718. <property name="halign">start</property>
  1719. <property name="margin_top">5</property>
  1720. <property name="margin_bottom">5</property>
  1721. <property name="draw_indicator">True</property>
  1722. </object>
  1723. <packing>
  1724. <property name="expand">False</property>
  1725. <property name="fill">True</property>
  1726. <property name="position">4</property>
  1727. </packing>
  1728. </child>
  1729. <child>
  1730. <object class="GtkCheckButton" id="_warningLogToggle">
  1731. <property name="label" translatable="yes">Enable Warning Logs</property>
  1732. <property name="visible">True</property>
  1733. <property name="can_focus">True</property>
  1734. <property name="receives_default">False</property>
  1735. <property name="tooltip_text" translatable="yes">Enables printing warning log messages</property>
  1736. <property name="halign">start</property>
  1737. <property name="margin_top">5</property>
  1738. <property name="margin_bottom">5</property>
  1739. <property name="draw_indicator">True</property>
  1740. </object>
  1741. <packing>
  1742. <property name="expand">False</property>
  1743. <property name="fill">True</property>
  1744. <property name="position">5</property>
  1745. </packing>
  1746. </child>
  1747. <child>
  1748. <object class="GtkCheckButton" id="_errorLogToggle">
  1749. <property name="label" translatable="yes">Enable Error Logs</property>
  1750. <property name="visible">True</property>
  1751. <property name="can_focus">True</property>
  1752. <property name="receives_default">False</property>
  1753. <property name="tooltip_text" translatable="yes">Enables printing error log messages</property>
  1754. <property name="halign">start</property>
  1755. <property name="margin_top">5</property>
  1756. <property name="margin_bottom">5</property>
  1757. <property name="draw_indicator">True</property>
  1758. </object>
  1759. <packing>
  1760. <property name="expand">False</property>
  1761. <property name="fill">True</property>
  1762. <property name="position">6</property>
  1763. </packing>
  1764. </child>
  1765. <child>
  1766. <object class="GtkCheckButton" id="_guestLogToggle">
  1767. <property name="label" translatable="yes">Enable Guest Logs</property>
  1768. <property name="visible">True</property>
  1769. <property name="can_focus">True</property>
  1770. <property name="receives_default">False</property>
  1771. <property name="tooltip_text" translatable="yes">Enables printing guest log messages</property>
  1772. <property name="halign">start</property>
  1773. <property name="margin_top">5</property>
  1774. <property name="margin_bottom">5</property>
  1775. <property name="draw_indicator">True</property>
  1776. </object>
  1777. <packing>
  1778. <property name="expand">False</property>
  1779. <property name="fill">True</property>
  1780. <property name="position">7</property>
  1781. </packing>
  1782. </child>
  1783. <child>
  1784. <object class="GtkCheckButton" id="_fsAccessLogToggle">
  1785. <property name="label" translatable="yes">Enable Fs Access Logs</property>
  1786. <property name="visible">True</property>
  1787. <property name="can_focus">True</property>
  1788. <property name="receives_default">False</property>
  1789. <property name="tooltip_text" translatable="yes">Enables printing fs access log messages</property>
  1790. <property name="halign">start</property>
  1791. <property name="margin_top">5</property>
  1792. <property name="margin_bottom">5</property>
  1793. <property name="draw_indicator">True</property>
  1794. </object>
  1795. <packing>
  1796. <property name="expand">False</property>
  1797. <property name="fill">True</property>
  1798. <property name="position">8</property>
  1799. </packing>
  1800. </child>
  1801. <child>
  1802. <object class="GtkBox">
  1803. <property name="visible">True</property>
  1804. <property name="can_focus">False</property>
  1805. <child>
  1806. <object class="GtkLabel">
  1807. <property name="visible">True</property>
  1808. <property name="can_focus">False</property>
  1809. <property name="tooltip_text" translatable="yes">Enables FS access log output to the console. Possible modes are 0-3</property>
  1810. <property name="label" translatable="yes">Fs Global Access Log Mode:</property>
  1811. </object>
  1812. <packing>
  1813. <property name="expand">False</property>
  1814. <property name="fill">True</property>
  1815. <property name="padding">5</property>
  1816. <property name="position">0</property>
  1817. </packing>
  1818. </child>
  1819. <child>
  1820. <object class="GtkSpinButton">
  1821. <property name="visible">True</property>
  1822. <property name="can_focus">True</property>
  1823. <property name="tooltip_text" translatable="yes">Enables FS access log output to the console. Possible modes are 0-3</property>
  1824. <property name="adjustment">_fsLogSpinAdjustment</property>
  1825. </object>
  1826. <packing>
  1827. <property name="expand">True</property>
  1828. <property name="fill">True</property>
  1829. <property name="position">1</property>
  1830. </packing>
  1831. </child>
  1832. </object>
  1833. <packing>
  1834. <property name="expand">False</property>
  1835. <property name="fill">True</property>
  1836. <property name="padding">5</property>
  1837. <property name="position">9</property>
  1838. </packing>
  1839. </child>
  1840. </object>
  1841. <packing>
  1842. <property name="expand">True</property>
  1843. <property name="fill">True</property>
  1844. <property name="position">1</property>
  1845. </packing>
  1846. </child>
  1847. </object>
  1848. <packing>
  1849. <property name="expand">False</property>
  1850. <property name="fill">True</property>
  1851. <property name="padding">5</property>
  1852. <property name="position">2</property>
  1853. </packing>
  1854. </child>
  1855. <child>
  1856. <object class="GtkSeparator">
  1857. <property name="visible">True</property>
  1858. <property name="can_focus">False</property>
  1859. <property name="margin_left">5</property>
  1860. <property name="margin_right">5</property>
  1861. </object>
  1862. <packing>
  1863. <property name="expand">False</property>
  1864. <property name="fill">True</property>
  1865. <property name="padding">5</property>
  1866. <property name="position">3</property>
  1867. </packing>
  1868. </child>
  1869. <child>
  1870. <object class="GtkBox" id="CatHacks">
  1871. <property name="visible">True</property>
  1872. <property name="can_focus">False</property>
  1873. <property name="margin_left">5</property>
  1874. <property name="margin_right">5</property>
  1875. <property name="orientation">vertical</property>
  1876. <child>
  1877. <object class="GtkBox">
  1878. <property name="visible">True</property>
  1879. <property name="can_focus">False</property>
  1880. <child>
  1881. <object class="GtkLabel">
  1882. <property name="visible">True</property>
  1883. <property name="can_focus">False</property>
  1884. <property name="halign">start</property>
  1885. <property name="margin_bottom">5</property>
  1886. <property name="label" translatable="yes">Hacks</property>
  1887. <attributes>
  1888. <attribute name="weight" value="bold"/>
  1889. </attributes>
  1890. </object>
  1891. <packing>
  1892. <property name="expand">False</property>
  1893. <property name="fill">True</property>
  1894. <property name="position">0</property>
  1895. </packing>
  1896. </child>
  1897. <child>
  1898. <object class="GtkLabel">
  1899. <property name="visible">True</property>
  1900. <property name="can_focus">False</property>
  1901. <property name="halign">start</property>
  1902. <property name="margin_bottom">5</property>
  1903. <property name="label" translatable="yes"> - These may cause instability</property>
  1904. </object>
  1905. <packing>
  1906. <property name="expand">False</property>
  1907. <property name="fill">True</property>
  1908. <property name="position">1</property>
  1909. </packing>
  1910. </child>
  1911. </object>
  1912. <packing>
  1913. <property name="expand">False</property>
  1914. <property name="fill">True</property>
  1915. <property name="position">1</property>
  1916. </packing>
  1917. </child>
  1918. <child>
  1919. <object class="GtkBox">
  1920. <property name="visible">True</property>
  1921. <property name="can_focus">False</property>
  1922. <property name="margin_left">10</property>
  1923. <property name="margin_right">10</property>
  1924. <property name="orientation">vertical</property>
  1925. <child>
  1926. <object class="GtkCheckButton" id="_ignoreToggle">
  1927. <property name="label" translatable="yes">Ignore Missing Services</property>
  1928. <property name="visible">True</property>
  1929. <property name="can_focus">True</property>
  1930. <property name="receives_default">False</property>
  1931. <property name="tooltip_text" translatable="yes">Enable or disable ignoring missing services</property>
  1932. <property name="halign">start</property>
  1933. <property name="margin_top">5</property>
  1934. <property name="margin_bottom">5</property>
  1935. <property name="draw_indicator">True</property>
  1936. </object>
  1937. <packing>
  1938. <property name="expand">False</property>
  1939. <property name="fill">True</property>
  1940. <property name="position">0</property>
  1941. </packing>
  1942. </child>
  1943. </object>
  1944. <packing>
  1945. <property name="expand">True</property>
  1946. <property name="fill">True</property>
  1947. <property name="position">2</property>
  1948. </packing>
  1949. </child>
  1950. </object>
  1951. <packing>
  1952. <property name="expand">False</property>
  1953. <property name="fill">True</property>
  1954. <property name="padding">5</property>
  1955. <property name="position">4</property>
  1956. </packing>
  1957. </child>
  1958. </object>
  1959. <packing>
  1960. <property name="position">2</property>
  1961. </packing>
  1962. </child>
  1963. <child type="tab">
  1964. <object class="GtkLabel">
  1965. <property name="visible">True</property>
  1966. <property name="can_focus">False</property>
  1967. <property name="halign">end</property>
  1968. <property name="label" translatable="yes">System</property>
  1969. </object>
  1970. <packing>
  1971. <property name="position">2</property>
  1972. <property name="tab_fill">False</property>
  1973. </packing>
  1974. </child>
  1975. </object>
  1976. </child>
  1977. </object>
  1978. </child>
  1979. </object>
  1980. <packing>
  1981. <property name="expand">True</property>
  1982. <property name="fill">True</property>
  1983. <property name="position">1</property>
  1984. </packing>
  1985. </child>
  1986. </object>
  1987. </child>
  1988. </object>
  1989. </interface>