1
0
forked from 0ad/0ad
0ad/binaries/data/mods/public/gui/aiconfig/aiconfig.xml
2011-09-14 00:43:19 +00:00

43 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<objects>
<script file="gui/aiconfig/aiconfig.js"/>
<!-- Add a translucent black background to fade out the menu page -->
<object type="image" z="0" sprite="BackgroundTranslucent"/>
<object type="image" style="StoneDialog" size="50%-200 50%-100 50%+200 50%+140">
<object style="TitleText" type="text" size="50%-128 -16 50%+128 16">AI Configuration</object>
<object size="50%-128 46 50%+128 66">
<object type="text" style="RightLabelText" size="0 0 100 100%">
AI Player
</object>
<object name="aiSelection" type="dropdown" style="StoneDropDown" size="50%-16 0 50%+144 28">
<action on="SelectionChange">selectAI(this.selected);</action>
</object>
</object>
<object size="15% 50%-48 85% 50%+48">
<object name="aiDescription" type="text" style="LeftLabelText" size="0 0 100% 100%"/>
<!-- TODO: we might want to add things like difficulty controls into here -->
</object>
<object type="button" style="StoneButton" size="50%-144 100%-60 50%-16 100%-32">
OK
<action on="Press">returnAI();</action>
</object>
<object type="button" style="StoneButton" size="50%+16 100%-60 50%+144 100%-32">
Cancel
<action on="Press">Engine.PopGuiPage();</action>
</object>
</object>
</objects>