80ce6be8f7
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@8649 178a84e3-b1eb-0310-8ba1-8eac791a3b58
71 lines
3.2 KiB
Plaintext
71 lines
3.2 KiB
Plaintext
<stkgui>
|
|
|
|
<div x="2%" y="2%" width="96%" height="97%" 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" width="100%" 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"
|
|
I18N="Section in the settings menu" text="Audio"/>
|
|
<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"/>
|
|
<icon-button id="tab_controls" width="128" height="128" icon="gui/options_input.png"/>
|
|
</tabs>
|
|
|
|
<box proportion="1" width="100%" layout="vertical-row">
|
|
|
|
<spacer height="15" width="10"/>
|
|
|
|
<!-- ******** Music ******** -->
|
|
<label width="100%" I18N="Section in the audio/video settings submenu" text="Music"/>
|
|
|
|
<div width="75%" height="fit" layout="horizontal-row" >
|
|
<label proportion="1" height="100%" text_align="right" I18N="Next to checkbox in settings menu" text="Enabled"/>
|
|
|
|
<div proportion="1" height="fit" layout="horizontal-row" >
|
|
<spacer width="40" height="100%" />
|
|
<!-- FIXME: don't hardcode height -->
|
|
<checkbox id="music_enabled" width="40" height="40"/>
|
|
</div>
|
|
</div>
|
|
<div width="75%" height="fit" layout="horizontal-row" >
|
|
<label proportion="1" height="100%" text_align="right" I18N="Music volume in options" text="Volume"/>
|
|
<div proportion="1" height="fit" layout="horizontal-row" >
|
|
<spacer width="40" height="100%" />
|
|
<gauge id="music_volume" proportion="1" min_value="1" max_value="10"/>
|
|
</div>
|
|
</div>
|
|
|
|
<spacer height="15" width="10"/>
|
|
|
|
<!-- ******** SFX ******** -->
|
|
<label width="100%" I18N="Section in audio/video settings submenu" text="Sound Effects"/>
|
|
|
|
<div width="75%" height="fit" layout="horizontal-row" >
|
|
<label proportion="1" height="100%" text_align="right" I18N="Next to checkbox in settings menu" text="Enabled"/>
|
|
<div proportion="1" height="fit" layout="horizontal-row" >
|
|
<spacer width="40" height="100%" />
|
|
<!-- FIXME: don't hardcode height -->
|
|
<checkbox id="sfx_enabled" width="40" height="40"/>
|
|
</div>
|
|
</div>
|
|
<div width="75%" height="fit" layout="horizontal-row" >
|
|
<label proportion="1" height="100%" text_align="right" I18N="Sound volume in options" text="Volume"/>
|
|
<div proportion="1" height="fit" layout="horizontal-row" >
|
|
<spacer width="40" height="100%" />
|
|
<gauge id="sfx_volume" proportion="1" min_value="1" max_value="10"/>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<spacer height="20" width="10"/>
|
|
|
|
</box>
|
|
</div>
|
|
|
|
<icon-button id="back" x="0" y="0" height="8%" icon="gui/back.png"/>
|
|
|
|
</stkgui>
|