Skip to content

Commit 9d1dac9

Browse files
authored
Update options_ui.stkgui
Add checkbox for speedmeter setting
1 parent d586fb6 commit 9d1dac9

File tree

1 file changed

+105
-99
lines changed

1 file changed

+105
-99
lines changed
Lines changed: 105 additions & 99 deletions
Original file line numberDiff line numberDiff line change
@@ -1,99 +1,105 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<stkgui>
3-
<icon-button id="back" x="1%" y="0" height="9%" icon="gui/icons/back.png"/>
4-
<div x="1%" y="1%" width="98%" height="98%" layout="vertical-row" >
5-
<header width="80%" height="8%" align="center" text="SuperTuxKart Options" text_align="center"/>
6-
<spacer width="100%" height="1%"/>
7-
8-
<div width="100%" height="91%" layout="horizontal-row" >
9-
10-
<vertical-tabs id="options_choice" height="100%" width="20%">
11-
<icon-button id="tab_general" width="128" height="128" icon="gui/icons/options_general.png"
12-
I18N="Section in the settings menu" text="General"/>
13-
<icon-button id="tab_display" width="128" height="128" icon="gui/icons/options_display.png"
14-
I18N="Section in the settings menu" text="Display"/>
15-
<icon-button id="tab_video" width="128" height="128" icon="gui/icons/options_video.png"
16-
I18N="Section in the settings menu" text="Graphics"/>
17-
<icon-button id="tab_audio" width="128" height="128" icon="gui/icons/options_audio.png"
18-
I18N="Section in the settings menu" text="Audio"/>
19-
<icon-button id="tab_ui" width="128" height="128" icon="gui/icons/options_ui.png"
20-
I18N="Section in the settings menu" text="Interface"/>
21-
<icon-button id="tab_players" width="128" height="128" icon="gui/icons/options_players.png"
22-
I18N="Section in the settings menu" text="Players"/>
23-
<icon-button id="tab_controls" width="128" height="128" icon="gui/icons/options_input.png"
24-
I18N="Section in the settings menu" text="Controls"/>
25-
<icon-button id="tab_language" width="128" height="128" icon="gui/icons/options_language.png"
26-
I18N="Section in the settings menu" text="Language"/>
27-
</vertical-tabs>
28-
29-
<spacer width="2%" height="100%"/>
30-
31-
<box width="78%" height="100%" layout="vertical-row">
32-
33-
<spacer width="5" height="1%"/>
34-
35-
<!-- ************ SKIN CHOICE ************ -->
36-
<div width="100%" height="fit" layout="horizontal-row">
37-
<spinner id="base_skinchoice" width="10f" align="center" />
38-
<label height="100%" x="0" y="0" I18N="In the ui settings" text="Skin"/>
39-
</div>
40-
41-
<spacer width="5" height="2%"/>
42-
43-
<div width="100%" height="fit" layout="horizontal-row">
44-
<spinner id="variant_skinchoice" width="10f" align="center" />
45-
<label height="100%" x="0" y="0" I18N="In the ui settings" text="Skin variant"/>
46-
</div>
47-
48-
<spacer width="5" height="2%"/>
49-
50-
<!-- ************ MISC. CHOICE ************ -->
51-
<div width="100%" height="fit" layout="horizontal-row">
52-
<spinner id="minimap" width="10f" align="center" />
53-
<label height="100%" x="0" y="0" I18N="In the ui settings" text="Minimap"/>
54-
</div>
55-
56-
<spacer width="5" height="2%"/>
57-
58-
<div width="100%" height="fit" layout="horizontal-row">
59-
<gauge id="font_size" width="10f" align="center" />
60-
<label height="100%" x="0" y="0" I18N="In the ui settings" text="Font size"/>
61-
</div>
62-
63-
<spacer width="5" height="2%"/>
64-
65-
<div layout="horizontal-row" width="100%" height="fit">
66-
<checkbox id="showfps"/>
67-
<spacer width="1%" height="100%" />
68-
<label height="100%" I18N="In the ui settings" text="Display FPS" word_wrap="true"/>
69-
</div>
70-
71-
<spacer width="5" height="2%"/>
72-
73-
<div layout="horizontal-row" width="100%" height="fit">
74-
<checkbox id="karts_powerup_gui"/>
75-
<spacer width="1%" height="100%" />
76-
<label height="100%" I18N="In the ui settings" text="Show other karts' held powerups" word_wrap="true"/>
77-
</div>
78-
79-
<spacer width="5" height="2%"/>
80-
81-
<div layout="horizontal-row" width="100%" height="fit">
82-
<checkbox id="story-mode-timer"/>
83-
<spacer width="1%" height="100%" />
84-
<label height="100%" I18N="In the ui settings" text="Enable the story mode timer" word_wrap="true"/>
85-
</div>
86-
87-
<spacer width="5" height="2%"/>
88-
89-
<div layout="horizontal-row" width="100%" height="fit">
90-
<checkbox id="speedrun-timer"/>
91-
<spacer width="1%" height="100%" />
92-
<label id="speedrun-timer-text" height="100%" I18N="In the ui settings" text="Enable the speedrun timer" word_wrap="true"/>
93-
</div>
94-
95-
<spacer width="5" height="2%"/>
96-
</box>
97-
</div>
98-
</div>
99-
</stkgui>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<stkgui>
3+
<icon-button id="back" x="1%" y="0" height="9%" icon="gui/icons/back.png"/>
4+
<div x="1%" y="1%" width="98%" height="98%" layout="vertical-row" >
5+
<header width="80%" height="8%" align="center" text="SuperTuxKart Options" text_align="center"/>
6+
<spacer width="100%" height="1%"/>
7+
8+
<div width="100%" height="91%" layout="horizontal-row" >
9+
10+
<vertical-tabs id="options_choice" height="100%" width="20%">
11+
<icon-button id="tab_general" width="128" height="128" icon="gui/icons/options_general.png"
12+
I18N="Section in the settings menu" text="General"/>
13+
<icon-button id="tab_display" width="128" height="128" icon="gui/icons/options_display.png"
14+
I18N="Section in the settings menu" text="Display"/>
15+
<icon-button id="tab_video" width="128" height="128" icon="gui/icons/options_video.png"
16+
I18N="Section in the settings menu" text="Graphics"/>
17+
<icon-button id="tab_audio" width="128" height="128" icon="gui/icons/options_audio.png"
18+
I18N="Section in the settings menu" text="Audio"/>
19+
<icon-button id="tab_ui" width="128" height="128" icon="gui/icons/options_ui.png"
20+
I18N="Section in the settings menu" text="Interface"/>
21+
<icon-button id="tab_players" width="128" height="128" icon="gui/icons/options_players.png"
22+
I18N="Section in the settings menu" text="Players"/>
23+
<icon-button id="tab_controls" width="128" height="128" icon="gui/icons/options_input.png"
24+
I18N="Section in the settings menu" text="Controls"/>
25+
<icon-button id="tab_language" width="128" height="128" icon="gui/icons/options_language.png"
26+
I18N="Section in the settings menu" text="Language"/>
27+
</vertical-tabs>
28+
29+
<spacer width="2%" height="100%"/>
30+
31+
<box width="78%" height="100%" layout="vertical-row">
32+
33+
<spacer width="5" height="1%"/>
34+
35+
<!-- ************ SKIN CHOICE ************ -->
36+
<div width="100%" height="fit" layout="horizontal-row">
37+
<spinner id="base_skinchoice" width="10f" align="center" />
38+
<label height="100%" x="0" y="0" I18N="In the ui settings" text="Skin"/>
39+
</div>
40+
41+
<spacer width="5" height="2%"/>
42+
43+
<div width="100%" height="fit" layout="horizontal-row">
44+
<spinner id="variant_skinchoice" width="10f" align="center" />
45+
<label height="100%" x="0" y="0" I18N="In the ui settings" text="Skin variant"/>
46+
</div>
47+
48+
<spacer width="5" height="2%"/>
49+
50+
<!-- ************ MISC. CHOICE ************ -->
51+
<div width="100%" height="fit" layout="horizontal-row">
52+
<spinner id="minimap" width="10f" align="center" />
53+
<label height="100%" x="0" y="0" I18N="In the ui settings" text="Minimap"/>
54+
</div>
55+
56+
<spacer width="5" height="2%"/>
57+
58+
<div width="100%" height="fit" layout="horizontal-row">
59+
<gauge id="font_size" width="10f" align="center" />
60+
<label height="100%" x="0" y="0" I18N="In the ui settings" text="Font size"/>
61+
</div>
62+
63+
<spacer width="5" height="2%"/>
64+
65+
<div layout="horizontal-row" width="100%" height="fit">
66+
<checkbox id="showfps"/>
67+
<spacer width="1%" height="100%" />
68+
<label height="100%" I18N="In the ui settings" text="Display FPS" word_wrap="true"/>
69+
</div>
70+
71+
<spacer width="5" height="2%"/>
72+
73+
<div layout="horizontal-row" width="100%" height="fit">
74+
<checkbox id="karts_powerup_gui"/>
75+
<spacer width="1%" height="100%" />
76+
<label height="100%" I18N="In the ui settings" text="Show other karts' held powerups" word_wrap="true"/>
77+
</div>
78+
79+
<spacer width="5" height="2%"/>
80+
81+
<div layout="horizontal-row" width="100%" height="fit">
82+
<checkbox id="story-mode-timer"/>
83+
<spacer width="1%" height="100%" />
84+
<label height="100%" I18N="In the ui settings" text="Enable the story mode timer" word_wrap="true"/>
85+
</div>
86+
87+
<spacer width="5" height="2%"/>
88+
89+
<div layout="horizontal-row" width="100%" height="fit">
90+
<checkbox id="speedrun-timer"/>
91+
<spacer width="1%" height="100%" />
92+
<label id="speedrun-timer-text" height="100%" I18N="In the ui settings" text="Enable the speedrun timer" word_wrap="true"/>
93+
</div>
94+
95+
<spacer width="5" height="2%"/>
96+
97+
<div layout="horizontal-row" width="100%" height="fit">
98+
<checkbox id="speedmeter"/>
99+
<spacer width="1%" height="100%" />
100+
<label id="speedmeter-text" height="100%" I18N="In the ui settings" text="Enable the speedmeter" word_wrap="true"/>
101+
</div>
102+
</box>
103+
</div>
104+
</div>
105+
</stkgui>

0 commit comments

Comments
 (0)