Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/data/gui/layouts/QuestGUI.layout @ 5746

Last change on this file since 5746 was 5746, checked in by dafrick, 15 years ago

Forgot to add files…

File size: 2.1 KB
Line 
1<?xml version="1.0" ?>
2<GUILayout>
3    <Window Type="TaharezLook/StaticImage" Name="orxonox/QuestGUI/Background">
4    <Property Name="UnifiedSize" Value="{{1.0,0},{1.0,0}}"/>
5    <Property Name="Image" Value="set:MainMenuBackground image:Background"/>
6    <Property Name="FrameEnabled" Value="set:true"/>
7    <Property Name="BackgroundEnabled" Value="set:false"/>
8
9        <Window Type="TaharezLook/Titlebar" Name="orxonox/QuestGUI/Title">
10            <Property Name="UnifiedPosition" Value="{{0.05,0},{0.05,0}}"/>
11            <Property Name="UnifiedSize" Value="{{0.9,0},{0.05,0}}"/>
12            <Property Name="Text" Value="Your Quests"/>
13        </Window>
14       
15        <Window Type="TaharezLook/Button" Name="orxonox/QuestGUI/ActiveQuestsButton">
16            <Property Name="UnifiedPosition" Value="{{0.11,0},{0.11,0}}"/>
17            <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>
18            <Property Name="Text" Value="Active Quests"/>
19            <Event Name="Clicked" Function="QuestGUI.button_activeQuests_clicked"/>
20        </Window>
21
22        <Window Type="TaharezLook/Button" Name="orxonox/CompletedQuestsButton">
23            <Property Name="UnifiedPosition" Value="{{0.43,0},{0.11,0}}"/>
24            <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>
25            <Property Name="Text" Value="Completed Quests"/>
26            <Event Name="Clicked" Function="QuestGUI.button_activeQuests_clicked"/>
27        </Window>
28
29        <Window Type="TaharezLook/Button" Name="orxonox/FailedQuestsButton">
30            <Property Name="UnifiedPosition" Value="{{0.74,0},{0.11,0}}"/>
31            <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>
32            <Property Name="Text" Value="Failed Quests"/>
33            <Event Name="Clicked" Function="QuestGUI.button_activeQuests_clicked"/>
34        </Window>
35
36        <Window Type="TaharezLook/Listbox" Name="orxonox/QuestGUI/QuestsList">
37            <Property Name="UnifiedPosition" Value="{{0.07,0},{0.18,0}}" />
38            <Property Name="UnifiedSize" Value="{{0.86,0},{0.8,0}}" />
39            <Property Name="Alpha" Value="0.8" />
40        </Window>
41
42    </Window>
43</GUILayout>
Note: See TracBrowser for help on using the repository browser.