1
0
forked from 0ad/0ad
0ad/binaries/data/mods/public/gui/loading/loading.xml

106 lines
2.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
==========================================
- LOADING SCREEN -
==========================================
-->
<objects>
<script file="gui/loading/loading.js"/>
<object name="ld"
type="image"
sprite="bkFillBlack"
>
<!--
==========================================
- LOADING SCREEN - WINDOW
==========================================
-->
<object name="ldWindow"
style="wheatWindowGranite"
type="image"
size="25 35 100%-25 100%-25"
>
<object name="ldTitleBar"
style="wheatWindowTitleBar"
type="button"
/>
<!--
==========================================
- LOADING SCREEN - TEXT
==========================================
-->
<object name="ldText"
type="text"
size="23.571428% 20 100%-25 100%-100"
font="serif-16"
/>
<!--
==========================================
- LOADING SCREEN - CONCEPT ART
==========================================
-->
<object name="ldConcept"
type="image"
size="30 20 33.3008%+30 88.9323%+20"
sprite="black_bkg"
aspectratio="0.5"
/>
<!--
==========================================
- LOADING SCREEN - PROGRESSBAR
==========================================
-->
<object name="ldProgressBarText"
type="text"
size="25 100%-190 100%-25 100%-175"
font="serif-14"
textcolor="0 0 0"
text_align="center"
text_valign="center"
clip="false"
>
<action on="Progress"><![CDATA[
this.caption = g_LoadDescription;
]]></action>
</object>
<object name="ldProgressBar"
style="wheatProgressBarBlue"
type="progressbar"
size="25 100%-160 100%-25 100%-145"
>
<action on="Progress"><![CDATA[
this.caption = g_Progress;
]]></action>
</object>
<!--
==========================================
- LOADING SCREEN - TIP
==========================================
-->
<object name="ldTip"
type="text"
size="25 100%-135 100%-25 100%-25"
textcolor="0 0 0"
font="serif-16"
text_align="left"
text_valign="center"
sprite="wheatIndentBorder"
/>
</object>
</object>
</objects>