1
0
forked from 0ad/0ad
0ad/binaries/data/mods/official/gui/test/3_loading.xml

117 lines
2.6 KiB
XML

<?xml version="1.0" encoding="iso-8859-1" standalone="no" ?>
<!DOCTYPE objects SYSTEM "../gui.dtd">
<!--
==========================================
- LOADING SCREEN -
==========================================
-->
<objects>
<object name="loading_screen"
absolute="true"
hidden="true"
>
<!--
==========================================
- BLACK BACKGROUND AT LOWEST Z LEVEL
==========================================
-->
<object name="backdrop_mask"
absolute="true"
type="image"
sprite="black"
/>
<!--
==========================================
- LOADING SCREEN - WINDOW
==========================================
-->
<object name="loading_screen_window"
style="0ad_window"
type="image"
size="30 35 100%-30 100%-30"
>
<object name="loading_screen_titlebar"
style="0ad_window_titlebar"
type="button"
/>
<!--
==========================================
- LOADING SCREEN - TEXT
==========================================
-->
<object name="loading_screen_text"
type="text"
size="23.571428% 40 100%-32 100%-100"
font="prospero18"
/>
<!--
==========================================
- LOADING SCREEN - CONCEPT ART
==========================================
-->
<object name="loading_screen_background_concept"
type="image"
size="32 32 33.3008%+32 88.9323%+32"
sprite="black_bkg"
/>
<!--
==========================================
- LOADING SCREEN - PROGRESSBAR
==========================================
-->
<object name="loading_screen_progress_bar_text"
type="text"
size="0%+32 100%-205 100%-32 100%-185"
font="tahoma14"
textcolor="0 0 0"
text_align="center"
text_valign="center"
>
<action on="Progress"><![CDATA[
this.caption = g_LoadDescription;
]]></action>
</object>
<object name="loading_screen_progress_bar"
style="blue_bar_outlined"
type="progressbar"
size="0%+32 100%-185 100%-32 100%-160"
>
<action on="Progress"><![CDATA[
this.caption = g_Progress;
]]></action>
</object>
<!--
==========================================
- LOADING SCREEN - TIP
==========================================
-->
<object name="loading_screen_tip"
type="text"
size="32 100%-150 100%-32 100%-32"
textcolor="0 0 0"
font="trebuchet16"
text_align="left"
text_valign="center"
sprite="0ad_indent_lite"
/>
</object>
</object>
</objects>