1
0
forked from mirrors/0ad
Files
0ad/binaries/data/mods/public/gui/msgbox/msgbox.xml
T
elexis 9950e06d4c Include entire directories in GUI pages instead of a subset of the files contained, where possible.
This allows mods to add new JS files without introducing a hardly
maintainable copy of the XML file.

Differential Revision: https://code.wildfiregames.com/D619
Proofread By: bb
This was SVN commit r20535.
2017-11-27 16:29:23 +00:00

43 lines
930 B
XML

<?xml version="1.0" encoding="utf-8"?>
<objects>
<script directory="gui/common/"/>
<script directory="gui/msgbox/"/>
<!-- Fade out the background because it's non-interactable -->
<object sprite="ModernFade" type="image" z="0"/>
<object name="mbCancelHotkey" hotkey="cancel" />
<object name="mbMain"
style="ModernDialog"
type="image"
>
<object name="mbTitleBar"
style="ModernLabelText"
type="text"
size="50%-128 -18 50%+128 14"
/>
<object name="mbText"
type="text"
style="ModernLabelText"
size="18 18 100%-18 100%-64"
/>
<!-- The size of the following buttons is set dynamically in msgbox.js -->
<object name="mbButton1"
style="ModernButtonRed"
type="button"
hidden="true"
/>
<object name="mbButton2"
style="ModernButtonRed"
type="button"
hidden="true"
/>
<object name="mbButton3"
style="ModernButtonRed"
type="button"
hidden="true"
/>
</object>
</objects>