87 lines
2.3 KiB
XML
87 lines
2.3 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
Copyright (C) 2003 Tenebrae Team
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
--
|
|
|
|
This package contains some windows that are used by the game engine.
|
|
The id's of these windows are hardcoded into the engine but you can of course change the looks without changing the engine.
|
|
|
|
loading => Displayed during level loading.
|
|
paused => Displayed when the game is paused. (this window can be transparent as the game is drawn under it...)
|
|
|
|
-->
|
|
<package>
|
|
<window
|
|
id="loading"
|
|
title="Loading"
|
|
orient="horizontal">
|
|
<image src="menus/col1" orient="horizontal">
|
|
<box width="30%"/>
|
|
<vbox>
|
|
<vbox height="20%" pack="center">
|
|
<image src="menus/banner" width="268" height="54"/>
|
|
</vbox>
|
|
<!-- begining of the real stuff -->
|
|
<image src="menus/col3" orient="horizontal">
|
|
<box width="5%"/>
|
|
<vbox>
|
|
<box height="40%">
|
|
<label value="Please wait..."/>
|
|
</box>
|
|
<box height="5%"/>
|
|
</vbox>
|
|
<box width="5%"/>
|
|
</image>
|
|
<!-- end of the real stuff -->
|
|
<box height="65%"/>
|
|
</vbox>
|
|
<box width="30%"/>
|
|
</image>
|
|
</window>
|
|
<window
|
|
id="paused"
|
|
title="Loading"
|
|
orient="horizontal">
|
|
<image src="menus/col1" orient="horizontal">
|
|
<box width="30%"/>
|
|
<vbox>
|
|
<vbox height="20%" pack="center">
|
|
<image src="menus/banner" width="268" height="54"/>
|
|
</vbox>
|
|
<!-- begining of the real stuff -->
|
|
<image src="menus/col3" orient="horizontal">
|
|
<box width="5%"/>
|
|
<vbox>
|
|
<box height="40%">
|
|
<label value="Game paused..."/>
|
|
</box>
|
|
<box height="5%"/>
|
|
</vbox>
|
|
<box width="5%"/>
|
|
</image>
|
|
<!-- end of the real stuff -->
|
|
<box height="65%"/>
|
|
</vbox>
|
|
<box width="30%"/>
|
|
</image>
|
|
</window>
|
|
</package>
|
|
|
|
|
|
|