2019-07-08 18:00:19 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2009-06-13 15:37:43 -04:00
|
|
|
<!--
|
2009-09-05 11:07:50 -04:00
|
|
|
|
2010-05-15 14:10:55 -04:00
|
|
|
Peach skin by Dakal and Marianne Gagnon, released under creative-commons BY-SA 3.0+
|
2009-09-05 11:07:50 -04:00
|
|
|
Except background.jpg, by elisee
|
2013-06-28 18:24:37 -04:00
|
|
|
Except stars, by s@f
|
2009-09-05 11:07:50 -04:00
|
|
|
|
2009-06-13 15:37:43 -04:00
|
|
|
To make your own skin, I suggest simply duplicating this file and modifying it as needed.
|
|
|
|
There are two types of images : some will be simply stretched as a whole, others will
|
|
|
|
have non-stretchable borders (you cannot choose which one you must use, it's hardcoded
|
|
|
|
for each element type; though, as you will see below, for all "advanced stretching" images
|
|
|
|
you can easily fake "simple stretch")
|
|
|
|
|
|
|
|
All elements will have at least 2 properties :
|
|
|
|
type="X" sets what you're skinning with this entry
|
|
|
|
image="skinDirectory/imageName.png" sets which image is used for this element
|
|
|
|
|
|
|
|
Most elements also support states :
|
|
|
|
state="neutral"
|
|
|
|
state="focused"
|
|
|
|
state="down"
|
|
|
|
You can thus give different looks for different states. Not all widgets support all states,
|
|
|
|
see entries and comments below to know what's supported.
|
|
|
|
Note that checkboxes are an exception and have the following styles :
|
|
|
|
"neutral+unchecked"
|
2009-06-13 20:10:44 -04:00
|
|
|
"neutral+checked"
|
2009-06-13 15:37:43 -04:00
|
|
|
"focused+unchecked"
|
|
|
|
"focused+checked"
|
2014-05-27 10:07:53 -04:00
|
|
|
"deactivated+unchecked"
|
|
|
|
"deactivated+checked"
|
2009-06-13 15:37:43 -04:00
|
|
|
|
|
|
|
"Advanced stretching" images are split this way :
|
|
|
|
|
|
|
|
+----+--------------------+----+
|
|
|
|
| | | |
|
|
|
|
+----+--------------------+----+
|
|
|
|
| | | |
|
|
|
|
| | | |
|
|
|
|
| | | |
|
|
|
|
+----+--------------------+----+
|
|
|
|
| | | |
|
|
|
|
+----+--------------------+----+
|
|
|
|
|
|
|
|
The center border will be stretched in all directions. The 4 corners will not stretch at all.
|
|
|
|
Horizontal borders will stretch horizontally, verticallt borders will stretch vertically.
|
|
|
|
Use properties left_border="X" right_border="X" top_border="X" bottom_border="X" to specify
|
|
|
|
the size of each border in pixels (setting all borders to '0' makes the whole image scaled).
|
|
|
|
|
|
|
|
In some cases, you may not want vertical stretching to occur (like if the left and right sides
|
|
|
|
of the image must not be stretched vertically, e.g. for the spinner). In this case, pass
|
|
|
|
parameter preserve_h_aspect_ratios="true" to make the left and right areas stretch by keeping
|
|
|
|
their aspect ratio.
|
|
|
|
|
|
|
|
Some components may fill the full inner area with stuff; others will only take a smaller
|
|
|
|
area at the center. To adjust for this, there are properties "hborder_out_portion" and "vborder_out_portion"
|
|
|
|
that take a float from 0 to 1, representing the percentage of each border that goes out of the widget's
|
|
|
|
area (this might include stuff like shadows, etc.). The 'h' one is for horizontal borders,
|
|
|
|
the 'v' one is for vertical borders.
|
|
|
|
|
|
|
|
Finnally : the image is split, as shown above, into 9 areas. In osme cases, you may not want
|
|
|
|
all areas to be rendered. Then you can pass parameter areas="body+left+right+top+bottom"
|
|
|
|
and explicitely specify which parts you want to see. The 4 corner areas are only visible
|
|
|
|
when the border that intersect at this corner are enabled.
|
|
|
|
|
2019-09-21 00:16:42 -04:00
|
|
|
When there is a common="y" with image tag, the image will be loaded only from data/skins/common in stk-code.
|
2009-06-13 15:37:43 -04:00
|
|
|
-->
|
|
|
|
|
2010-05-15 14:10:55 -04:00
|
|
|
<skin name="Peach" author="Dakal & Marianne Gagnon (Auria)">
|
2009-06-12 21:47:06 -04:00
|
|
|
|
2019-09-21 00:16:42 -04:00
|
|
|
<!--
|
|
|
|
Here you can configure advanced theming rules for this skin
|
|
|
|
Currently STK supports:
|
|
|
|
1. Icon theme
|
|
|
|
2. Font
|
|
|
|
|
|
|
|
To allow icon theme, use the tag icon_theme="y" and then place the replacement png into
|
|
|
|
(local skin folder)/data/gui/icons, STK will prefer those first, if not found it will fallback to bundled icon.
|
|
|
|
|
|
|
|
For TTF specify the list like the following, for normal and digit ttf it will be added in the beginning of font
|
|
|
|
list in STK, so those TTF will be used first, and any missing character will be rendered from the bundled font
|
|
|
|
list. For color emoji ttf it will be replace the bundled color emoji directly. You are not required to specify
|
|
|
|
all types of ttf.
|
|
|
|
<advanced icon_theme="y"
|
|
|
|
normal_ttf="xxx.ttf yyy.ttf"
|
|
|
|
digit_ttf="zzz.ttf"
|
|
|
|
color_emoji_ttf="www.ttf"/>
|
|
|
|
-->
|
|
|
|
|
2009-06-12 21:47:06 -04:00
|
|
|
<!-- Stateless -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="background" common="y" image="background.jpg" />
|
2018-06-17 21:40:01 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="bottom-bar" common="y" image="bottom_bar.png" />
|
2009-06-12 21:47:06 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="achievement-message" image="achievement.png"
|
2014-06-22 23:38:56 -04:00
|
|
|
left_border="128" right_border="13" top_border="13" bottom_border="13"
|
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0.3" vborder_out_portion="0"/>
|
2014-06-22 19:13:44 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="friend-message" image="friend.png"
|
2014-06-23 07:11:42 -04:00
|
|
|
left_border="128" right_border="13" top_border="13" bottom_border="13"
|
2014-06-22 19:13:44 -04:00
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0" vborder_out_portion="0"/>
|
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="error-message" image="error.png"
|
2015-03-02 02:51:50 -05:00
|
|
|
left_border="128" right_border="13" top_border="13" bottom_border="13"
|
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0" vborder_out_portion="0"/>
|
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="generic-message" image="generic.png"
|
2016-02-11 00:42:25 -05:00
|
|
|
left_border="128" right_border="13" top_border="13" bottom_border="13"
|
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0" vborder_out_portion="0"/>
|
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="button" state="neutral" image="glassbutton.png"
|
2014-05-27 10:07:53 -04:00
|
|
|
left_border="13" right_border="13" top_border="13" bottom_border="13"
|
2019-10-29 08:39:34 -04:00
|
|
|
hborder_out_portion="0" vborder_out_portion="0"/>
|
2014-05-27 10:07:53 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="button" state="focused" image="glassbutton_focused.png"
|
2013-08-12 20:17:31 -04:00
|
|
|
left_border="13" right_border="13" top_border="13" bottom_border="13"
|
2019-10-29 08:39:34 -04:00
|
|
|
hborder_out_portion="0" vborder_out_portion="0"/>
|
2009-06-12 21:47:06 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="button" state="deactivated" common="y" image="glassbutton_deactivated.png"
|
2013-08-12 20:17:31 -04:00
|
|
|
left_border="13" right_border="13" top_border="13" bottom_border="13"
|
2019-10-29 08:39:34 -04:00
|
|
|
hborder_out_portion="0" vborder_out_portion="0"/>
|
2009-06-12 21:47:06 -04:00
|
|
|
|
|
|
|
<!-- TODO : buttons could support 'pressed' state -->
|
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="textbubble" state="neutral" image="textbubble.png"
|
2011-05-21 22:01:57 -04:00
|
|
|
left_border="13" right_border="13" top_border="13" bottom_border="13"
|
|
|
|
hborder_out_portion="0.7" vborder_out_portion="0.3" />
|
2010-09-04 17:51:01 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="textbubble" state="focused" image="textbubble2.png"
|
2011-05-21 22:01:57 -04:00
|
|
|
left_border="13" right_border="13" top_border="13" bottom_border="13"
|
|
|
|
hborder_out_portion="0.7" vborder_out_portion="0.3" />
|
2010-09-04 16:24:42 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="progress" state="fill" image="glasssgauge_fill.png"
|
2019-10-29 08:39:34 -04:00
|
|
|
left_border="10" right_border="10" top_border="10" bottom_border="10" />
|
2009-06-12 21:47:06 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="progress" state="neutral" common="y" image="progress_bg.png"
|
2019-10-29 08:39:34 -04:00
|
|
|
left_border="31" right_border="31" top_border="15" bottom_border="15" />
|
2010-07-06 19:56:58 -04:00
|
|
|
|
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="tab" state="neutral" image="glasstab.png"
|
2020-01-13 00:02:50 -05:00
|
|
|
left_border="11" right_border="11" top_border="6" bottom_border="10"
|
|
|
|
preserve_h_aspect_ratios="false" hborder_out_portion="0.0" vborder_out_portion="0.0"
|
|
|
|
h_inner_padding="0" v_inner_padding="0" h_margin="0" v_margin="0" />
|
2009-06-12 21:47:06 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="tab" state="focused" image="glasstab_focus.png"
|
2020-01-13 00:02:50 -05:00
|
|
|
left_border="11" right_border="11" top_border="6" bottom_border="10"
|
|
|
|
preserve_h_aspect_ratios="false" hborder_out_portion="0.0" vborder_out_portion="0.0"
|
|
|
|
h_inner_padding="0" v_inner_padding="0" h_margin="0" v_margin="0" />
|
2009-06-12 21:47:06 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="tab" state="down" image="glasstab_down.png"
|
2020-01-13 00:02:50 -05:00
|
|
|
left_border="11" right_border="11" top_border="6" bottom_border="10"
|
|
|
|
preserve_h_aspect_ratios="false" hborder_out_portion="0.0" vborder_out_portion="0.0"
|
|
|
|
h_inner_padding="0" v_inner_padding="0" h_margin="0" v_margin="0" />
|
2009-06-12 21:47:06 -04:00
|
|
|
|
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="verticalTab" state="neutral" image="glasstab_vert.png"
|
2020-01-13 00:02:50 -05:00
|
|
|
left_border="10" right_border="10" top_border="10" bottom_border="10"
|
|
|
|
preserve_h_aspect_ratios="false" hborder_out_portion="0.0" vborder_out_portion="0.0"
|
|
|
|
h_inner_padding="0" v_inner_padding="0" h_margin="0" v_margin="0" />
|
2018-06-17 21:40:01 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="verticalTab" state="focused" image="glasstab_vert_focus.png"
|
2020-01-13 00:02:50 -05:00
|
|
|
left_border="10" right_border="10" top_border="10" bottom_border="10"
|
|
|
|
preserve_h_aspect_ratios="false" hborder_out_portion="0.0" vborder_out_portion="0.0"
|
|
|
|
h_inner_padding="0" v_inner_padding="0" h_margin="0" v_margin="0" />
|
2018-06-17 21:40:01 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="verticalTab" state="down" image="glasstab_vert_down.png"
|
2020-01-13 00:02:50 -05:00
|
|
|
left_border="10" right_border="10" top_border="10" bottom_border="10"
|
|
|
|
preserve_h_aspect_ratios="false" hborder_out_portion="0.0" vborder_out_portion="0.0"
|
|
|
|
h_inner_padding="0" v_inner_padding="0" h_margin="0" v_margin="0" />
|
2018-06-17 21:40:01 -04:00
|
|
|
|
2009-06-12 21:47:06 -04:00
|
|
|
<!-- Stateless -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="squareFocusHaloBW" common="y" image="glass_square_focused_bw.png"
|
2018-02-05 20:01:32 -05:00
|
|
|
left_border="6" right_border ="6" top_border="6" bottom_border="6"
|
|
|
|
hborder_out_portion="1.0" />
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="squareFocusHalo1" common="y" image="glass_square_focused_red.png"
|
2009-06-12 21:47:06 -04:00
|
|
|
left_border="6" right_border ="6" top_border="6" bottom_border="6"
|
|
|
|
hborder_out_portion="1.0" />
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="squareFocusHalo2" common="y" image="glass_square_focused_cyan.png"
|
2009-08-27 14:41:20 -04:00
|
|
|
left_border="6" right_border ="6" top_border="6" bottom_border="6"
|
|
|
|
hborder_out_portion="1.0" />
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="squareFocusHalo3" common="y" image="glass_square_focused_green.png"
|
2009-08-27 14:41:20 -04:00
|
|
|
left_border="6" right_border ="6" top_border="6" bottom_border="6"
|
|
|
|
hborder_out_portion="1.0" />
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="squareFocusHalo4" common="y" image="glass_square_focused_yellow.png"
|
2009-08-27 14:41:20 -04:00
|
|
|
left_border="6" right_border ="6" top_border="6" bottom_border="6"
|
|
|
|
hborder_out_portion="1.0" />
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="squareFocusHalo5" common="y" image="glass_square_focused_pink.png"
|
2018-10-11 21:12:44 -04:00
|
|
|
left_border="6" right_border ="6" top_border="6" bottom_border="6"
|
|
|
|
hborder_out_portion="1.0" />
|
2009-08-27 14:41:20 -04:00
|
|
|
|
2009-12-19 13:49:06 -05:00
|
|
|
<!-- Stateless. No splitting into 9 areas is done; the image is just resized. -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="selectionHalo" image="bubble.png" />
|
|
|
|
<element type="focusHalo" image="glass_iconhighlight_focus.png" />
|
2009-06-12 21:47:06 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="spinner" state="neutral" common="y" image="glassspinner.png"
|
2009-06-12 21:47:06 -04:00
|
|
|
left_border="110" right_border="110" top_border="0" bottom_border="36"
|
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0.0" />
|
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="spinner" state="focused" image="glassspinner_focus.png"
|
2010-05-15 14:10:55 -04:00
|
|
|
left_border="110" right_border="110" top_border="0" bottom_border="36"
|
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0.0" />
|
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="spinner" state="deactivated" common="y" image="glassspinner_deactivated.png"
|
2014-05-27 10:07:53 -04:00
|
|
|
left_border="110" right_border="110" top_border="0" bottom_border="36"
|
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0.0" />
|
|
|
|
|
2018-06-17 21:40:01 -04:00
|
|
|
<!-- player name spinner color in multiplayer-->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="spinner1" state="neutral" common="y" image="glass_square_red.png"
|
2014-02-28 06:21:27 -05:00
|
|
|
left_border="110" right_border="110" top_border="0" bottom_border="36"
|
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0.0" />
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="spinner2" state="neutral" common="y" image="glass_square_cyan.png"
|
2014-02-28 06:21:27 -05:00
|
|
|
left_border="110" right_border="110" top_border="0" bottom_border="36"
|
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0.0" />
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="spinner3" state="neutral" common="y" image="glass_square_green.png"
|
2014-02-28 06:21:27 -05:00
|
|
|
left_border="110" right_border="110" top_border="0" bottom_border="36"
|
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0.0" />
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="spinner4" state="neutral" common="y" image="glass_square_yellow.png"
|
2014-02-28 06:21:27 -05:00
|
|
|
left_border="110" right_border="110" top_border="0" bottom_border="36"
|
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0.0" />
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="spinner5" state="neutral" common="y" image="glass_square_pink.png"
|
2018-10-11 22:30:15 -04:00
|
|
|
left_border="110" right_border="110" top_border="0" bottom_border="36"
|
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0.0" />
|
2014-02-28 06:21:27 -05:00
|
|
|
|
2009-06-12 21:47:06 -04:00
|
|
|
<!-- This one is a bit special. Only area(s) LEFT and/or RIGHT will be rendered. They will be overlaid
|
|
|
|
on top of the spinner's background -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="spinner" state="down" image="glassspinner_down.png"
|
2010-05-15 14:10:55 -04:00
|
|
|
left_border="110" right_border="110" top_border="0" bottom_border="36"
|
2009-06-12 21:47:06 -04:00
|
|
|
preserve_h_aspect_ratios="true" hborder_out_portion="0.0" />
|
|
|
|
|
|
|
|
<!-- For checkboxes, no splitting into 9 areas is done; the image is just stretched -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="checkbox" state="neutral+unchecked" image="glasscheckbox.png"/>
|
|
|
|
<element type="checkbox" state="neutral+checked" image="glasscheckbox_checked.png"/>
|
|
|
|
<element type="checkbox" state="focused+unchecked" image="glasscheckbox_focus.png"/>
|
|
|
|
<element type="checkbox" state="focused+checked" image="glasscheckbox_checked_focus.png"/>
|
|
|
|
<element type="checkbox" state="deactivated+unchecked" common="y" image="glasscheckbox_deactivated.png"/>
|
|
|
|
<element type="checkbox" state="deactivated+checked" common="y" image="glasscheckbox_checked_deactivated.png"/>
|
2009-06-12 21:47:06 -04:00
|
|
|
|
2009-06-12 22:02:51 -04:00
|
|
|
<!-- are always in neutral state for now. No splitting into 9 areas is done; the image is just stretched.
|
|
|
|
Note: the body of a guage is the same as for for spinners. -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="gaugefill" image="glasssgauge_fill.png" />
|
2009-06-12 22:02:51 -04:00
|
|
|
|
2009-06-12 21:47:06 -04:00
|
|
|
<!-- Lists are always in neutral state for now -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="list" common="y" image="glass_section.png"
|
2011-05-16 20:52:25 -04:00
|
|
|
left_border="15" right_border="15" top_border="7" bottom_border="7"
|
2013-07-05 21:05:08 -04:00
|
|
|
hborder_out_portion="0.0" vborder_out_portion="0.0" />
|
2009-06-12 21:47:06 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="listitem" state="focused" image="select.png"
|
2009-06-12 21:47:06 -04:00
|
|
|
left_border="0" right_border="0" top_border="0" bottom_border="0"
|
2009-09-05 11:07:50 -04:00
|
|
|
hborder_out_portion="0.0" vborder_out_portion="0.0" />
|
2009-06-12 21:47:06 -04:00
|
|
|
|
2010-03-27 15:55:53 -04:00
|
|
|
<!-- Scrollbars. Background and thumb have no state (always neutral state).
|
|
|
|
The buttons are the top and bottom arrows. Image must be top arrow, will
|
|
|
|
be mirrorred for bottom. Buttons can be in neutral or down state.
|
2019-07-08 22:11:37 -04:00
|
|
|
Advanced stretching is only used for the background and thumb. -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="scrollbar_background" common="y" image="scrollbar_bg.png"
|
2019-07-08 22:11:37 -04:00
|
|
|
left_border="7" right_border="7" top_border="7" bottom_border="7"
|
|
|
|
hborder_out_portion="0.0" vborder_out_portion="0.0" />
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="scrollbar_thumb" image="scrollbar_thumb.png"
|
2019-07-08 22:11:37 -04:00
|
|
|
left_border="7" right_border="7" top_border="7" bottom_border="7"
|
|
|
|
hborder_out_portion="-1.0" vborder_out_portion="-1.0" />
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="scrollbar_button" common="y" image="scrollbar_btn.png" />
|
|
|
|
<element type="scrollbar_button" state="down" image="scrollbar_btn_down.png" />
|
2010-03-27 15:55:53 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="left_arrow" state="neutral" common="y" image="left_arrow.png" />
|
|
|
|
<element type="right_arrow" state="neutral" common="y" image="right_arrow.png" />
|
|
|
|
<element type="left_arrow" state="focus" image="left_arrow_focus.png" />
|
|
|
|
<element type="right_arrow" state="focus" image="right_arrow_focus.png" />
|
2011-05-15 19:08:15 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="list_header" state="neutral" common="y" image="table_header.png" />
|
|
|
|
<element type="list_sort_up" state="neutral" common="y" image="list_sort_up.png" />
|
|
|
|
<element type="list_sort_down" state="neutral" common="y" image="list_sort_down.png" />
|
|
|
|
<element type="list_header" state="down" image="table_header_down.png" />
|
2011-05-16 20:39:55 -04:00
|
|
|
|
2009-06-12 21:47:06 -04:00
|
|
|
<!-- Stateless -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="section" common="y" image="glass_section.png"
|
2009-06-12 21:47:06 -04:00
|
|
|
left_border="15" right_border="15" top_border="15" bottom_border="15"
|
2013-07-02 22:00:08 -04:00
|
|
|
hborder_out_portion="0.0" vborder_out_portion="0.0" />
|
2010-09-13 19:22:58 -04:00
|
|
|
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="section" state="selected" image="glassbutton_focused.png"
|
2018-12-04 16:36:59 -05:00
|
|
|
left_border="15" right_border="15" top_border="15" bottom_border="15"
|
|
|
|
hborder_out_portion="0.0" vborder_out_portion="0.0" />
|
|
|
|
|
2010-09-13 19:22:58 -04:00
|
|
|
<!-- Stateless -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="rounded_section" common="y" image="glass_rsection.png"
|
2010-09-13 19:22:58 -04:00
|
|
|
left_border="15" right_border="15" top_border="15" bottom_border="15"
|
2013-07-02 22:00:08 -04:00
|
|
|
hborder_out_portion="0.0" vborder_out_portion="0.0" />
|
2010-09-13 19:22:58 -04:00
|
|
|
|
2009-06-12 21:47:06 -04:00
|
|
|
<!-- Stateless -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="window" common="y" image="dialog.png"
|
2019-10-29 08:39:34 -04:00
|
|
|
left_border="7" right_border="7" top_border="7" bottom_border="7"
|
2009-09-05 11:07:50 -04:00
|
|
|
hborder_out_portion="1.0" vborder_out_portion="0.2" />
|
2011-03-21 11:38:30 -04:00
|
|
|
|
|
|
|
<!-- Stateless -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="tooltip" common="y" image="tooltip.png"
|
2011-03-21 11:38:30 -04:00
|
|
|
left_border="10" right_border="10" top_border="10" bottom_border="10"
|
|
|
|
hborder_out_portion="1.0" vborder_out_portion="1.0" />
|
|
|
|
|
2009-06-12 21:47:06 -04:00
|
|
|
<!-- Colors -->
|
|
|
|
<color type="text" state="neutral" r="0" g="0" b="0" />
|
2010-09-04 20:31:19 -04:00
|
|
|
<color type="brighttext" state="neutral" r="255" g="145" b="0" />
|
2009-06-13 14:17:44 -04:00
|
|
|
|
|
|
|
<!-- For highlighted items, e.g. in list -->
|
|
|
|
<color type="text" state="focused" r="255" g="255" b="255" />
|
2009-06-12 21:47:06 -04:00
|
|
|
|
2018-09-16 19:46:22 -04:00
|
|
|
<!-- Color used in the credits -->
|
|
|
|
<color type="credits_text" state="neutral" r="65" g="15" b="0" />
|
|
|
|
|
2018-10-12 14:44:38 -04:00
|
|
|
<!-- Color used for emphasized items in e.g. lists -->
|
|
|
|
<color type="emphasis_text" state="neutral" r="0" g="0" b="180" />
|
|
|
|
<color type="emphasis_text" state="focused" r="0" g="0" b="160" />
|
|
|
|
|
2020-06-14 23:00:58 -04:00
|
|
|
<!-- Color used for red/blue items in list (e.g. player team color in networking) -->
|
2018-10-12 14:44:38 -04:00
|
|
|
<color type="list_blue" state="neutral" r="0" g="0" b="255" />
|
|
|
|
<color type="list_blue" state="focused" r="0" g="0" b="255" />
|
2020-06-14 23:00:58 -04:00
|
|
|
<color type="list_red" state="neutral" r="255" g="0" b="0" />
|
|
|
|
<color type="list_red" state="focused" r="255" g="0" b="0" />
|
2018-10-12 14:44:38 -04:00
|
|
|
|
2009-09-05 11:07:50 -04:00
|
|
|
<!-- Color used to fade out background when a dialog is shown -->
|
2009-09-05 11:20:20 -04:00
|
|
|
<color type="dialog_background" state="neutral" a="120" r="0" g="0" b="0" />
|
2009-09-05 11:07:50 -04:00
|
|
|
|
2019-12-17 20:23:06 -05:00
|
|
|
<!-- Color used for tips in the loading screen -->
|
|
|
|
<color type="tips_background" state="neutral" a="120" r="0" g="0" b="0" />
|
|
|
|
|
2009-09-05 11:07:50 -04:00
|
|
|
<!-- Text field color -->
|
2013-06-29 19:46:51 -04:00
|
|
|
<color type="text_field" state="background" a="255" r="200" g="200" b="200" />
|
|
|
|
<color type="text_field" state="background_focused" a="255" r="236" g="226" b="201" />
|
2014-06-04 06:49:41 -04:00
|
|
|
<color type="text_field" state="background_deactivated" a="255" r="200" g="200" b="200" />
|
2019-06-09 12:43:31 -04:00
|
|
|
<color type="text_field" state="background_marked" a="128" r="90" g="55" b="25" />
|
2013-06-29 19:46:51 -04:00
|
|
|
<color type="text_field" state="neutral" a="255" r="138" g="138" b="138" />
|
|
|
|
<color type="text_field" state="focused" a="255" r="243" g="164" b="80" />
|
2014-06-04 06:49:41 -04:00
|
|
|
<color type="text_field" state="deactivated" a="255" r="138" g="138" b="138" />
|
2009-06-12 21:47:06 -04:00
|
|
|
|
2013-06-23 20:34:38 -04:00
|
|
|
<!-- Rating star image -->
|
2019-09-20 23:33:11 -04:00
|
|
|
<element type="rating" state="neutral" common="y" image="rating_star.png" />
|
2013-06-23 20:34:38 -04:00
|
|
|
|
2015-11-13 12:06:28 -05:00
|
|
|
<!-- Font color -->
|
2015-11-13 21:38:14 -05:00
|
|
|
<color type="font" state="top" a="255" r="255" g="128" b="0" />
|
|
|
|
<color type="font" state="bottom" a="255" r="255" g="220" b="15" />
|
|
|
|
<color type="font" state="normal" a="255" r="210" g="100" b="50" />
|
2015-11-13 12:06:28 -05:00
|
|
|
|
2010-05-15 14:10:55 -04:00
|
|
|
</skin>
|