12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?xml version="1.0" encoding="UTF-8"?>
- <stkgui>
- <div x="1%" y="1%" width="98%" height="98%" layout="vertical-row" >
- <header text_align="center" width="80%" align="center" text="SuperTuxKart Options"/>
- <spacer height="15" width="10"/>
- <tabs id="options_choice" height="10%" max_height="110" x="2%" width="98%" align="center">
- <icon-button id="tab_video" width="128" height="128" icon="gui/options_video.png"/>
- <icon-button id="tab_audio" width="128" height="128" icon="gui/options_audio.png"/>
- <icon-button id="tab_ui" width="128" height="128" icon="gui/options_ui.png"/>
- <icon-button id="tab_players" width="128" height="128" icon="gui/options_players.png"
- I18N="Section in the settings menu" text="Players"/>
- <icon-button id="tab_controls" width="128" height="128" icon="gui/options_input.png"/>
- </tabs>
- <box proportion="1" width="100%" layout="vertical-row">
- <spacer width="5" height="5"/>
- <div layout="horizontal-row" width="75%" height="fit" align="center">
- <spacer proportion="1"/>
- <label text="You are playing as" height="100%"/>
- <spacer width="2%" height="1"/>
- <button id="playername" width="27%" align="center"/>
- <spacer proportion="1"/>
- </div>
- <spacer width="5" height="10"/>
- <label width="100%"
- I18N="In the player configuration screen"
- text="Press enter or double-click on a player to edit him/her"
- text_align="center" />
- <spacer width="5" height="20"/>
- <box proportion="5" width="75%" align="center" layout="vertical-row" padding="8">
- <list id="players" x="0" y="0" width="100%" height="100%"/>
- </box>
- <spacer width="20" height="25"/>
- <button id="addplayer" x="20"
- I18N="In the player configuration screen"
- text="Add Player" align="center"/>
- <spacer width="20" height="15"/>
- </box>
- </div>
- <icon-button id="back" x="0" y="0" height="8%" icon="gui/back.png"/>
- </stkgui>
|