Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/media/gui/layouts/MainMenu.layout @ 5414

Last change on this file since 5414 was 5414, checked in by bknecht, 15 years ago

Removed layout information to actual .layout file and leaving functions and script stuff in the lua-file. There is still some work to do to properly load layouts and call the correct functions, but it's more cleaned up now, but also more spread of corse.

File size: 2.2 KB
Line 
1<?xml version="1.0" ?>
2<GUILayout>
3    <Window Type="DefaultGUISheet" Name="orxonox/RootSheet">
4        <Window Type="TaharezLook/Button" Name="orxonox/StandaloneButton">
5            <Property Name="UnifiedPosition" Value="{{0.11,0},{0.3,0}}"/>
6            <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>
7            <Property Name="Text" Value="Standalone"/>
8            <Event Name="Clicked" Function="button_standalone_clicked"/>
9        </Window>
10        <Window Type="TaharezLook/Button" Name="orxonox/DedicatedButton">
11            <Property Name="UnifiedPosition" Value="{{0.11,0},{0.376,0}}"/>
12            <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>
13            <Property Name="Text" Value="Dedicated"/>
14            <Event Name="Clicked" Function="button_dedicated_clicked"/>
15        </Window>
16        <Window Type="TaharezLook/Button" Name="orxonox/ServerButton">
17            <Property Name="UnifiedPosition" Value="{{0.11,0},{0.452,0}}"/>
18            <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>
19            <Property Name="Text" Value="Server"/>
20            <Event Name="Clicked" Function="button_server_clicked"/>
21        </Window>
22        <Window Type="TaharezLook/Button" Name="orxonox/ClientButton">
23            <Property Name="UnifiedPosition" Value="{{0.11,0},{0.528,0}}"/>
24            <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>
25            <Property Name="Text" Value="Client"/>
26            <Event Name="Clicked" Function="button_client_clicked"/>
27        </Window>
28        <Window Type="TaharezLook/Button" Name="orxonox/QuitButton">
29            <Property Name="UnifiedPosition" Value="{{0.11,0},{0.528,0}}"/>
30            <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>
31            <Property Name="Text" Value="Quit"/>
32            <Event Name="Clicked" Function="button_quit_clicked"/>
33        </Window>
34        <Window Type="TaharezLook/Button" Name="orxonox/TestButton">
35            <Property Name="UnifiedPosition" Value="{{0.11,0},{0.604,0}}"/>
36            <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>
37            <Property Name="Text" Value="Hide"/>
38            <Event Name="Clicked" Function="toggleGUI"/>
39        </Window>
40    </Window>
41</GUILayout>
Note: See TracBrowser for help on using the repository browser.