0ad/binaries/data/mods/public/gui/splashscreen/splashscreen.xml
2013-09-01 23:56:50 +00:00

45 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<objects>
<script file="gui/common/functions_global_object.js"/>
<script file="gui/splashscreen/splashscreen.js"/>
<!-- Add a translucent black background to fade out the menu page -->
<object type="image" z="0" style="TranslucentPanel"/>
<object type="image" style="StoneDialog" size="50%-300 50%-200 50%+300 50%+200">
<object type="text" style="TitleText" size="50%-128 0%-16 50%+128 16">Welcome to 0 A.D. !</object>
<object type="image" sprite="BackgroundTranslucent" size="20 20 100%-20 100%-52">
<object name="openFundraiserPage" type="button" style="fundraiserButton" size="5 5 100% 150">
<action on="Press"><![CDATA[
Engine.OpenURL("http://play0ad.com/fundraiser");
]]></action>
</object>
<object size="0 150 100% 100%">
<object name="mainText" type="text" style="textPanel"/>
</object>
</object>
<object name="btnOK" type="button" style="StoneButton" tooltip_style="snToolTip" size="24 100%-52 188 100%-24">
OK
<action on="Press"><![CDATA[
Engine.SetSplashScreenEnabled(!getGUIObjectByName("displaySplashScreen").checked);
Engine.PopGuiPage();
]]></action>
</object>
<object name="btnFundraiser" type="button" style="StoneButton" tooltip_style="snToolTip" size="196 100%-52 360 100%-24">
Visit Fundraiser
<action on="Press"><![CDATA[
Engine.OpenURL("http://play0ad.com/fundraiser");
]]></action>
</object>
<object size="368 100%-52 100%-32 100%-24">
<object size="0 0 100% 100%">
<object name="displaySplashScreenText" size="0 0 100%-32 100%" type="text" style="RightLabelText">Don't show this again</object>
<object name="displaySplashScreen" checked="false" size="100%-16 50%-8 100% 50%+8" type="checkbox" style="StoneCrossBox"/>
</object>
</object>
</object>
</objects>