Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 11211


Ignore:
Timestamp:
Jul 5, 2016, 11:46:10 PM (8 years ago)
Author:
bknecht
Message:

Merging cegui0.8 branch into ogre1.9 branch

Location:
code/branches/ogre1.9
Files:
71 edited

Legend:

Unmodified
Added
Removed
  • code/branches/ogre1.9

  • code/branches/ogre1.9/cmake/tools/FindCEGUI.cmake

    r11117 r11211  
    3232
    3333# Determine CEGUI's version
    34 FIND_FILE(CEGUI_VERSION_FILE CEGUIVersion.h Version.h
    35   PATHS $ENV{CEGUIDIR}
    36   PATH_SUFFIXES include include/CEGUI
    37 )
     34#FIND_FILE(CEGUI_VERSION_FILE Version.h
     35#  PATHS $ENV{CEGUIDIR}
     36#  PATH_SUFFIXES include include/CEGUI include/cegui-0.8.4/CEGUI
     37#)
     38file(GLOB CEGUI_VERSION_FILE "/usr/include/cegui-*/CEGUI/Version.h")
     39message("Found File: " ${CEGUI_VERSION_FILE})
    3840DETERMINE_VERSION(CEGUI ${CEGUI_VERSION_FILE})
     41message("Found Version: ${CEGUI_VERSION}")
    3942
    4043# Find CEGUI headers
    41 COMPARE_VERSION_STRINGS("${CEGUI_VERSION}" "0.8" _version_0_8_compare TRUE)
     44COMPARE_VERSION_STRINGS("${CEGUI_VERSION}" "0.8" _version_0_8_compare)
     45message("CEGUI Version: ${_version_0_8_compare}")
    4246# Version 0.8 introduced a new directory and file naming convention
    4347IF(_version_0_8_compare GREATER -1)
     
    4549  FIND_PATH(CEGUI_INCLUDE_DIR CEGUI/CEGUI.h
    4650    PATHS $ENV{CEGUIDIR}
    47     PATH_SUFFIXES include
     51    PATH_SUFFIXES include/cegui-${CEGUI_VERSION}/
    4852  )
    4953ELSE()
     
    102106    # For Mac OS X, tolua++ is a separate framework in the dependency package
    103107    ${DEP_FRAMEWORK_DIR}
    104   NO_DEFAULT_PATH # Don't attempt to find tolua++ installed on the system
     108    #NO_DEFAULT_PATH # Don't attempt to find tolua++ installed on the system
    105109)
    106110# Find CEGUI Tolua++ libraries
     
    118122# Newer versions of CEGUI have the renderer for OGRE shipped with them
    119123COMPARE_VERSION_STRINGS("${CEGUI_VERSION}" "0.7" _version_0_7_compare TRUE)
     124message("another version: ${CEGUI_INCLUDE_DIR}/RendererModules/Ogre")
    120125IF(_version_0_7_compare GREATER -1)
    121126  # Find CEGUI OGRE Renderer headers
     
    124129      $ENV{CEGUIDIR}
    125130      $ENV{CEGUIOGRERENDERERDIR}
    126       ${CEGUI_INCLUDE_DIR}/RendererModules/Ogre
     131      ${CEGUI_INCLUDE_DIR}/CEGUI/RendererModules/Ogre
    127132    PATH_SUFFIXES include include/CEGUI
    128133  )
  • code/branches/ogre1.9/data/gui/configs/CEGUIConfig.xsd

    r8079 r11211  
    11<?xml version="1.0"?>
    22<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
    3 
    43    <xsd:element name="CEGUIConfig" type="CEGUIConfigType"/>
    54
    6     <xsd:simpleType name="LogLevel">
     5    <xsd:complexType name="CEGUIConfigType">
     6        <xsd:sequence>
     7            <xsd:choice minOccurs="0" maxOccurs="unbounded">
     8                <xsd:element name="Logging" type="loggingType" />
     9                <xsd:element name="AutoLoad" type="autoLoadType" />
     10                <xsd:element name="ResourceDirectory" type="resourceDirectoryType" />
     11                <xsd:element name="DefaultResourceGroup" type="defaultResourceGroupType" />
     12                <xsd:element name="Scripting" type="scriptingType" />
     13                <xsd:element name="DefaultXMLParser" type="defaultObjectType" />
     14                <xsd:element name="DefaultImageCodec" type="defaultObjectType" />
     15                <xsd:element name="DefaultFont" type="defaultObjectType" />
     16                <xsd:element name="DefaultMouseCursor" type="defaultMouseCursorType" />
     17                <xsd:element name="DefaultTooltip" type="defaultObjectType" />
     18                <xsd:element name="DefaultGUISheet" type="defaultObjectType" />
     19            </xsd:choice>
     20        </xsd:sequence>
     21    </xsd:complexType>
     22
     23    <xsd:complexType name="loggingType">
     24        <xsd:simpleContent>
     25            <xsd:extension base="xsd:string">
     26                <xsd:attribute name="filename" type="xsd:string" use="optional" default="CEGUI.log" />
     27                <xsd:attribute name="level" type="logLevel" use="optional" default="Standard" />
     28            </xsd:extension>
     29        </xsd:simpleContent>
     30    </xsd:complexType>
     31
     32    <xsd:complexType name="autoLoadType">
     33        <xsd:simpleContent>
     34            <xsd:extension base="xsd:string">
     35                <xsd:attribute name="type" type="resourceType" use="required" />
     36                <xsd:attribute name="group" type="xsd:string" use="optional" default="" />
     37                <xsd:attribute name="pattern" type="xsd:string" use="optional" default="*" />
     38            </xsd:extension>
     39        </xsd:simpleContent>
     40    </xsd:complexType>
     41
     42    <xsd:complexType name="resourceDirectoryType">
     43        <xsd:simpleContent>
     44            <xsd:extension base="xsd:string">
     45                <xsd:attribute name="group" type="xsd:string" use="required" />
     46                <xsd:attribute name="directory" type="xsd:string" use="required" />
     47            </xsd:extension>
     48        </xsd:simpleContent>
     49    </xsd:complexType>
     50
     51    <xsd:complexType name="defaultResourceGroupType">
     52        <xsd:simpleContent>
     53            <xsd:extension base="xsd:string">
     54                <xsd:attribute name="type" type="resourceType" use="optional" default="Default" />
     55                <xsd:attribute name="group" type="xsd:string" use="required" />
     56            </xsd:extension>
     57        </xsd:simpleContent>
     58    </xsd:complexType>
     59
     60    <xsd:complexType name="scriptingType">
     61        <xsd:simpleContent>
     62            <xsd:extension base="xsd:string">
     63                <xsd:attribute name="initScript" type="xsd:string" use="optional" default="" />
     64                <xsd:attribute name="terminateScript" type="xsd:string" use="optional" default="" />
     65            </xsd:extension>
     66        </xsd:simpleContent>
     67    </xsd:complexType>
     68
     69    <xsd:complexType name="defaultObjectType">
     70        <xsd:simpleContent>
     71            <xsd:extension base="xsd:string">
     72                <xsd:attribute name="name" type="xsd:string" use="required" />
     73            </xsd:extension>
     74        </xsd:simpleContent>
     75    </xsd:complexType>
     76
     77    <xsd:complexType name="defaultMouseCursorType">
     78        <xsd:simpleContent>
     79            <xsd:extension base="xsd:string">
     80                <xsd:attribute name="imageset" type="xsd:string" use="required" />
     81                <xsd:attribute name="image" type="xsd:string" use="required" />
     82            </xsd:extension>
     83        </xsd:simpleContent>
     84    </xsd:complexType>
     85
     86    <xsd:simpleType name="logLevel">
    787        <xsd:restriction base="xsd:string">
    888            <xsd:enumeration value="Errors"/>
     
    1393    </xsd:simpleType>
    1494
    15     <xsd:complexType name="CEGUIConfigType">
    16         <xsd:attribute name="Logfile" type="xsd:string" use="optional" default=""/>
    17         <xsd:attribute name="Scheme" type="xsd:string" use="optional" default=""/>
    18         <xsd:attribute name="DefaultFont" type="xsd:string" use="optional" default=""/>
    19         <xsd:attribute name="Layout" type="xsd:string" use="optional" default=""/>
    20         <xsd:attribute name="InitScript" type="xsd:string" use="optional" default=""/>
    21         <xsd:attribute name="TerminateScript" type="xsd:string" use="optional" default=""/>
    22         <xsd:attribute name="DefaultResourceGroup" type="xsd:string" use="optional"  default="" />
    23         <xsd:attribute name="LoggingLevel" type="LogLevel" use="optional"  default="Standard" />
    24     </xsd:complexType>
     95    <xsd:simpleType name="resourceType">
     96        <xsd:restriction base="xsd:string">
     97            <xsd:enumeration value="Imageset"/>
     98            <xsd:enumeration value="Font"/>
     99            <xsd:enumeration value="Scheme"/>
     100            <xsd:enumeration value="LookNFeel"/>
     101            <xsd:enumeration value="Layout"/>
     102            <xsd:enumeration value="Script"/>
     103            <xsd:enumeration value="XMLSchema"/>
     104            <xsd:enumeration value="Default"/>
     105        </xsd:restriction>
     106    </xsd:simpleType>
    25107
    26108</xsd:schema>
    27 
    28 
  • code/branches/ogre1.9/data/gui/layouts/AudioMenu.layout

    r7801 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/AudioBackground" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/AudioWindow" >
    11             <Property Name="Text" Value="Audio" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.2,0},{0.2875,0},{0.8,0},{0.6375,0}}" />
    18             <Window Type="MenuWidgets/StaticText" Name="orxonox/MasterVolume" >
    19                 <Property Name="Text" Value="Master volume               " />
    20                 <Property Name="InheritsAlpha" Value="False" />
    21                 <Property Name="HorzFormatting" Value="HorzCentred" />
    22                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    23                 <Property Name="VertFormatting" Value="TopAligned" />
    24                 <Property Name="UnifiedAreaRect" Value="{{0.041666,0},{0.15,0},{0.5625,0},{0.3525,0}}" />
    25                 <Window Type="MenuWidgets/HorizontalScrollbar" Name="orxonox/MasterScrollbar" >
    26                     <Property Name="PageSize" Value="0" />
    27                     <Property Name="StepSize" Value="1" />
    28                     <Property Name="OverlapSize" Value="0" />
    29                     <Property Name="DocumentSize" Value="1" />
    30                     <Property Name="ScrollPosition" Value="0" />
    31                     <Property Name="StepSize" Value="0.1" />
    32                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    33                     <Property Name="UnifiedAreaRect" Value="{{0.04,0},{0.6,0},{0.71,0},{0.8,0}}" />
    34                     <Event Name="ThumbTrackStarted" Function="AudioMenu.AudioMasterScrollbar_started" />
    35                     <Event Name="ThumbTrackEnded" Function="AudioMenu.AudioMasterScrollbar_ended" />
    36                     <Event Name="ScrollPosChanged" Function="AudioMenu.AudioMasterScrollbar_changed" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="AudioBackground" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="AudioWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Audio" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.2,0},{0.2875,0},{0.8,0},{0.6375,0}}" />
     17            <Window name="MasterVolume" type="MenuWidgets/StaticText">
     18                <Property name="Text" value="Master volume               " />
     19                <Property name="InheritsAlpha" value="False" />
     20                <Property name="HorzFormatting" value="HorzCentred" />
     21                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     22                <Property name="VertFormatting" value="TopAligned" />
     23                <Property name="Area" value="{{0.041666,0},{0.15,0},{0.5625,0},{0.3525,0}}" />
     24                <Window name="MasterScrollbar" type="MenuWidgets/HorizontalScrollbar">
     25                    <Property name="PageSize" value="0" />
     26                    <Property name="StepSize" value="1" />
     27                    <Property name="OverlapSize" value="0" />
     28                    <Property name="DocumentSize" value="1" />
     29                    <Property name="ScrollPosition" value="0" />
     30                    <Property name="StepSize" value="0.1" />
     31                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     32                    <Property name="Area" value="{{0.04,0},{0.6,0},{0.71,0},{0.8,0}}" />
     33                    <Event function="AudioMenu.AudioMasterScrollbar_started" name="ThumbTrackStarted" />
     34                    <Event function="AudioMenu.AudioMasterScrollbar_ended" name="ThumbTrackEnded" />
     35                    <Event function="AudioMenu.AudioMasterScrollbar_changed" name="ScrollPosChanged" />
    3736                </Window>
    38                 <Window Type="MenuWidgets/Checkbox" Name="orxonox/MasterCheckbox" >
    39                     <Property Name="Text" Value="Mute" />
    40                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    41                     <Property Name="UnifiedAreaRect" Value="{{0.775,0},{0.45,0},{0.96,0},{0.9,0}}" />
    42                     <Event Name="CheckStateChanged" Function="AudioMenu.AudioMuteMasterCheckbox_clicked"/>
     37                <Window name="MasterCheckbox" type="MenuWidgets/Checkbox">
     38                    <Property name="Text" value="Mute" />
     39                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     40                    <Property name="Area" value="{{0.775,0},{0.45,0},{0.96,0},{0.9,0}}" />
     41                    <Event function="AudioMenu.AudioMuteMasterCheckbox_clicked" name="CheckStateChanged" />
    4342                </Window>
    4443            </Window>
    45             <Window Type="MenuWidgets/StaticText" Name="orxonox/MusicVolume" >
    46                 <Property Name="Text" Value="Music volume               " />
    47                 <Property Name="InheritsAlpha" Value="False" />
    48                 <Property Name="HorzFormatting" Value="HorzCentred" />
    49                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    50                 <Property Name="VertFormatting" Value="TopAligned" />
    51                 <Property Name="UnifiedAreaRect" Value="{{0.041666,0},{0.4335,0},{0.5625,0},{0.636,0}}" />
    52                 <Window Type="MenuWidgets/HorizontalScrollbar" Name="orxonox/MusicScrollbar" >
    53                     <Property Name="PageSize" Value="0" />
    54                     <Property Name="StepSize" Value="1" />
    55                     <Property Name="OverlapSize" Value="0" />
    56                     <Property Name="DocumentSize" Value="1" />
    57                     <Property Name="ScrollPosition" Value="0" />
    58                     <Property Name="StepSize" Value="0.1" />
    59                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    60                     <Property Name="UnifiedAreaRect" Value="{{0.04,0},{0.6,0},{0.71,0},{0.8,0}}" />
    61                     <Event Name="ThumbTrackStarted" Function="AudioMenu.AudioMusicScrollbar_started" />
    62                     <Event Name="ThumbTrackEnded" Function="AudioMenu.AudioMusicScrollbar_ended" />
    63                     <Event Name="ScrollPosChanged" Function="AudioMenu.AudioMusicScrollbar_changed" />
     44            <Window name="MusicVolume" type="MenuWidgets/StaticText">
     45                <Property name="Text" value="Music volume               " />
     46                <Property name="InheritsAlpha" value="False" />
     47                <Property name="HorzFormatting" value="HorzCentred" />
     48                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     49                <Property name="VertFormatting" value="TopAligned" />
     50                <Property name="Area" value="{{0.041666,0},{0.4335,0},{0.5625,0},{0.636,0}}" />
     51                <Window name="MusicScrollbar" type="MenuWidgets/HorizontalScrollbar">
     52                    <Property name="PageSize" value="0" />
     53                    <Property name="StepSize" value="1" />
     54                    <Property name="OverlapSize" value="0" />
     55                    <Property name="DocumentSize" value="1" />
     56                    <Property name="ScrollPosition" value="0" />
     57                    <Property name="StepSize" value="0.1" />
     58                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     59                    <Property name="Area" value="{{0.04,0},{0.6,0},{0.71,0},{0.8,0}}" />
     60                    <Event function="AudioMenu.AudioMusicScrollbar_started" name="ThumbTrackStarted" />
     61                    <Event function="AudioMenu.AudioMusicScrollbar_ended" name="ThumbTrackEnded" />
     62                    <Event function="AudioMenu.AudioMusicScrollbar_changed" name="ScrollPosChanged" />
    6463                </Window>
    65                 <Window Type="MenuWidgets/Checkbox" Name="orxonox/MusicCheckbox" >
    66                     <Property Name="Text" Value="Mute" />
    67                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    68                     <Property Name="UnifiedAreaRect" Value="{{0.775,0},{0.45,0},{0.96,0},{0.9,0}}" />
    69                     <Event Name="CheckStateChanged" Function="AudioMenu.AudioMuteMusicCheckbox_clicked"/>
     64                <Window name="MusicCheckbox" type="MenuWidgets/Checkbox">
     65                    <Property name="Text" value="Mute" />
     66                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     67                    <Property name="Area" value="{{0.775,0},{0.45,0},{0.96,0},{0.9,0}}" />
     68                    <Event function="AudioMenu.AudioMuteMusicCheckbox_clicked" name="CheckStateChanged" />
    7069                </Window>
    7170            </Window>
    72             <Window Type="MenuWidgets/StaticText" Name="orxonox/EffectsVolume" >
    73                 <Property Name="Text" Value="Effects volume               " />
    74                 <Property Name="InheritsAlpha" Value="False" />
    75                 <Property Name="HorzFormatting" Value="HorzCentred" />
    76                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    77                 <Property Name="VertFormatting" Value="TopAligned" />
    78                 <Property Name="UnifiedAreaRect" Value="{{0.041666,0},{0.717,0},{0.5625,0},{0.9195,0}}" />
    79                 <Window Type="MenuWidgets/HorizontalScrollbar" Name="orxonox/EffectsScrollbar" >
    80                     <Property Name="PageSize" Value="0" />
    81                     <Property Name="StepSize" Value="1" />
    82                     <Property Name="OverlapSize" Value="0" />
    83                     <Property Name="DocumentSize" Value="1" />
    84                     <Property Name="ScrollPosition" Value="0" />
    85                     <Property Name="StepSize" Value="0.1" />
    86                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    87                     <Property Name="UnifiedAreaRect" Value="{{0.04,0},{0.6,0},{0.71,0},{0.8,0}}" />
    88                     <Event Name="ThumbTrackStarted" Function="AudioMenu.AudioEffectsScrollbar_started" />
    89                     <Event Name="ThumbTrackEnded" Function="AudioMenu.AudioEffectsScrollbar_ended" />
    90                     <Event Name="ScrollPosChanged" Function="AudioMenu.AudioEffectsScrollbar_changed" />
     71            <Window name="EffectsVolume" type="MenuWidgets/StaticText">
     72                <Property name="Text" value="Effects volume               " />
     73                <Property name="InheritsAlpha" value="False" />
     74                <Property name="HorzFormatting" value="HorzCentred" />
     75                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     76                <Property name="VertFormatting" value="TopAligned" />
     77                <Property name="Area" value="{{0.041666,0},{0.717,0},{0.5625,0},{0.9195,0}}" />
     78                <Window name="EffectsScrollbar" type="MenuWidgets/HorizontalScrollbar">
     79                    <Property name="PageSize" value="0" />
     80                    <Property name="StepSize" value="1" />
     81                    <Property name="OverlapSize" value="0" />
     82                    <Property name="DocumentSize" value="1" />
     83                    <Property name="ScrollPosition" value="0" />
     84                    <Property name="StepSize" value="0.1" />
     85                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     86                    <Property name="Area" value="{{0.04,0},{0.6,0},{0.71,0},{0.8,0}}" />
     87                    <Event function="AudioMenu.AudioEffectsScrollbar_started" name="ThumbTrackStarted" />
     88                    <Event function="AudioMenu.AudioEffectsScrollbar_ended" name="ThumbTrackEnded" />
     89                    <Event function="AudioMenu.AudioEffectsScrollbar_changed" name="ScrollPosChanged" />
    9190                </Window>
    92                 <Window Type="MenuWidgets/Checkbox" Name="orxonox/EffectsCheckbox" >
    93                     <Property Name="Text" Value="Mute" />
    94                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    95                     <Property Name="UnifiedAreaRect" Value="{{0.775,0},{0.45,0},{0.96,0},{0.9,0}}" />
    96                     <Event Name="CheckStateChanged" Function="AudioMenu.AudioMuteEffectsCheckbox_clicked"/>
     91                <Window name="EffectsCheckbox" type="MenuWidgets/Checkbox">
     92                    <Property name="Text" value="Mute" />
     93                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     94                    <Property name="Area" value="{{0.775,0},{0.45,0},{0.96,0},{0.9,0}}" />
     95                    <Event function="AudioMenu.AudioMuteEffectsCheckbox_clicked" name="CheckStateChanged" />
    9796                </Window>
    9897            </Window>
    99             <Window Type="MenuWidgets/StaticText" Name="orxonox/AudioTheme" >
    100                 <Property Name="Text" Value="Theme" />
    101                 <Property Name="InheritsAlpha" Value="False" />
    102                 <Property Name="HorzFormatting" Value="HorzCentred" />
    103                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    104                 <Property Name="VertFormatting" Value="TopAligned" />
    105                 <Property Name="UnifiedAreaRect" Value="{{0.604166,0},{0.15,0},{0.958333,0},{0.636,0}}" />
    106                 <Window Type="MenuWidgets/Listbox" Name="orxonox/AudioThemeListbox" >
    107                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    108                     <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.225,0},{0.95,0},{0.92,0}}" />
    109                     <Event Name="ItemSelectionChanged" Function="AudioMenu.AudioThemeListbox_changed" />
     98            <Window name="AudioTheme" type="MenuWidgets/StaticText">
     99                <Property name="Text" value="Theme" />
     100                <Property name="InheritsAlpha" value="False" />
     101                <Property name="HorzFormatting" value="HorzCentred" />
     102                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     103                <Property name="VertFormatting" value="TopAligned" />
     104                <Property name="Area" value="{{0.604166,0},{0.15,0},{0.958333,0},{0.636,0}}" />
     105                <Window name="AudioThemeListbox" type="MenuWidgets/Listbox">
     106                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     107                    <Property name="Area" value="{{0.05,0},{0.225,0},{0.95,0},{0.92,0}}" />
     108                    <Event function="AudioMenu.AudioThemeListbox_changed" name="ItemSelectionChanged" />
    110109                </Window>
    111110            </Window>
    112             <Window Type="MenuWidgets/StaticText" Name="orxonox/AudioInfo" >
    113                 <Property Name="Text" >Theme changes might take
     111            <Window name="AudioInfo" type="MenuWidgets/StaticText">
     112                <Property name="Text">Theme changes might take
    114113up to a minute.</Property>
    115                 <Property Name="TextColours" Value="FFFFFFFF" />
    116                 <Property Name="InheritsAlpha" Value="False" />
    117                 <Property Name="HorzFormatting" Value="HorzCentred" />
    118                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    119                 <Property Name="VertFormatting" Value="TopAligned" />
    120                 <Property Name="UnifiedAreaRect" Value="{{0.604166,0},{0.717,0},{0.958333,0},{0.9195,0}}" />
     114                <Property name="TextColours" value="FFFFFFFF" />
     115                <Property name="InheritsAlpha" value="False" />
     116                <Property name="HorzFormatting" value="HorzCentred" />
     117                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     118                <Property name="VertFormatting" value="TopAligned" />
     119                <Property name="Area" value="{{0.604166,0},{0.717,0},{0.958333,0},{0.9195,0}}" />
    121120            </Window>
    122121        </Window>
    123         <Window Type="MenuWidgets/Button" Name="orxonox/AudioBackButton" >
    124             <Property Name="Text" Value="Back" />
    125             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    126             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
    127             <Event Name="Clicked" Function="AudioMenu.AudioBackButton_clicked" />
     122        <Window name="AudioBackButton" type="MenuWidgets/Button">
     123            <Property name="Text" value="Back" />
     124            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     125            <Property name="Area" value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
     126            <Event function="AudioMenu.AudioBackButton_clicked" name="Clicked" />
    128127        </Window>
    129128    </Window>
  • code/branches/ogre1.9/data/gui/layouts/CampaignMenu.layout

    r11052 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/CampaignBackground" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1.0,0},{1.0,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/Button" Name="orxonox/Mission1Button" >
    11             <Property Name="Text" Value="Mission One" />
    12             <Property Name="Visible" Value="False"/>
    13             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    14             <Property Name="UnifiedAreaRect" Value="{{0.35,0},{0.1,0},{0.65,0},{0.15,0}}" />
    15             <Event Name="Clicked" Function="CampaignMenu.Mission1Button_clicked"/>
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="CampaignBackground" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1.0,0},{1.0,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="Mission1Button" type="MenuWidgets/Button">
     10            <Property name="Text" value="Mission One" />
     11            <Property name="Visible" value="False" />
     12            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     13            <Property name="Area" value="{{0.35,0},{0.1,0},{0.65,0},{0.15,0}}" />
     14            <Event function="CampaignMenu.Mission1Button_clicked" name="Clicked" />
    1615        </Window>
    17         <Window Type="MenuWidgets/Button" Name="orxonox/Mission2Button" >
    18             <Property Name="Text" Value="Fight in our Back" />
    19             <Property Name="Visible" Value="False"/>
    20             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    21             <Property Name="UnifiedAreaRect" Value="{{0.35,0},{0.18,0},{0.65,0},{0.23,0}}" />
    22             <Property Name="Disabled" Value="True" />
    23             <Event Name="Clicked" Function="CampaignMenu.Mission2Button_clicked"/>
     16        <Window name="Mission2Button" type="MenuWidgets/Button">
     17            <Property name="Text" value="Fight in our Back" />
     18            <Property name="Visible" value="False" />
     19            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     20            <Property name="Area" value="{{0.35,0},{0.18,0},{0.65,0},{0.23,0}}" />
     21            <Property name="Disabled" value="True" />
     22            <Event function="CampaignMenu.Mission2Button_clicked" name="Clicked" />
    2423        </Window>
    25         <Window Type="MenuWidgets/Button" Name="orxonox/Mission3Button" >
    26             <Property Name="Text" Value="Pirate Attack" />
    27             <Property Name="Visible" Value="False"/>
    28             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    29             <Property Name="UnifiedAreaRect" Value="{{0.35,0},{0.26,0},{0.65,0},{0.31,0}}" />
    30             <Property Name="Disabled" Value="True" />
    31             <Event Name="Clicked" Function="CampaignMenu.Mission3Button_clicked"/>
     24        <Window name="Mission3Button" type="MenuWidgets/Button">
     25            <Property name="Text" value="Pirate Attack" />
     26            <Property name="Visible" value="False" />
     27            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     28            <Property name="Area" value="{{0.35,0},{0.26,0},{0.65,0},{0.31,0}}" />
     29            <Property name="Disabled" value="True" />
     30            <Event function="CampaignMenu.Mission3Button_clicked" name="Clicked" />
    3231        </Window>
    33         <Window Type="MenuWidgets/Button" Name="orxonox/Mission4Button" >
    34             <Property Name="Text" Value="Trip to Area 51" />
    35             <Property Name="Visible" Value="False"/>
    36             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    37             <Property Name="UnifiedAreaRect" Value="{{0.35,0},{0.34,0},{0.65,0},{0.39,0}}" />
    38             <Property Name="Disabled" Value="True" />
    39             <Event Name="Clicked" Function="CampaignMenu.Mission4Button_clicked"/>
     32        <Window name="Mission4Button" type="MenuWidgets/Button">
     33            <Property name="Text" value="Trip to Area 51" />
     34            <Property name="Visible" value="False" />
     35            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     36            <Property name="Area" value="{{0.35,0},{0.34,0},{0.65,0},{0.39,0}}" />
     37            <Property name="Disabled" value="True" />
     38            <Event function="CampaignMenu.Mission4Button_clicked" name="Clicked" />
    4039        </Window>
    41         <Window Type="MenuWidgets/Button" Name="orxonox/Mission5Button" >
    42             <Property Name="Text" Value="Area 51 under Fire" />
    43             <Property Name="Visible" Value="False"/>
    44             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    45             <Property Name="UnifiedAreaRect" Value="{{0.35,0},{0.42,0},{0.65,0},{0.47,0}}" />
    46             <Property Name="Disabled" Value="True" />
    47             <Event Name="Clicked" Function="CampaignMenu.Mission5Button_clicked"/>
     40        <Window name="Mission5Button" type="MenuWidgets/Button">
     41            <Property name="Text" value="Area 51 under Fire" />
     42            <Property name="Visible" value="False" />
     43            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     44            <Property name="Area" value="{{0.35,0},{0.42,0},{0.65,0},{0.47,0}}" />
     45            <Property name="Disabled" value="True" />
     46            <Event function="CampaignMenu.Mission5Button_clicked" name="Clicked" />
    4847        </Window>
    49         <Window Type="MenuWidgets/Button" Name="orxonox/Mission6Button" >
    50             <Property Name="Text" Value="Escape the Bastards" />
    51             <Property Name="Visible" Value="False"/>
    52             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    53             <Property Name="UnifiedAreaRect" Value="{{0.35,0},{0.50,0},{0.65,0},{0.55,0}}" />
    54             <Property Name="Disabled" Value="True" />
    55             <Event Name="Clicked" Function="CampaignMenu.Mission6Button_clicked"/>
     48        <Window name="Mission6Button" type="MenuWidgets/Button">
     49            <Property name="Text" value="Escape the Bastards" />
     50            <Property name="Visible" value="False" />
     51            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     52            <Property name="Area" value="{{0.35,0},{0.50,0},{0.65,0},{0.55,0}}" />
     53            <Property name="Disabled" value="True" />
     54            <Event function="CampaignMenu.Mission6Button_clicked" name="Clicked" />
    5655        </Window>
    57         <Window Type="MenuWidgets/Button" Name="orxonox/Mission7Button" >
    58             <Property Name="Text" Value="Expedition to Sector 5C" />
    59             <Property Name="Visible" Value="False"/>
    60             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    61             <Property Name="UnifiedAreaRect" Value="{{0.35,0},{0.58,0},{0.65,0},{0.63,0}}" />
    62             <Property Name="Disabled" Value="True" />
    63             <Event Name="Clicked" Function="CampaignMenu.Mission7Button_clicked"/>
     56        <Window name="Mission7Button" type="MenuWidgets/Button">
     57            <Property name="Text" value="Expedition to Sector 5C" />
     58            <Property name="Visible" value="False" />
     59            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     60            <Property name="Area" value="{{0.35,0},{0.58,0},{0.65,0},{0.63,0}}" />
     61            <Property name="Disabled" value="True" />
     62            <Event function="CampaignMenu.Mission7Button_clicked" name="Clicked" />
    6463        </Window>
    65         <Window Type="MenuWidgets/Button" Name="orxonox/Mission8Button" >
    66             <Property Name="Text" Value="Shuttle under Attack" />
    67             <Property Name="Visible" Value="False"/>
    68             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    69             <Property Name="UnifiedAreaRect" Value="{{0.35,0},{0.66,0},{0.65,0},{0.71,0}}" />
    70             <Property Name="Disabled" Value="True" />
    71             <Event Name="Clicked" Function="CampaignMenu.Mission8Button_clicked"/>
     64        <Window name="Mission8Button" type="MenuWidgets/Button">
     65            <Property name="Text" value="Shuttle under Attack" />
     66            <Property name="Visible" value="False" />
     67            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     68            <Property name="Area" value="{{0.35,0},{0.66,0},{0.65,0},{0.71,0}}" />
     69            <Property name="Disabled" value="True" />
     70            <Event function="CampaignMenu.Mission8Button_clicked" name="Clicked" />
    7271        </Window>
    73         <Window Type="MenuWidgets/Button" Name="orxonox/Mission9Button" >
    74             <Property Name="Text" Value="Retaliation" />
    75             <Property Name="Visible" Value="False"/>
    76             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    77             <Property Name="UnifiedAreaRect" Value="{{0.35,0},{0.74,0},{0.65,0},{0.79,0}}" />
    78             <Property Name="Disabled" Value="True" />
    79             <Event Name="Clicked" Function="CampaignMenu.Mission9Button_clicked"/>
     72        <Window name="Mission9Button" type="MenuWidgets/Button">
     73            <Property name="Text" value="Retaliation" />
     74            <Property name="Visible" value="False" />
     75            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     76            <Property name="Area" value="{{0.35,0},{0.74,0},{0.65,0},{0.79,0}}" />
     77            <Property name="Disabled" value="True" />
     78            <Event function="CampaignMenu.Mission9Button_clicked" name="Clicked" />
    8079        </Window>
    81 
    82 
    83         <Window Type="MenuWidgets/Button" Name="orxonox/CampaignMenuBackButton" >
    84             <Property Name="Text" Value="Back" />
    85             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    86             <Property Name="UnifiedAreaRect" Value="{{0.35,0},{0.85,0},{0.65,0},{0.9,0}}" />
    87             <Event Name="Clicked" Function="CampaignMenu.CampaignMenuBackButton_clicked"/>
     80        <Window name="CampaignMenuBackButton" type="MenuWidgets/Button">
     81            <Property name="Text" value="Back" />
     82            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     83            <Property name="Area" value="{{0.35,0},{0.85,0},{0.65,0},{0.9,0}}" />
     84            <Event function="CampaignMenu.CampaignMenuBackButton_clicked" name="Clicked" />
    8885        </Window>
    89         <Window Type="MenuWidgets/StaticText" Name="orxonox/CampaignMenuCongratulation" >
    90             <Property Name="Text" Value="Campaign Completed!!!" />
    91             <Property Name="Visible" Value="False"/>
    92             <Property Name="InheritsAlpha" Value="False" />
    93             <Property Name="HorzFormatting" Value="HorzCentred" />
    94             <Property Name="VertFormatting" Value="TopAligned" />
    95             <Property Name="UnifiedMaxSize" Value="{{2,1},{2,1}}" />
    96             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.15,0},{0.6,0},{0.2,0}}" />
     86        <Window name="CampaignMenuCongratulation" type="MenuWidgets/StaticText">
     87            <Property name="Text" value="Campaign Completed!!!" />
     88            <Property name="Visible" value="False" />
     89            <Property name="InheritsAlpha" value="False" />
     90            <Property name="HorzFormatting" value="HorzCentred" />
     91            <Property name="VertFormatting" value="TopAligned" />
     92            <Property name="MaxSize" value="{{2,1},{2,1}}" />
     93            <Property name="Area" value="{{0.4,0},{0.15,0},{0.6,0},{0.2,0}}" />
    9794        </Window>
    9895    </Window>
  • code/branches/ogre1.9/data/gui/layouts/ChatBox-inputonly.layout

    r7163 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="DefaultWindow" Name="orxonox/ChatBox-inputonly/Root" >
    5         <Property Name="InheritsAlpha" Value="False" />
    6         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    7         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    8         <Window Type="MenuWidgets/Editbox" Name="orxonox/ChatBox-inputonly/input" >
    9             <Property Name="Text" Value="" />
    10             <Property Name="Font" Value="Monofur-10" />
    11             <Property Name="AlwaysOnTop" Value="True" />
    12             <Property Name="MaxTextLength" Value="12981298" />
    13             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    14             <Property Name="UnifiedAreaRect" Value="{{0.02,0},{0,5},{0.98,0},{0,30}}" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="ChatBox-inputonly" type="DefaultWindow">
     4        <Property name="InheritsAlpha" value="False" />
     5        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     6        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     7        <Window name="input" type="MenuWidgets/Editbox">
     8            <Property name="Text" value="" />
     9            <Property name="Font" value="Monofur-10" />
     10            <Property name="AlwaysOnTop" value="True" />
     11            <Property name="MaxTextLength" value="12981298" />
     12            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     13            <Property name="Area" value="{{0.02,0},{0,5},{0.98,0},{0,30}}" />
    1514        </Window>
    1615    </Window>
  • code/branches/ogre1.9/data/gui/layouts/ChatBox.layout

    r7612 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="DefaultWindow" Name="orxonox/ChatBox/Root" >
    5         <Property Name="InheritsAlpha" Value="False" />
    6         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    7         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    8         <Window Type="MenuWidgets/FrameWindow" Name="orxonox/ChatBox" >
    9             <Property Name="Text" Value="Chat" />
    10             <Property Name="InheritsAlpha" Value="False" />
    11             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    12             <Property Name="TitlebarEnabled" Value="True" />
    13             <!--<Property Name="UnifiedAreaRect" Value="{{0.01,0},{0.03,0},{0.6,0},{0.69375,0}}" />-->
    14             <Property Name="UnifiedAreaRect" Value="{{0.35,0},{0.10,0},{0.98,0},{0.65,0}}" />
    15             <Event Name="CloseClicked" Function="ChatBox.ChatBoxCloseButton_clicked"/>
    16             <Window Type="MenuWidgets/Listbox" Name="orxonox/ChatBox/history" >
    17                 <Property Name="Font" Value="Monofur-10" />
    18                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    19                 <Property Name="UnifiedAreaRect" Value="{{0.02,0},{0.078,0},{0.98,0},{1,-30}}" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="ChatBox" type="DefaultWindow">
     4        <Property name="InheritsAlpha" value="False" />
     5        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     6        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     7        <Window name="frame" type="MenuWidgets/FrameWindow">
     8            <Property name="Text" value="Chat" />
     9            <Property name="InheritsAlpha" value="False" />
     10            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     11            <Property name="TitlebarEnabled" value="True" />
     12            <Property name="Area" value="{{0.35,0},{0.10,0},{0.98,0},{0.65,0}}" />
     13            <Event function="ChatBox.ChatBoxCloseButton_clicked" name="CloseClicked" />
     14            <Window name="history" type="MenuWidgets/Listbox">
     15                <Property name="Font" value="Monofur-10" />
     16                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     17                <Property name="Area" value="{{0.02,0},{0.078,0},{0.98,0},{1,-30}}" />
    2018            </Window>
    21             <Window Type="MenuWidgets/Editbox" Name="orxonox/ChatBox/input" >
    22                 <Property Name="Text" Value="" />
    23                 <Property Name="Font" Value="Monofur-10" />
    24                 <Property Name="MaxTextLength" Value="1073741823" />
    25                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    26                 <Property Name="UnifiedAreaRect" Value="{{0.02,0},{1,-30},{0.98,0},{1,-5}}" />
     19            <Window name="input" type="MenuWidgets/Editbox">
     20                <Property name="Text" value="" />
     21                <Property name="Font" value="Monofur-10" />
     22                <Property name="MaxTextLength" value="1073741823" />
     23                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     24                <Property name="Area" value="{{0.02,0},{1,-30},{0.98,0},{1,-5}}" />
    2725            </Window>
    2826        </Window>
  • code/branches/ogre1.9/data/gui/layouts/ControlsMenu.layout

    r6746 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/ControlsBackground" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/ControlsWindow" >
    11             <Property Name="Text" Value="Controls" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.3625,0},{0.75,0},{0.6375,0}}" />
    18             <Window Type="MenuWidgets/Button" Name="orxonox/MouseControlsButton" >
    19                 <Property Name="Text" Value="Mouse controls" />
    20                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    21                 <Property Name="UnifiedAreaRect" Value="{{0.3,0},{0.318181,0},{0.7,0},{0.5,0}}" />
    22                 <Event Name="Clicked" Function="ControlsMenu.ControlsMouseControlsButton_clicked"/>
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="ControlsBackground" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="ControlsWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Controls" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.25,0},{0.3625,0},{0.75,0},{0.6375,0}}" />
     17            <Window name="MouseControlsButton" type="MenuWidgets/Button">
     18                <Property name="Text" value="Mouse controls" />
     19                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     20                <Property name="Area" value="{{0.3,0},{0.318181,0},{0.7,0},{0.5,0}}" />
     21                <Event function="ControlsMenu.ControlsMouseControlsButton_clicked" name="Clicked" />
    2322            </Window>
    24             <Window Type="MenuWidgets/Button" Name="orxonox/KeybindingsButton" >
    25                 <Property Name="Text" Value="Keybindings" />
    26                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    27                 <Property Name="UnifiedAreaRect" Value="{{0.3,0},{0.590909,0},{0.7,0},{0.772727,0}}" />
    28                 <Event Name="Clicked" Function="ControlsMenu.ControlsKeyboardControlsButton_clicked"/>
     23            <Window name="KeybindingsButton" type="MenuWidgets/Button">
     24                <Property name="Text" value="Keybindings" />
     25                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     26                <Property name="Area" value="{{0.3,0},{0.590909,0},{0.7,0},{0.772727,0}}" />
     27                <Event function="ControlsMenu.ControlsKeyboardControlsButton_clicked" name="Clicked" />
    2928            </Window>
    3029        </Window>
    31         <Window Type="MenuWidgets/Button" Name="orxonox/ControlsBackButton" >
    32             <Property Name="Text" Value="Back" />
    33             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    34             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
    35             <Event Name="Clicked" Function="ControlsMenu.ControlsBackButton_clicked"/>
     30        <Window name="ControlsBackButton" type="MenuWidgets/Button">
     31            <Property name="Text" value="Back" />
     32            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     33            <Property name="Area" value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
     34            <Event function="ControlsMenu.ControlsBackButton_clicked" name="Clicked" />
    3635        </Window>
    3736    </Window>
  • code/branches/ogre1.9/data/gui/layouts/CreditsMenu.layout

    r9941 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="DefaultWindow" Name="orxonox/CreditsMenu/Background" >
    5         <Property Name="InheritsAlpha" Value="False" />
    6         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    7         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    8         <Window Type="MenuWidgets/StaticText" Name="orxonox/CreditsWindow" >
    9             <Property Name="Text" Value="Credits" />
    10             <Property Name="Alpha" Value="0.8" />
    11             <Property Name="InheritsAlpha" Value="False" />
    12             <Property Name="HorzFormatting" Value="HorzCentred" />
    13             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    14             <Property Name="VertFormatting" Value="TopAligned" />
    15             <Property Name="UnifiedAreaRect" Value="{{0.15,0},{0.2125,0},{0.85,0},{0.6375,0}}" />
    16             <Window Type="MenuWidgets/StaticText" Name="orxonox/CreditsMenuWrapper" >
    17                 <Property Name="InheritsAlpha" Value="False" />
    18                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    19                 <Property Name="HorzFormatting" Value="HorzCentred" />
    20                 <Property Name="VertFormatting" Value="TopAligned" />
    21                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.15,0},{0.95,0},{0.92,0}}" />
    22                 <Window Type="MenuWidgets/ScrollablePane" Name="orxonox/CreditsMenuPane" >
    23                     <Property Name="ContentArea" Value="l:0 t:0 r:0 b:0" />
    24                     <Property Name="HorzStepSize" Value="0.005" />
    25                     <Property Name="VertStepSize" Value="0.005" />
    26                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    27                     <Property Name="HorzOverlapSize" Value="0.01" />
    28                     <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{0.997,0},{0.997,0}}" />
    29                     <Property Name="VertOverlapSize" Value="0.01" />
    30                     <Property Name="HorzScrollPosition" Value="0" />
    31                     <Property Name="VertScrollPosition" Value="0" />
    32                     <Window Type="MenuWidgets/StaticText" Name="orxonox/CreditsText" >
    33                         <Property Name="TextColours" Value="FFFFFFFF" />
    34                         <Property Name="InheritsAlpha" Value="False" />
    35                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    36                         <Property Name="HorzFormatting" Value="HorzCentred" />
    37                         <Property Name="VertFormatting" Value="TopAligned" />
    38                         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    39                         <Property Name="Text">Orxonox version 0.0.3
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="Background" type="DefaultWindow">
     4        <Property name="InheritsAlpha" value="False" />
     5        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     6        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     7        <Window name="CreditsWindow" type="MenuWidgets/StaticText">
     8            <Property name="Text" value="Credits" />
     9            <Property name="Alpha" value="0.8" />
     10            <Property name="InheritsAlpha" value="False" />
     11            <Property name="HorzFormatting" value="HorzCentred" />
     12            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     13            <Property name="VertFormatting" value="TopAligned" />
     14            <Property name="Area" value="{{0.15,0},{0.2125,0},{0.85,0},{0.6375,0}}" />
     15            <Window name="CreditsMenuWrapper" type="MenuWidgets/StaticText">
     16                <Property name="InheritsAlpha" value="False" />
     17                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     18                <Property name="HorzFormatting" value="HorzCentred" />
     19                <Property name="VertFormatting" value="TopAligned" />
     20                <Property name="Area" value="{{0.05,0},{0.15,0},{0.95,0},{0.92,0}}" />
     21                <Window name="CreditsMenuPane" type="MenuWidgets/ScrollablePane">
     22                    <Property name="ContentArea" value="l:0 t:0 r:0 b:0" />
     23                    <Property name="HorzStepSize" value="0.005" />
     24                    <Property name="VertStepSize" value="0.005" />
     25                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     26                    <Property name="HorzOverlapSize" value="0.01" />
     27                    <Property name="Area" value="{{0,0},{0,0},{0.997,0},{0.997,0}}" />
     28                    <Property name="VertOverlapSize" value="0.01" />
     29                    <Property name="HorzScrollPosition" value="0" />
     30                    <Property name="VertScrollPosition" value="0" />
     31                    <Window name="CreditsText" type="MenuWidgets/StaticText">
     32                        <Property name="TextColours" value="FFFFFFFF" />
     33                        <Property name="InheritsAlpha" value="False" />
     34                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     35                        <Property name="HorzFormatting" value="HorzCentred" />
     36                        <Property name="VertFormatting" value="TopAligned" />
     37                        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     38                        <Property name="Text">Orxonox version 0.0.3
    4039   
    4140    Programming Language:  C++ - lua - tcl
     
    5554            </Window>
    5655        </Window>
    57         <Window Type="MenuWidgets/Button" Name="orxonox/CreditsBackButton" >
    58             <Property Name="Text" Value="Back" />
    59             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    60             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
    61             <Event Name="Clicked" Function="CreditsMenu.CreditsBackButton_clicked"/>
     56        <Window name="CreditsBackButton" type="MenuWidgets/Button">
     57            <Property name="Text" value="Back" />
     58            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     59            <Property name="Area" value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
     60            <Event function="CreditsMenu.CreditsBackButton_clicked" name="Clicked" />
    6261        </Window>
    6362    </Window>
  • code/branches/ogre1.9/data/gui/layouts/DecisionPopup.layout

    r6746 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="DefaultWindow" Name="orxonox/DecisionPopup_RootWindow" >
    5         <Property Name="InheritsAlpha" Value="False" />
    6         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    7         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    8         <Window Type="MenuWidgets/StaticImage" Name="orxonox/DecisionPopup_Background" >
    9             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    10             <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    11             <Property Name="Alpha" Value="0.6" />
    12             <Window Type="MenuWidgets/Button" Name="orxonox/DecisionPopup_button_yes" >
    13                 <Property Name="Text" Value="Yes" />
    14                 <Property Name="Alpha" Value="0.7" />
    15                 <Property Name="InheritsAlpha" Value="False" />
    16                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    17                 <Property Name="UnifiedAreaRect" Value="{{0.2875,0},{0.5625,0},{0.4875,0},{0.6125,0}}" />
    18                 <Event Name="Clicked" Function="DecisionPopup.button_yes"/>
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="DecisionPopup_RootWindow" type="DefaultWindow">
     4        <Property name="InheritsAlpha" value="False" />
     5        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     6        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     7        <Window name="DecisionPopup_Background" type="MenuWidgets/StaticImage">
     8            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     9            <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     10            <Property name="Alpha" value="0.6" />
     11            <Window name="DecisionPopup_button_yes" type="MenuWidgets/Button">
     12                <Property name="Text" value="Yes" />
     13                <Property name="Alpha" value="0.7" />
     14                <Property name="InheritsAlpha" value="False" />
     15                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     16                <Property name="Area" value="{{0.2875,0},{0.5625,0},{0.4875,0},{0.6125,0}}" />
     17                <Event function="DecisionPopup.button_yes" name="Clicked" />
    1918            </Window>
    20             <Window Type="MenuWidgets/Button" Name="orxonox/DecisionPopup_button_no" >
    21                 <Property Name="Text" Value="No" />
    22                 <Property Name="Alpha" Value="0.8" />
    23                 <Property Name="InheritsAlpha" Value="False" />
    24                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    25                 <Property Name="UnifiedAreaRect" Value="{{0.5125,0},{0.5625,0},{0.7125,0},{0.6125,0}}" />
    26                 <Event Name="Clicked" Function="DecisionPopup.button_no"/>
     19            <Window name="DecisionPopup_button_no" type="MenuWidgets/Button">
     20                <Property name="Text" value="No" />
     21                <Property name="Alpha" value="0.8" />
     22                <Property name="InheritsAlpha" value="False" />
     23                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     24                <Property name="Area" value="{{0.5125,0},{0.5625,0},{0.7125,0},{0.6125,0}}" />
     25                <Event function="DecisionPopup.button_no" name="Clicked" />
    2726            </Window>
    28             <Window Type="MenuWidgets/StaticText" Name="orxonox/DecisionPopup_text" >
    29                 <Property Name="Text" Value="Template text" />
    30                 <Property Name="HorzFormatting" Value="WordWrapCentred" />
    31                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    32                 <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.4375,0},{0.75,0},{0.5375,0}}" />
    33                 <Property Name="InheritsAlpha" Value="False" />
    34                 <Property Name="Alpha" Value="0.8" />
     27            <Window name="DecisionPopup_text" type="MenuWidgets/StaticText">
     28                <Property name="Text" value="Template text" />
     29                <Property name="HorzFormatting" value="WordWrapCentred" />
     30                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     31                <Property name="Area" value="{{0.25,0},{0.4375,0},{0.75,0},{0.5375,0}}" />
     32                <Property name="InheritsAlpha" value="False" />
     33                <Property name="Alpha" value="0.8" />
    3534            </Window>
    3635        </Window>
  • code/branches/ogre1.9/data/gui/layouts/DockingDialog.layout

    r8706 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/Docking/Background" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/Docking/Title" >
    11             <Property Name="Text" Value="Docking" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.2875,0},{0.75,0},{0.7,0}}" />
    18             <Window Type="MenuWidgets/Listbox" Name="orxonox/Docking/Docks" >
    19                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    20                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.15,0},{0.95,0},{0.85,0}}" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="Background" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="Title" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Docking" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.25,0},{0.2875,0},{0.75,0},{0.7,0}}" />
     17            <Window name="Docks" type="MenuWidgets/Listbox">
     18                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     19                <Property name="Area" value="{{0.05,0},{0.15,0},{0.95,0},{0.85,0}}" />
    2120            </Window>
    2221        </Window>
    23         <Window Type="MenuWidgets/Button" Name="orxonox/Docking/DockButton" >
    24             <Property Name="Text" Value="Dock" />
    25             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    26             <Property Name="UnifiedAreaRect" Value="{{0.2875,0},{0.725,0},{0.4875,0},{0.775,0}}" />
    27             <Event Name="Clicked" Function="DockingDialog.dockButton_clicked"/>
     22        <Window name="DockButton" type="MenuWidgets/Button">
     23            <Property name="Text" value="Dock" />
     24            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     25            <Property name="Area" value="{{0.2875,0},{0.725,0},{0.4875,0},{0.775,0}}" />
     26            <Event function="DockingDialog.dockButton_clicked" name="Clicked" />
    2827        </Window>
    29         <Window Type="MenuWidgets/Button" Name="orxonox/Docking/CancelButton" >
    30             <Property Name="Text" Value="Cancel" />
    31             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    32             <Property Name="UnifiedAreaRect" Value="{{0.5125,0},{0.725,0},{0.7125,0},{0.775,0}}" />
    33             <Event Name="Clicked" Function="DockingDialog.cancelButton_clicked"/>
     28        <Window name="CancelButton" type="MenuWidgets/Button">
     29            <Property name="Text" value="Cancel" />
     30            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     31            <Property name="Area" value="{{0.5125,0},{0.725,0},{0.7125,0},{0.775,0}}" />
     32            <Event function="DockingDialog.cancelButton_clicked" name="Clicked" />
    3433        </Window>
    3534    </Window>
  • code/branches/ogre1.9/data/gui/layouts/GUILayout.xsd

    r9348 r11211  
    22<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
    33
    4     <xsd:element name="GUILayout" type="GUILayoutType"/>
     4        <xsd:element name="GUILayout" type="GUILayoutType"/>
     5       
     6        <xsd:complexType name="GUILayoutType">
     7                <xsd:sequence>
     8                        <xsd:element name="Window" type="WindowType" />
     9                </xsd:sequence>
     10                <xsd:attribute name="version" type="xsd:nonNegativeInteger" use="optional" default="0" />
     11        </xsd:complexType>
     12       
     13        <xsd:complexType name="WindowType">
     14                <xsd:sequence>
     15                        <xsd:element name="LayoutImport" type="LayoutImportType"  minOccurs="0" maxOccurs="unbounded" />
     16                        <xsd:element name="Property" type="PropertyType"  minOccurs="0" maxOccurs="unbounded" />
     17                        <xsd:element name="Event" type="EventType"  minOccurs="0" maxOccurs="unbounded" />
     18                        <xsd:choice minOccurs="0" maxOccurs="unbounded">
     19                                <xsd:element name="Window" type="WindowType" />
     20                                <xsd:element name="AutoWindow" type="AutoWindowType" />
     21                        </xsd:choice>
     22                        <xsd:element name="Property" type="PropertyType"  minOccurs="0" maxOccurs="unbounded" />
     23                        <xsd:element name="UserString" type="UserStringType"  minOccurs="0" maxOccurs="unbounded" />
     24                </xsd:sequence>
     25                <xsd:attribute name="type" type="xsd:string" use="required"/>
     26                <xsd:attribute name="name" type="xsd:string" use="optional" default="" />
     27        </xsd:complexType>
    528
    6     <xsd:complexType name="GUILayoutType">
    7         <xsd:sequence>
    8             <xsd:element name="Window" type="WindowType" />
    9         </xsd:sequence>
    10         <xsd:attribute name="Parent" type="xsd:string" use="optional" default=""/>
    11     </xsd:complexType>
     29        <xsd:complexType name="AutoWindowType">
     30                <xsd:sequence>
     31                        <xsd:element name="LayoutImport" type="LayoutImportType"  minOccurs="0" maxOccurs="unbounded" />
     32                        <xsd:element name="Property" type="PropertyType"  minOccurs="0" maxOccurs="unbounded" />
     33                        <xsd:element name="Event" type="EventType"  minOccurs="0" maxOccurs="unbounded" />
     34                        <xsd:choice minOccurs="0" maxOccurs="unbounded">
     35                                <xsd:element name="Window" type="WindowType" />
     36                                <xsd:element name="AutoWindow" type="AutoWindowType" />
     37                        </xsd:choice>
     38                        <xsd:element name="Property" type="PropertyType"  minOccurs="0" maxOccurs="unbounded" />
     39                </xsd:sequence>
     40                <xsd:attribute name="namePath" type="xsd:string" use="required"/>
     41        </xsd:complexType>
    1242
    13     <xsd:complexType name="WindowType">
    14         <xsd:sequence>
    15             <xsd:element name="LayoutImport" type="LayoutImportType"  minOccurs="0" maxOccurs="unbounded" />
    16             <xsd:element name="Property" type="PropertyType"  minOccurs="0" maxOccurs="unbounded" />
    17             <xsd:element name="Event" type="EventType"  minOccurs="0" maxOccurs="unbounded" />
    18             <xsd:choice minOccurs="0" maxOccurs="unbounded">
    19                 <xsd:element name="Window" type="WindowType" />
    20                 <xsd:element name="AutoWindow" type="AutoWindowType" />
    21             </xsd:choice>
    22             <xsd:element name="Property" type="PropertyType"  minOccurs="0" maxOccurs="unbounded" />
    23         </xsd:sequence>
    24         <xsd:attribute name="Type" type="xsd:string" use="required"/>
    25         <xsd:attribute name="Name" type="xsd:string" use="optional" default="" />
    26     </xsd:complexType>
     43        <xsd:complexType name="PropertyType">
     44                <xsd:simpleContent>
     45                        <xsd:extension base="xsd:string">
     46                                <xsd:attribute name="name" type="xsd:string" use="required"/>
     47                                <xsd:attribute name="value" type="xsd:string" use="optional"/>
     48                        </xsd:extension>
     49                </xsd:simpleContent>
     50        </xsd:complexType>
     51       
     52        <xsd:complexType name="UserStringType">
     53                <xsd:simpleContent>
     54                        <xsd:extension base="xsd:string">
     55                                <xsd:attribute name="name" type="xsd:string" use="required"/>
     56                                <xsd:attribute name="value" type="xsd:string" use="optional"/>
     57                        </xsd:extension>
     58                </xsd:simpleContent>
     59        </xsd:complexType>
     60       
     61        <xsd:complexType name="LayoutImportType">
     62                <xsd:attribute name="filename" type="xsd:string" use="required"/>
     63                <xsd:attribute name="resourceGroup" type="xsd:string" use="optional"  default="" />
     64        </xsd:complexType>
    2765
    28     <xsd:complexType name="AutoWindowType">
    29         <xsd:sequence>
    30             <xsd:element name="LayoutImport" type="LayoutImportType"  minOccurs="0" maxOccurs="unbounded" />
    31             <xsd:element name="Property" type="PropertyType"  minOccurs="0" maxOccurs="unbounded" />
    32             <xsd:element name="Event" type="EventType"  minOccurs="0" maxOccurs="unbounded" />
    33             <xsd:choice minOccurs="0" maxOccurs="unbounded">
    34                 <xsd:element name="Window" type="WindowType" />
    35                 <xsd:element name="AutoWindow" type="AutoWindowType" />
    36             </xsd:choice>
    37             <xsd:element name="Property" type="PropertyType"  minOccurs="0" maxOccurs="unbounded" />
    38         </xsd:sequence>
    39         <xsd:attribute name="NameSuffix" type="xsd:string" use="required"/>
    40     </xsd:complexType>
    41 
    42     <xsd:complexType name="PropertyType">
    43         <xsd:simpleContent>
    44             <xsd:extension base="xsd:string">
    45                 <xsd:attribute name="Name" type="xsd:string" use="required"/>
    46                 <xsd:attribute name="Value" type="xsd:string" use="optional"/>
    47             </xsd:extension>
    48         </xsd:simpleContent>
    49     </xsd:complexType>
    50 
    51     <xsd:complexType name="LayoutImportType">
    52         <xsd:attribute name="Filename" type="xsd:string" use="required"/>
    53         <xsd:attribute name="Prefix" type="xsd:string" use="optional" default="" />
    54         <xsd:attribute name="ResourceGroup" type="xsd:string" use="optional"  default="" />
    55     </xsd:complexType>
    56 
    57     <xsd:complexType name="EventType">
    58         <xsd:attribute name="Name" type="xsd:string" use="required"/>
    59         <xsd:attribute name="Function" type="xsd:string" use="required"/>
    60     </xsd:complexType>
     66        <xsd:complexType name="EventType">
     67                <xsd:attribute name="name" type="xsd:string" use="required"/>
     68                <xsd:attribute name="function" type="xsd:string" use="required"/>
     69        </xsd:complexType>
    6170
    6271</xsd:schema>
  • code/branches/ogre1.9/data/gui/layouts/GameplayMenu.layout

    r6746 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/GameplayBackground" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/GameplayWindow" >
    11             <Property Name="Text" Value="Gameplay" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.3625,0},{0.75,0},{0.6375,0}}" />
    18             <Window Type="MenuWidgets/StaticText" Name="orxonox/Difficulty" >
    19                 <Property Name="Text" Value="Difficulty" />
    20                 <Property Name="InheritsAlpha" Value="False" />
    21                 <Property Name="HorzFormatting" Value="HorzCentred" />
    22                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    23                 <Property Name="VertFormatting" Value="TopAligned" />
    24                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.2,0},{0.475,0},{0.9,0}}" />
    25                 <Window Type="MenuWidgets/RadioButton" Name="orxonox/DifficultyEasyButton" >
    26                     <Property Name="Text" Value="Easy" />
    27                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    28                     <Property Name="UnifiedAreaRect" Value="{{0.325,0},{0.325,0},{0.675,0},{0.45,0}}" />
    29                     <Event Name="SelectStateChanged" Function="GameplayMenu.GameplayDifficultyEasyButton_clicked"/>
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="GameplayBackground" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="GameplayWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Gameplay" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.25,0},{0.3625,0},{0.75,0},{0.6375,0}}" />
     17            <Window name="Difficulty" type="MenuWidgets/StaticText">
     18                <Property name="Text" value="Difficulty" />
     19                <Property name="InheritsAlpha" value="False" />
     20                <Property name="HorzFormatting" value="HorzCentred" />
     21                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     22                <Property name="VertFormatting" value="TopAligned" />
     23                <Property name="Area" value="{{0.05,0},{0.2,0},{0.475,0},{0.9,0}}" />
     24                <Window name="DifficultyEasyButton" type="MenuWidgets/RadioButton">
     25                    <Property name="Text" value="Easy" />
     26                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     27                    <Property name="Area" value="{{0.325,0},{0.325,0},{0.675,0},{0.45,0}}" />
     28                    <Event function="GameplayMenu.GameplayDifficultyEasyButton_clicked" name="SelectStateChanged" />
    3029                </Window>
    31                 <Window Type="MenuWidgets/RadioButton" Name="orxonox/DifficultyNormalButton" >
    32                     <Property Name="Text" Value="Normal" />
    33                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    34                     <Property Name="UnifiedAreaRect" Value="{{0.325,0},{0.525,0},{0.675,0},{0.65,0}}" />
    35                     <Event Name="SelectStateChanged" Function="GameplayMenu.GameplayDifficultyNormalButton_clicked"/>
     30                <Window name="DifficultyNormalButton" type="MenuWidgets/RadioButton">
     31                    <Property name="Text" value="Normal" />
     32                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     33                    <Property name="Area" value="{{0.325,0},{0.525,0},{0.675,0},{0.65,0}}" />
     34                    <Event function="GameplayMenu.GameplayDifficultyNormalButton_clicked" name="SelectStateChanged" />
    3635                </Window>
    37                 <Window Type="MenuWidgets/RadioButton" Name="orxonox/DifficultyHardButton" >
    38                     <Property Name="Text" Value="Hard" />
    39                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    40                     <Property Name="UnifiedAreaRect" Value="{{0.325,0},{0.725,0},{0.675,0},{0.85,0}}" />
    41                     <Event Name="SelectStateChanged" Function="GameplayMenu.GameplayDifficultyHardButton_clicked"/>
     36                <Window name="DifficultyHardButton" type="MenuWidgets/RadioButton">
     37                    <Property name="Text" value="Hard" />
     38                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     39                    <Property name="Area" value="{{0.325,0},{0.725,0},{0.675,0},{0.85,0}}" />
     40                    <Event function="GameplayMenu.GameplayDifficultyHardButton_clicked" name="SelectStateChanged" />
    4241                </Window>
    4342            </Window>
    44             <Window Type="MenuWidgets/StaticText" Name="orxonox/Theme" >
    45                 <Property Name="Text" Value="Theme" />
    46                 <Property Name="InheritsAlpha" Value="False" />
    47                 <Property Name="HorzFormatting" Value="HorzCentred" />
    48                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    49                 <Property Name="VertFormatting" Value="TopAligned" />
    50                 <Property Name="UnifiedAreaRect" Value="{{0.525,0},{0.2,0},{0.95,0},{0.9,0}}" />
    51                 <Window Type="MenuWidgets/Combobox" Name="orxonox/ThemeCombobox" >
    52                     <Property Name="AlwaysOnTop" Value="True" />
    53                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    54                     <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.21,0},{0.95,0},{0.9,0}}" />
    55                     <Property Name="MaxEditTextLength" Value="1073741823" />
    56                     <Property Name="ReadOnly" Value="True" />
    57                     <Event Name="ListSelectionAccepted" Function="GameplayMenu.GameplayThemeCombobox_changed" />
     43            <Window name="Theme" type="MenuWidgets/StaticText">
     44                <Property name="Text" value="Theme" />
     45                <Property name="InheritsAlpha" value="False" />
     46                <Property name="HorzFormatting" value="HorzCentred" />
     47                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     48                <Property name="VertFormatting" value="TopAligned" />
     49                <Property name="Area" value="{{0.525,0},{0.2,0},{0.95,0},{0.9,0}}" />
     50                <Window name="ThemeCombobox" type="MenuWidgets/Combobox">
     51                    <Property name="AlwaysOnTop" value="True" />
     52                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     53                    <Property name="Area" value="{{0.05,0},{0.21,0},{0.95,0},{0.9,0}}" />
     54                    <Property name="MaxEditTextLength" value="1073741823" />
     55                    <Property name="ReadOnly" value="True" />
     56                    <Event function="GameplayMenu.GameplayThemeCombobox_changed" name="ListSelectionAccepted" />
    5857                </Window>
    5958            </Window>
    6059        </Window>
    61         <Window Type="MenuWidgets/Button" Name="orxonox/GameplayBackButton" >
    62             <Property Name="Text" Value="Back" />
    63             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    64             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
    65             <Event Name="Clicked" Function="GameplayMenu.GameplayBackButton_clicked"/>
     60        <Window name="GameplayBackButton" type="MenuWidgets/Button">
     61            <Property name="Text" value="Back" />
     62            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     63            <Property name="Area" value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
     64            <Event function="GameplayMenu.GameplayBackButton_clicked" name="Clicked" />
    6665        </Window>
    6766    </Window>
  • code/branches/ogre1.9/data/gui/layouts/GraphicsMenu.layout

    r8079 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/GraphicsBackground" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/GraphicsWindow" >
    11             <Property Name="Text" Value="Graphics" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.15,0},{0.75,0},{0.6375,0}}" />
    18             <Window Type="MenuWidgets/TabControl" Name="orxonox/GraphicsTabControl" >
    19                 <Property Name="TabHeight" Value="{0,26.4388}" />
    20                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    21                 <Property Name="TabPanePosition" Value="Top" />
    22                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.1,0},{0.95,0},{0.925,0}}" />
    23                 <Window Type="DefaultWindow" Name="orxonox/Display" >
    24                     <Property Name="Text" Value="Display" />
    25                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    26                     <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    27                     <Window Type="MenuWidgets/StaticText" Name="orxonox/Display/Resolution" >
    28                         <Property Name="Text" Value="Resolution" />
    29                         <Property Name="HorzFormatting" Value="HorzCentred" />
    30                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    31                         <Property Name="VertFormatting" Value="TopAligned" />
    32                         <Property Name="UnifiedAreaRect" Value="{{0.025,0},{0.035,0},{0.4875,0},{0.96,0}}" />
    33                         <Window Type="MenuWidgets/Checkbox" Name="orxonox/Display/Resolution/Fullscreen" >
    34                             <Property Name="Text" Value="Fullscreen" />
    35                             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    36                             <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.15,0},{0.95,0},{0.27,0}}" />
    37                             <Event Name="CheckStateChanged" Function="GraphicsMenu.callback_FullscreenCheckbox_CheckStateChanged" />
    38                         </Window>
    39                         <Window Type="MenuWidgets/Combobox" Name="orxonox/Display/Resolution/Combobox" >
    40                             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    41                             <Property Name="ClippedByParent" Value="False" />
    42                             <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.3,0},{0.95,0},{1.2,0}}" />
    43                             <Property Name="MaxEditTextLength" Value="1073741823" />
    44                             <Event Name="ListSelectionAccepted" Function="GraphicsMenu.callback_ResolutionCombobox_ListSelectionAccepted" />
    45                         </Window>
    46                         <Window Type="MenuWidgets/Editbox" Name="orxonox/Display/Resolution/EditboxWidth" >
    47                             <Property Name="MaxTextLength" Value="1073741823" />
    48                             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    49                             <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.45,0},{0.45,0},{0.57,0}}" />
    50                             <Event Name="TextChanged" Function="GraphicsMenu.callback_ResolutionEditboxWidth_TextChanged" />
    51                         </Window>
    52                         <Window Type="MenuWidgets/Editbox" Name="orxonox/Display/Resolution/EditboxHeight" >
    53                             <Property Name="MaxTextLength" Value="1073741823" />
    54                             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    55                             <Property Name="UnifiedAreaRect" Value="{{0.55,0},{0.45,0},{0.95,0},{0.57,0}}" />
    56                             <Event Name="TextChanged" Function="GraphicsMenu.callback_ResolutionEditboxHeight_TextChanged" />
    57                         </Window>
    58                         <Window Type="MenuWidgets/StaticText" Name="orxonox/Display/Resolution/x" >
    59                             <Property Name="Text" Value="x" />
    60                             <Property Name="FrameEnabled" Value="False" />
    61                             <Property Name="HorzFormatting" Value="HorzCentred" />
    62                             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    63                             <Property Name="UnifiedAreaRect" Value="{{0.45,0},{0.45,0},{0.55,0},{0.57,0}}" />
    64                             <Property Name="BackgroundEnabled" Value="False" />
    65                         </Window>
    66                         <Window Type="MenuWidgets/Button" Name="orxonox/Display/Resolution/Apply" >
    67                             <Property Name="Text" Value="Apply" />
    68                             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    69                             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.61,0},{0.75,0},{0.73,0}}" />
    70                             <Event Name="Clicked" Function="GraphicsMenu.callback_Apply_Clicked" />
    71                         </Window>
    72                         <Window Type="MenuWidgets/StaticText" Name="orxonox/Display/Resolution/AspectRatioLabel" >
    73                             <Property Name="Text" Value="Aspect Ratio" />
    74                             <Property Name="FrameEnabled" Value="False" />
    75                             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    76                             <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.825,0},{0.6,0},{0.95,0}}" />
    77                             <Property Name="BackgroundEnabled" Value="False" />
    78                         </Window>
    79                         <Window Type="MenuWidgets/Editbox" Name="orxonox/Display/Resolution/AspectRatio" >
    80                             <Property Name="Text" Value="1" />
    81                             <Property Name="MaxTextLength" Value="1073741823" />
    82                             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    83                             <Property Name="UnifiedAreaRect" Value="{{0.65,0},{0.825,0},{0.95,0},{0.95,0}}" />
    84                         </Window>
    85                     </Window>
    86                     <Window Type="MenuWidgets/StaticText" Name="orxonox/Display/Theme" >
    87                         <Property Name="Text" Value="Theme" />
    88                         <Property Name="HorzFormatting" Value="HorzCentred" />
    89                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    90                         <Property Name="VertFormatting" Value="TopAligned" />
    91                         <Property Name="UnifiedAreaRect" Value="{{0.5125,0},{0.035,0},{0.975,0},{0.32,0}}" />
    92                         <Window Type="MenuWidgets/Combobox" Name="orxonox/Display/Theme/Combobox" >
    93                             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    94                             <Property Name="ClippedByParent" Value="False" />
    95                             <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.5,0},{0.95,0},{1.6,0}}" />
    96                             <Property Name="MaxEditTextLength" Value="1073741823" />
    97                             <Event Name="ListSelectionAccepted" Function="GraphicsMenu.callback_ThemeCombobox_ListSelectionAccepted" />
    98                         </Window>
    99                     </Window>
    100                     <Window Type="MenuWidgets/StaticText" Name="orxonox/Display/More" >
    101                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    102                         <Property Name="UnifiedAreaRect" Value="{{0.5125,0},{0.37,0},{0.975,0},{0.7,0}}" />
    103                         <Window Type="MenuWidgets/Checkbox" Name="orxonox/Display/More/VSync" >
    104                             <Property Name="Text" Value="VSync" />
    105                             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    106                             <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.1,0},{0.95,0},{0.45,0}}" />
    107                             <Event Name="CheckStateChanged" Function="GraphicsMenu.callback_VSyncCheckbox_CheckStateChanged" />
    108                         </Window>
    109                         <Window Type="MenuWidgets/StaticText" Name="orxonox/Display/More/FSAALabel" >
    110                             <Property Name="Text" Value="FSAA" />
    111                             <Property Name="FrameEnabled" Value="False" />
    112                             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    113                             <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.55,0},{0.3,0},{0.9,0}}" />
    114                             <Property Name="BackgroundEnabled" Value="False" />
    115                         </Window>
    116                         <Window Type="MenuWidgets/Combobox" Name="orxonox/Display/More/FSAA" >
    117                             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    118                             <Property Name="ClippedByParent" Value="False" />
    119                             <Property Name="UnifiedAreaRect" Value="{{0.3,0},{0.55,0},{0.95,0},{2.1,0}}" />
    120                             <Property Name="MaxEditTextLength" Value="1073741823" />
    121                             <Event Name="ListSelectionAccepted" Function="GraphicsMenu.callback_FSAACombobox_ListSelectionAccepted" />
    122                         </Window>
    123                     </Window>
    124                     <Window Type="MenuWidgets/StaticText" Name="orxonox/Display/Notice" >
    125                         <Property Name="Font" Value="BlueHighway-12" />
    126                         <Property Name="Text" >Changing the theme, FSAA,
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="GraphicsBackground" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="GraphicsWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Graphics" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.25,0},{0.15,0},{0.75,0},{0.6375,0}}" />
     17            <Window name="GraphicsTabControl" type="MenuWidgets/TabControl">
     18                <Property name="TabHeight" value="{0,26.4388}" />
     19                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     20                <Property name="TabPanePosition" value="Top" />
     21                <Property name="Area" value="{{0.05,0},{0.1,0},{0.95,0},{0.925,0}}" />
     22                <Window name="Display" type="DefaultWindow">
     23                    <Property name="Text" value="Display" />
     24                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     25                    <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     26                    <Window name="Resolution" type="MenuWidgets/StaticText">
     27                        <Property name="Text" value="Resolution" />
     28                        <Property name="HorzFormatting" value="HorzCentred" />
     29                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     30                        <Property name="VertFormatting" value="TopAligned" />
     31                        <Property name="Area" value="{{0.025,0},{0.035,0},{0.4875,0},{0.96,0}}" />
     32                        <Window name="Fullscreen" type="MenuWidgets/Checkbox">
     33                            <Property name="Text" value="Fullscreen" />
     34                            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     35                            <Property name="Area" value="{{0.05,0},{0.15,0},{0.95,0},{0.27,0}}" />
     36                            <Event function="GraphicsMenu.callback_FullscreenCheckbox_CheckStateChanged" name="CheckStateChanged" />
     37                        </Window>
     38                        <Window name="Combobox" type="MenuWidgets/Combobox">
     39                            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     40                            <Property name="ClippedByParent" value="False" />
     41                            <Property name="Area" value="{{0.05,0},{0.3,0},{0.95,0},{1.2,0}}" />
     42                            <Property name="MaxEditTextLength" value="1073741823" />
     43                            <Event function="GraphicsMenu.callback_ResolutionCombobox_ListSelectionAccepted" name="ListSelectionAccepted" />
     44                        </Window>
     45                        <Window name="EditboxWidth" type="MenuWidgets/Editbox">
     46                            <Property name="MaxTextLength" value="1073741823" />
     47                            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     48                            <Property name="Area" value="{{0.05,0},{0.45,0},{0.45,0},{0.57,0}}" />
     49                            <Event function="GraphicsMenu.callback_ResolutionEditboxWidth_TextChanged" name="TextChanged" />
     50                        </Window>
     51                        <Window name="EditboxHeight" type="MenuWidgets/Editbox">
     52                            <Property name="MaxTextLength" value="1073741823" />
     53                            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     54                            <Property name="Area" value="{{0.55,0},{0.45,0},{0.95,0},{0.57,0}}" />
     55                            <Event function="GraphicsMenu.callback_ResolutionEditboxHeight_TextChanged" name="TextChanged" />
     56                        </Window>
     57                        <Window name="x" type="MenuWidgets/StaticText">
     58                            <Property name="Text" value="x" />
     59                            <Property name="FrameEnabled" value="False" />
     60                            <Property name="HorzFormatting" value="HorzCentred" />
     61                            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     62                            <Property name="Area" value="{{0.45,0},{0.45,0},{0.55,0},{0.57,0}}" />
     63                            <Property name="BackgroundEnabled" value="False" />
     64                        </Window>
     65                        <Window name="Apply" type="MenuWidgets/Button">
     66                            <Property name="Text" value="Apply" />
     67                            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     68                            <Property name="Area" value="{{0.25,0},{0.61,0},{0.75,0},{0.73,0}}" />
     69                            <Event function="GraphicsMenu.callback_Apply_Clicked" name="Clicked" />
     70                        </Window>
     71                        <Window name="AspectRatioLabel" type="MenuWidgets/StaticText">
     72                            <Property name="Text" value="Aspect Ratio" />
     73                            <Property name="FrameEnabled" value="False" />
     74                            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     75                            <Property name="Area" value="{{0.05,0},{0.825,0},{0.6,0},{0.95,0}}" />
     76                            <Property name="BackgroundEnabled" value="False" />
     77                        </Window>
     78                        <Window name="AspectRatio" type="MenuWidgets/Editbox">
     79                            <Property name="Text" value="1" />
     80                            <Property name="MaxTextLength" value="1073741823" />
     81                            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     82                            <Property name="Area" value="{{0.65,0},{0.825,0},{0.95,0},{0.95,0}}" />
     83                        </Window>
     84                    </Window>
     85                    <Window name="Theme" type="MenuWidgets/StaticText">
     86                        <Property name="Text" value="Theme" />
     87                        <Property name="HorzFormatting" value="HorzCentred" />
     88                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     89                        <Property name="VertFormatting" value="TopAligned" />
     90                        <Property name="Area" value="{{0.5125,0},{0.035,0},{0.975,0},{0.32,0}}" />
     91                        <Window name="Combobox" type="MenuWidgets/Combobox">
     92                            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     93                            <Property name="ClippedByParent" value="False" />
     94                            <Property name="Area" value="{{0.05,0},{0.5,0},{0.95,0},{1.6,0}}" />
     95                            <Property name="MaxEditTextLength" value="1073741823" />
     96                            <Event function="GraphicsMenu.callback_ThemeCombobox_ListSelectionAccepted" name="ListSelectionAccepted" />
     97                        </Window>
     98                    </Window>
     99                    <Window name="More" type="MenuWidgets/StaticText">
     100                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     101                        <Property name="Area" value="{{0.5125,0},{0.37,0},{0.975,0},{0.7,0}}" />
     102                        <Window name="VSync" type="MenuWidgets/Checkbox">
     103                            <Property name="Text" value="VSync" />
     104                            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     105                            <Property name="Area" value="{{0.05,0},{0.1,0},{0.95,0},{0.45,0}}" />
     106                            <Event function="GraphicsMenu.callback_VSyncCheckbox_CheckStateChanged" name="CheckStateChanged" />
     107                        </Window>
     108                        <Window name="FSAALabel" type="MenuWidgets/StaticText">
     109                            <Property name="Text" value="FSAA" />
     110                            <Property name="FrameEnabled" value="False" />
     111                            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     112                            <Property name="Area" value="{{0.05,0},{0.55,0},{0.3,0},{0.9,0}}" />
     113                            <Property name="BackgroundEnabled" value="False" />
     114                        </Window>
     115                        <Window name="FSAA" type="MenuWidgets/Combobox">
     116                            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     117                            <Property name="ClippedByParent" value="False" />
     118                            <Property name="Area" value="{{0.3,0},{0.55,0},{0.95,0},{2.1,0}}" />
     119                            <Property name="MaxEditTextLength" value="1073741823" />
     120                            <Event function="GraphicsMenu.callback_FSAACombobox_ListSelectionAccepted" name="ListSelectionAccepted" />
     121                        </Window>
     122                    </Window>
     123                    <Window name="Notice" type="MenuWidgets/StaticText">
     124                        <Property name="Font" value="BlueHighway-12" />
     125                        <Property name="Text">Changing the theme, FSAA,
    127126or VSync requires a restart</Property>
    128                         <Property Name="HorzFormatting" Value="HorzCentred" />
    129                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    130                         <Property Name="UnifiedAreaRect" Value="{{0.5125,0},{0.75,0},{0.975,0},{0.96,0}}" />
    131                     </Window>
    132                     <Window Type="MenuWidgets/StaticText" Name="orxonox/Display/NoticeRed" >
    133                         <Property Name="Font" Value="BlueHighway-12" />
    134                         <Property Name="Text" >Restart required</Property>
    135                         <Property Name="TextColours" Value="tl:FFFF0000 tr:FFFF8888 bl:FFFF8888 br:FFFFFFFF" />
    136                         <Property Name="HorzFormatting" Value="HorzCentred" />
    137                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    138                         <Property Name="UnifiedAreaRect" Value="{{0.5125,0},{0.75,0},{0.975,0},{0.96,0}}" />
     127                        <Property name="HorzFormatting" value="HorzCentred" />
     128                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     129                        <Property name="Area" value="{{0.5125,0},{0.75,0},{0.975,0},{0.96,0}}" />
     130                    </Window>
     131                    <Window name="NoticeRed" type="MenuWidgets/StaticText">
     132                        <Property name="Font" value="BlueHighway-12" />
     133                        <Property name="Text">Restart required</Property>
     134                        <Property name="TextColours" value="tl:FFFF0000 tr:FFFF8888 bl:FFFF8888 br:FFFFFFFF" />
     135                        <Property name="HorzFormatting" value="HorzCentred" />
     136                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     137                        <Property name="Area" value="{{0.5125,0},{0.75,0},{0.975,0},{0.96,0}}" />
    139138                    </Window>
    140139                </Window>
    141                 <Window Type="DefaultWindow" Name="orxonox/Settings" >
    142                     <Property Name="Text" Value="Settings" />
    143                     <Property Name="Visible" Value="False" />
    144                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    145                     <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    146                     <Window Type="MenuWidgets/StaticText" Name="orxonox/Settings/FovLabel" >
    147                         <Property Name="Text" Value="Vertical field of view (FOV)" />
    148                         <Property Name="FrameEnabled" Value="False" />
    149                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    150                         <Property Name="UnifiedAreaRect" Value="{{0.035,0},{0.05,0},{0.5,0},{0.12,0}}" />
    151                         <Property Name="BackgroundEnabled" Value="False" />
    152                     </Window>
    153                     <Window Type="MenuWidgets/StaticText" Name="orxonox/Settings/FpsLimitLabel" >
    154                         <Property Name="Text" Value="Maximal frame rate" />
    155                         <Property Name="FrameEnabled" Value="False" />
    156                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    157                         <Property Name="UnifiedAreaRect" Value="{{0.035,0},{0.18,0},{0.5,0},{0.25,0}}" />
    158                         <Property Name="BackgroundEnabled" Value="False" />
    159                     </Window>
    160                     <Window Type="MenuWidgets/StaticText" Name="orxonox/Settings/ParticleLodLabel" >
    161                         <Property Name="Text" Value="Particle detail level" />
    162                         <Property Name="FrameEnabled" Value="False" />
    163                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    164                         <Property Name="UnifiedAreaRect" Value="{{0.035,0},{0.31,0},{0.5,0},{0.38,0}}" />
    165                         <Property Name="BackgroundEnabled" Value="False" />
    166                     </Window>
    167                     <Window Type="MenuWidgets/Editbox" Name="orxonox/Settings/Fov" >
    168                         <Property Name="MaxTextLength" Value="1073741823" />
    169                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    170                         <Property Name="UnifiedAreaRect" Value="{{0.5,0},{0.03,0},{0.65,0},{0.14,0}}" />
    171                     </Window>
    172                     <Window Type="MenuWidgets/Editbox" Name="orxonox/Settings/FpsLimit" >
    173                         <Property Name="MaxTextLength" Value="1073741823" />
    174                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    175                         <Property Name="UnifiedAreaRect" Value="{{0.5,0},{0.16,0},{0.65,0},{0.27,0}}" />
    176                     </Window>
    177                     <Window Type="MenuWidgets/Combobox" Name="orxonox/Settings/ParticleLodCombobox" >
    178                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    179                         <Property Name="ClippedByParent" Value="False" />
    180                         <Property Name="UnifiedAreaRect" Value="{{0.5,0},{0.29,0},{0.7,0},{0.725,0}}" />
    181                         <Property Name="MaxEditTextLength" Value="1073741823" />
    182                     </Window>
    183                     <Window Type="MenuWidgets/Checkbox" Name="orxonox/Settings/MeshLodCheckbox" >
    184                         <Property Name="Text" Value="Enable mesh LOD" />
    185                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    186                         <Property Name="UnifiedAreaRect" Value="{{0.035,0},{0.44,0},{0.5,0},{0.51,0}}" />
    187                     </Window>
    188                     <Window Type="MenuWidgets/Checkbox" Name="orxonox/Settings/MotionBlurCheckbox" >
    189                         <Property Name="Text" Value="Enable motion blur" />
    190                         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    191                         <Property Name="UnifiedAreaRect" Value="{{0.035,0},{0.57,0},{0.5,0},{0.64,0}}" />
     140                <Window name="Settings" type="DefaultWindow">
     141                    <Property name="Text" value="Settings" />
     142                    <Property name="Visible" value="False" />
     143                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     144                    <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     145                    <Window name="FovLabel" type="MenuWidgets/StaticText">
     146                        <Property name="Text" value="Vertical field of view (FOV)" />
     147                        <Property name="FrameEnabled" value="False" />
     148                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     149                        <Property name="Area" value="{{0.035,0},{0.05,0},{0.5,0},{0.12,0}}" />
     150                        <Property name="BackgroundEnabled" value="False" />
     151                    </Window>
     152                    <Window name="FpsLimitLabel" type="MenuWidgets/StaticText">
     153                        <Property name="Text" value="Maximal frame rate" />
     154                        <Property name="FrameEnabled" value="False" />
     155                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     156                        <Property name="Area" value="{{0.035,0},{0.18,0},{0.5,0},{0.25,0}}" />
     157                        <Property name="BackgroundEnabled" value="False" />
     158                    </Window>
     159                    <Window name="ParticleLodLabel" type="MenuWidgets/StaticText">
     160                        <Property name="Text" value="Particle detail level" />
     161                        <Property name="FrameEnabled" value="False" />
     162                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     163                        <Property name="Area" value="{{0.035,0},{0.31,0},{0.5,0},{0.38,0}}" />
     164                        <Property name="BackgroundEnabled" value="False" />
     165                    </Window>
     166                    <Window name="Fov" type="MenuWidgets/Editbox">
     167                        <Property name="MaxTextLength" value="1073741823" />
     168                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     169                        <Property name="Area" value="{{0.5,0},{0.03,0},{0.65,0},{0.14,0}}" />
     170                    </Window>
     171                    <Window name="FpsLimit" type="MenuWidgets/Editbox">
     172                        <Property name="MaxTextLength" value="1073741823" />
     173                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     174                        <Property name="Area" value="{{0.5,0},{0.16,0},{0.65,0},{0.27,0}}" />
     175                    </Window>
     176                    <Window name="ParticleLodCombobox" type="MenuWidgets/Combobox">
     177                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     178                        <Property name="ClippedByParent" value="False" />
     179                        <Property name="Area" value="{{0.5,0},{0.29,0},{0.7,0},{0.725,0}}" />
     180                        <Property name="MaxEditTextLength" value="1073741823" />
     181                    </Window>
     182                    <Window name="MeshLodCheckbox" type="MenuWidgets/Checkbox">
     183                        <Property name="Text" value="Enable mesh LOD" />
     184                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     185                        <Property name="Area" value="{{0.035,0},{0.44,0},{0.5,0},{0.51,0}}" />
     186                    </Window>
     187                    <Window name="MotionBlurCheckbox" type="MenuWidgets/Checkbox">
     188                        <Property name="Text" value="Enable motion blur" />
     189                        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     190                        <Property name="Area" value="{{0.035,0},{0.57,0},{0.5,0},{0.64,0}}" />
    192191                    </Window>
    193192                </Window>
    194193            </Window>
    195194        </Window>
    196         <Window Type="MenuWidgets/Button" Name="orxonox/GraphicsOkButton" >
    197             <Property Name="Text" Value="OK" />
    198             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    199             <Property Name="UnifiedAreaRect" Value="{{0.2875,0},{0.6625,0},{0.4875,0},{0.7125,0}}" />
    200             <Event Name="Clicked" Function="GraphicsMenu.callback_Ok_Clicked" />
     195        <Window name="GraphicsOkButton" type="MenuWidgets/Button">
     196            <Property name="Text" value="OK" />
     197            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     198            <Property name="Area" value="{{0.2875,0},{0.6625,0},{0.4875,0},{0.7125,0}}" />
     199            <Event function="GraphicsMenu.callback_Ok_Clicked" name="Clicked" />
    201200        </Window>
    202         <Window Type="MenuWidgets/Button" Name="orxonox/GraphicsCancelButton" >
    203             <Property Name="Text" Value="Cancel" />
    204             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    205             <Property Name="UnifiedAreaRect" Value="{{0.5125,0},{0.6625,0},{0.7125,0},{0.7125,0}}" />
    206             <Event Name="Clicked" Function="GraphicsMenu.callback_Cancel_Clicked" />
     201        <Window name="GraphicsCancelButton" type="MenuWidgets/Button">
     202            <Property name="Text" value="Cancel" />
     203            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     204            <Property name="Area" value="{{0.5125,0},{0.6625,0},{0.7125,0},{0.7125,0}}" />
     205            <Event function="GraphicsMenu.callback_Cancel_Clicked" name="Clicked" />
    207206        </Window>
    208207    </Window>
  • code/branches/ogre1.9/data/gui/layouts/HostMenu.layout

    r7887 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/HostMenuBackground" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/HostMenuWindow" >
    11             <Property Name="Text" Value="Multiplayer" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.2875,0},{0.75,0},{0.7,0}}" />
    18             <Window Type="MenuWidgets/Listbox" Name="orxonox/HostMenuListbox" >
    19                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    20                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.15,0},{0.95,0},{0.85,0}}" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="HostMenuBackground" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="HostMenuWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Multiplayer" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.25,0},{0.2875,0},{0.75,0},{0.7,0}}" />
     17            <Window name="HostMenuListbox" type="MenuWidgets/Listbox">
     18                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     19                <Property name="Area" value="{{0.05,0},{0.15,0},{0.95,0},{0.85,0}}" />
    2120            </Window>
    22             <Window Type="MenuWidgets/RadioButton" Name="orxonox/HostMenuHostButton" >
    23                 <Property Name="Text" Value="Build Server"/>
    24                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    25                 <Property Name="UnifiedAreaRect" Value="{{0.1,0},{0.87,0},{0.3,0},{0.97,0}}" />
    26                 <Event Name="SelectStateChanged" Function="HostMenu.HostMenuBuildServerButton_clicked"/>
     21            <Window name="HostMenuHostButton" type="MenuWidgets/RadioButton">
     22                <Property name="Text" value="Build Server" />
     23                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     24                <Property name="Area" value="{{0.1,0},{0.87,0},{0.3,0},{0.97,0}}" />
     25                <Event function="HostMenu.HostMenuBuildServerButton_clicked" name="SelectStateChanged" />
    2726            </Window>
    28             <Window Type="MenuWidgets/RadioButton" Name="orxonox/HostMenuDedicatedButton" >
    29                 <Property Name="Text" Value="Dedicated" />
    30                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    31                 <Property Name="UnifiedAreaRect" Value="{{0.5,0},{0.87,0},{0.7,0},{0.97,0}}" />
    32                 <Event Name="SelectStateChanged" Function="HostMenu.HostMenuDedicatedButton_clicked"/>
     27            <Window name="HostMenuDedicatedButton" type="MenuWidgets/RadioButton">
     28                <Property name="Text" value="Dedicated" />
     29                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     30                <Property name="Area" value="{{0.5,0},{0.87,0},{0.7,0},{0.97,0}}" />
     31                <Event function="HostMenu.HostMenuDedicatedButton_clicked" name="SelectStateChanged" />
    3332            </Window>
    34             <Window Type="MenuWidgets/Checkbox" Name="orxonox/MultiplayerShowAllCheckbox" >
    35                 <Property Name="Text" Value="show all" />
    36                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    37                 <Property Name="UnifiedAreaRect" Value="{{0.8,0},{0.87,0},{1,0},{.97,0}}" />
    38                 <Event Name="CheckStateChanged" Function="HostMenu.MultiplayerShowAll_clicked"/>
     33            <Window name="MultiplayerShowAllCheckbox" type="MenuWidgets/Checkbox">
     34                <Property name="Text" value="show all" />
     35                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     36                <Property name="Area" value="{{0.8,0},{0.87,0},{1,0},{.97,0}}" />
     37                <Event function="HostMenu.MultiplayerShowAll_clicked" name="CheckStateChanged" />
    3938            </Window>
    4039        </Window>
    41         <Window Type="MenuWidgets/Button" Name="orxonox/HostMenuStartButton" >
    42             <Property Name="Text" Value="Start" />
    43             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    44             <Property Name="UnifiedAreaRect" Value="{{0.2875,0},{0.725,0},{0.4875,0},{0.775,0}}" />
    45             <Event Name="Clicked" Function="HostMenu.HostMenuStartButton_clicked"/>
     40        <Window name="HostMenuStartButton" type="MenuWidgets/Button">
     41            <Property name="Text" value="Start" />
     42            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     43            <Property name="Area" value="{{0.2875,0},{0.725,0},{0.4875,0},{0.775,0}}" />
     44            <Event function="HostMenu.HostMenuStartButton_clicked" name="Clicked" />
    4645        </Window>
    47         <Window Type="MenuWidgets/Button" Name="orxonox/HostMenuBackButton" >
    48             <Property Name="Text" Value="Back" />
    49             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    50             <Property Name="UnifiedAreaRect" Value="{{0.5125,0},{0.725,0},{0.7125,0},{0.775,0}}" />
    51             <Event Name="Clicked" Function="HostMenu.HostMenuBackButton_clicked"/>
     46        <Window name="HostMenuBackButton" type="MenuWidgets/Button">
     47            <Property name="Text" value="Back" />
     48            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     49            <Property name="Area" value="{{0.5125,0},{0.725,0},{0.7125,0},{0.775,0}}" />
     50            <Event function="HostMenu.HostMenuBackButton_clicked" name="Clicked" />
    5251        </Window>
    5352    </Window>
    5453</GUILayout>
    55 
  • code/branches/ogre1.9/data/gui/layouts/InGameMenu.layout

    r11052 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="DefaultWindow" Name="orxonox/InGameMenu_RootWindow" >
    5         <Property Name="InheritsAlpha" Value="False" />
    6         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    7         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    8         <Window Type="MenuWidgets/Button" Name="orxonox/InGameMenu_ReturnButton" >
    9             <Property Name="Text" Value="Return to Game" />
    10             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    11             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.2875,0},{0.6,0},{0.3375,0}}" />
    12             <Property Name="Alpha" Value="0.9" />
    13             <Event Name="Clicked" Function="InGameMenu.button_return_clicked"/>
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="InGameMenu_RootWindow" type="DefaultWindow">
     4        <Property name="InheritsAlpha" value="False" />
     5        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     6        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     7        <Window name="InGameMenu_ReturnButton" type="MenuWidgets/Button">
     8            <Property name="Text" value="Return to Game" />
     9            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     10            <Property name="Area" value="{{0.4,0},{0.2875,0},{0.6,0},{0.3375,0}}" />
     11            <Property name="Alpha" value="0.9" />
     12            <Event function="InGameMenu.button_return_clicked" name="Clicked" />
    1413        </Window>
    15         <Window Type="MenuWidgets/Button" Name="orxonox/InGameMenu_ReloadLevelButton" >
    16             <Property Name="Text" Value="Reload level" />
    17             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    18             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.3625,0},{0.6,0},{0.4125,0}}" />
    19             <Property Name="Alpha" Value="0.9" />
    20             <Event Name="Clicked" Function="InGameMenu.button_reloadLevel_clicked"/>
     14        <Window name="InGameMenu_ReloadLevelButton" type="MenuWidgets/Button">
     15            <Property name="Text" value="Reload level" />
     16            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     17            <Property name="Area" value="{{0.4,0},{0.3625,0},{0.6,0},{0.4125,0}}" />
     18            <Property name="Alpha" value="0.9" />
     19            <Event function="InGameMenu.button_reloadLevel_clicked" name="Clicked" />
    2120        </Window>
    22         <Window Type="MenuWidgets/Button" Name="orxonox/InGameMenu_MainMenuButton" >
    23             <Property Name="Text" Value="Main Menu" />
    24             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    25             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.4375,0},{0.6,0},{0.4875,0}}" />
    26             <Property Name="Alpha" Value="0.9" />
    27             <Event Name="Clicked" Function="InGameMenu.button_mainmenu_clicked"/>
     21        <Window name="InGameMenu_MainMenuButton" type="MenuWidgets/Button">
     22            <Property name="Text" value="Main Menu" />
     23            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     24            <Property name="Area" value="{{0.4,0},{0.4375,0},{0.6,0},{0.4875,0}}" />
     25            <Property name="Alpha" value="0.9" />
     26            <Event function="InGameMenu.button_mainmenu_clicked" name="Clicked" />
    2827        </Window>
    29         <Window Type="MenuWidgets/Button" Name="orxonox/InGameMenu_SettingsButton" >
    30             <Property Name="Text" Value="Settings" />
    31             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    32             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.5125,0},{0.6,0},{0.5625,0}}" />
    33             <Property Name="Alpha" Value="0.9" />
    34             <Event Name="Clicked" Function="InGameMenu.button_settings_clicked"/>
     28        <Window name="InGameMenu_SettingsButton" type="MenuWidgets/Button">
     29            <Property name="Text" value="Settings" />
     30            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     31            <Property name="Area" value="{{0.4,0},{0.5125,0},{0.6,0},{0.5625,0}}" />
     32            <Property name="Alpha" value="0.9" />
     33            <Event function="InGameMenu.button_settings_clicked" name="Clicked" />
    3534        </Window>
    36         <Window Type="MenuWidgets/Button" Name="orxonox/InGameMenu_QuitButton" >
    37             <Property Name="Text" Value="Quit" />
    38             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    39             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.5875,0},{0.6,0},{0.6375,0}}" />
    40             <Property Name="Alpha" Value="0.9" />
    41             <Event Name="Clicked" Function="InGameMenu.button_quit_clicked"/>
     35        <Window name="InGameMenu_QuitButton" type="MenuWidgets/Button">
     36            <Property name="Text" value="Quit" />
     37            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     38            <Property name="Area" value="{{0.4,0},{0.5875,0},{0.6,0},{0.6375,0}}" />
     39            <Property name="Alpha" value="0.9" />
     40            <Event function="InGameMenu.button_quit_clicked" name="Clicked" />
    4241        </Window>
    4342    </Window>
  • code/branches/ogre1.9/data/gui/layouts/InGamePickupHUD.layout

    r9348 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout>
    4     <Window Type="DefaultWindow" Name="orxonox/InGamePickupHUD_RootWindow" >
    5         <Property Name="InheritsAlpha" Value="False" />
    6         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    7         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    8         <Window Type="TaharezLook/StaticImage" Name="orxonox/InGamePickupHUD_Overview" >
    9             <Property Name="Font" Value="BlueHighway-12" />
    10             <Property Name="Text" Value="Pickup List" />
    11             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    12             <Property Name="UnifiedAreaRect" Value="{{0,5},{0.15,0},{0.2,0},{0.45,0}}" />
    13             <Property Name="Alpha" Value="0.3" />
    14             <!--Event Name="Clicked" Function="InGameMenu.button_return_clicked"/-->
    15             <Window Type="TaharezLook/StaticText" Name="orxonox/InGamePickupHUD_PickupTitle" >
    16                 <Property Name="Alpha" Value="0.8"/>
    17                 <Property Name="Text" Value="Pickup List" />
    18                 <Property Name="Font" Value="BlueHighway-10" />
    19                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    20                 <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,-20},{0,20}}" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="InGamePickupHUD_RootWindow" type="DefaultWindow">
     4        <Property name="InheritsAlpha" value="False" />
     5        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     6        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     7        <Window name="InGamePickupHUD_Overview" type="TaharezLook/StaticImage">
     8            <Property name="Font" value="BlueHighway-12" />
     9            <Property name="Text" value="Pickup List" />
     10            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     11            <Property name="Area" value="{{0,5},{0.15,0},{0.2,0},{0.45,0}}" />
     12            <Property name="Alpha" value="0.3" />
     13            <Window name="InGamePickupHUD_PickupTitle" type="TaharezLook/StaticText">
     14                <Property name="Alpha" value="0.8" />
     15                <Property name="Text" value="Pickup List" />
     16                <Property name="Font" value="BlueHighway-10" />
     17                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     18                <Property name="Area" value="{{0,0},{0,0},{1,-20},{0,20}}" />
    2119            </Window>
    22             <Window Type="TaharezLook/Button" Name="orxonox/InGamePickupHUD_closeButton" >
    23                 <Property Name="Alpha" Value="0.8" />
    24                 <Property Name="Font" Value="BlueHighway-12" />
    25                 <Property Name="Text" Value="X" />
    26                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    27                 <Property Name="UnifiedAreaRect" Value="{{1,-20},{0,0},{1,0},{0,20}}" />
    28                 <!-- alle Grössen / anordnungen angepasst - da überschneidungen von absoluten
    29                 und relativen Positionsangaben (problematisch bei kleinen auflösungen) -->
    30                 <Event Name="Clicked" Function="InGamePickupHUD.close_button_clicked"/>
     20            <Window name="InGamePickupHUD_closeButton" type="TaharezLook/Button">
     21                <Property name="Alpha" value="0.8" />
     22                <Property name="Font" value="BlueHighway-12" />
     23                <Property name="Text" value="X" />
     24                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     25                <Property name="Area" value="{{1,-20},{0,0},{1,0},{0,20}}" />
     26                <Event function="InGamePickupHUD.close_button_clicked" name="Clicked" />
    3127            </Window>
    32             <Window Type="TaharezLook/Listbox" Name="orxonox/InGamePickupHUD_PickupListBox">
    33                 <Property Name="Alpha" Value="0.8" />
    34                 <Property Name="Font" Value="BlueHighway-12" />
    35                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    36                 <Property Name="UnifiedAreaRect" Value="{{0,5},{0,25},{1,-5},{1,-5}}" />
    37                 <!--
    38                 <Window Type="TaharezLook/ListboxItem" Name="orxonox/InGamePickupHUD_TestPickupOne">
    39                     <Property Name="Alpha" Value="0.8" />
    40                     <Property Name="Font" Value="BlueHighway-12" />
    41                     <Property Name="Text" Value="First Pickup" />
    42                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    43                     <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{0,30},{1,0}}" />
    44                 </Window>
    45                 -->
     28            <Window name="InGamePickupHUD_PickupListBox" type="TaharezLook/Listbox">
     29                <Property name="Alpha" value="0.8" />
     30                <Property name="Font" value="BlueHighway-12" />
     31                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     32                <Property name="Area" value="{{0,5},{0,25},{1,-5},{1,-5}}" />
    4633            </Window>
    4734        </Window>
  • code/branches/ogre1.9/data/gui/layouts/InGameTest.layout

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUILayout>
    3     <Window Type="DefaultGUISheet" Name="orxonox/TestWindow">
    4     <Property Name="UnifiedSize" Value="{{1.0,0},{1.0,0}}"/>
    5 
    6         <Window Type="MenuWidgets/Button" Name="orxonox/TestButton">
    7             <Property Name="UnifiedPosition" Value="{{0.11,0},{0.528,0}}"/>
    8             <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>
    9             <Property Name="Text" Value="NoFunction"/>
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="TestWindow" type="DefaultGUISheet">
     4        <Property name="Size" value="{{1.0,0},{1.0,0}}" />
     5        <Window name="TestButton" type="MenuWidgets/Button">
     6            <Property name="Position" value="{{0.11,0},{0.528,0}}" />
     7            <Property name="Size" value="{{0.15,0},{0.05,0}}" />
     8            <Property name="Text" value="NoFunction" />
    109        </Window>
    11 
    1210    </Window>
    1311</GUILayout>
  • code/branches/ogre1.9/data/gui/layouts/InfoPopup.layout

    r6746 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="DefaultWindow" Name="orxonox/InfoPopup_RootWindow" >
    5         <Property Name="InheritsAlpha" Value="False" />
    6         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    7         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    8         <Window Type="MenuWidgets/StaticImage" Name="orxonox/InfoPopup_Background" >
    9             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    10             <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    11             <Property Name="Alpha" Value="0.7" />
    12             <Window Type="MenuWidgets/Button" Name="orxonox/InfoPopup_close" >
    13                 <Property Name="Text" Value="Close" />
    14                 <Property Name="Alpha" Value="0.7" />
    15                 <Property Name="InheritsAlpha" Value="False" />
    16                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    17                 <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.5,0},{0.6,0},{0.55,0}}" />
    18                 <Event Name="Clicked" Function="InfoPopup.close"/>
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="InfoPopup_RootWindow" type="DefaultWindow">
     4        <Property name="InheritsAlpha" value="False" />
     5        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     6        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     7        <Window name="InfoPopup_Background" type="MenuWidgets/StaticImage">
     8            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     9            <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     10            <Property name="Alpha" value="0.7" />
     11            <Window name="InfoPopup_close" type="MenuWidgets/Button">
     12                <Property name="Text" value="Close" />
     13                <Property name="Alpha" value="0.7" />
     14                <Property name="InheritsAlpha" value="False" />
     15                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     16                <Property name="Area" value="{{0.4,0},{0.5,0},{0.6,0},{0.55,0}}" />
     17                <Event function="InfoPopup.close" name="Clicked" />
    1918            </Window>
    20             <Window Type="MenuWidgets/StaticText" Name="orxonox/InfoPopup_text" >
    21                 <Property Name="Text" Value="Template text" />
    22                 <Property Name="TextColours" Value="FF4444FF" />
    23                 <Property Name="HorzFormatting" Value="WordWrapCentred" />
    24                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    25                 <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.375,0},{0.75,0},{0.475,0}}" />
    26                 <Property Name="InheritsAlpha" Value="False" />
    27                <Property Name="Alpha" Value="0.8" />
     19            <Window name="InfoPopup_text" type="MenuWidgets/StaticText">
     20                <Property name="Text" value="Template text" />
     21                <Property name="TextColours" value="FF4444FF" />
     22                <Property name="HorzFormatting" value="WordWrapCentred" />
     23                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     24                <Property name="Area" value="{{0.25,0},{0.375,0},{0.75,0},{0.475,0}}" />
     25                <Property name="InheritsAlpha" value="False" />
     26                <Property name="Alpha" value="0.8" />
    2827            </Window>
    2928        </Window>
  • code/branches/ogre1.9/data/gui/layouts/KeyBindMenu.layout

    r6746 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="DefaultWindow" Name="orxonox/KeyBindMenu/Background" >
    5         <Property Name="InheritsAlpha" Value="False" />
    6         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    7         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    8         <Window Type="MenuWidgets/StaticText" Name="orxonox/KeyBindWindow" >
    9             <Property Name="Text" Value="Keybindings" />
    10             <Property Name="Alpha" Value="0.8" />
    11             <Property Name="InheritsAlpha" Value="False" />
    12             <Property Name="HorzFormatting" Value="HorzCentred" />
    13             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    14             <Property Name="VertFormatting" Value="TopAligned" />
    15             <Property Name="UnifiedAreaRect" Value="{{0.15,0},{0.2125,0},{0.85,0},{0.6375,0}}" />
    16             <Window Type="MenuWidgets/StaticText" Name="orxonox/KeyBindWrapper" >
    17                 <Property Name="TextColours" Value="FF4444FF" />
    18                 <Property Name="InheritsAlpha" Value="False" />
    19                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    20                 <Property Name="HorzFormatting" Value="HorzCentred" />
    21                 <Property Name="VertFormatting" Value="TopAligned" />
    22                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.15,0},{0.95,0},{0.92,0}}" />
    23                 <Window Type="MenuWidgets/ScrollablePane" Name="orxonox/KeyBindPane" >
    24                     <Property Name="ContentArea" Value="l:0 t:0 r:0 b:0" />
    25                     <Property Name="HorzStepSize" Value="0.005" />
    26                     <Property Name="VertStepSize" Value="0.005" />
    27                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    28                     <Property Name="HorzOverlapSize" Value="0.01" />
    29                     <Property Name="UnifiedAreaRect" Value="{{0.005,0},{0.01,0},{0.995,0},{0.99,0}}" />
    30                     <Property Name="VertOverlapSize" Value="0.01" />
    31                     <Property Name="HorzScrollPosition" Value="0" />
    32                     <Property Name="VertScrollPosition" Value="0" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="Background" type="DefaultWindow">
     4        <Property name="InheritsAlpha" value="False" />
     5        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     6        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     7        <Window name="KeyBindWindow" type="MenuWidgets/StaticText">
     8            <Property name="Text" value="Keybindings" />
     9            <Property name="Alpha" value="0.8" />
     10            <Property name="InheritsAlpha" value="False" />
     11            <Property name="HorzFormatting" value="HorzCentred" />
     12            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     13            <Property name="VertFormatting" value="TopAligned" />
     14            <Property name="Area" value="{{0.15,0},{0.2125,0},{0.85,0},{0.6375,0}}" />
     15            <Window name="KeyBindWrapper" type="MenuWidgets/StaticText">
     16                <Property name="TextColours" value="FF4444FF" />
     17                <Property name="InheritsAlpha" value="False" />
     18                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     19                <Property name="HorzFormatting" value="HorzCentred" />
     20                <Property name="VertFormatting" value="TopAligned" />
     21                <Property name="Area" value="{{0.05,0},{0.15,0},{0.95,0},{0.92,0}}" />
     22                <Window name="KeyBindPane" type="MenuWidgets/ScrollablePane">
     23                    <Property name="ContentArea" value="l:0 t:0 r:0 b:0" />
     24                    <Property name="HorzStepSize" value="0.005" />
     25                    <Property name="VertStepSize" value="0.005" />
     26                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     27                    <Property name="HorzOverlapSize" value="0.01" />
     28                    <Property name="Area" value="{{0.005,0},{0.01,0},{0.995,0},{0.99,0}}" />
     29                    <Property name="VertOverlapSize" value="0.01" />
     30                    <Property name="HorzScrollPosition" value="0" />
     31                    <Property name="VertScrollPosition" value="0" />
    3332                </Window>
    3433            </Window>
    3534        </Window>
    36         <Window Type="MenuWidgets/Button" Name="orxonox/KeyBindBackButton" >
    37             <Property Name="Text" Value="Back" />
    38             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    39             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
    40             <Event Name="Clicked" Function="KeyBindMenu.KeyBindBackButton_clicked"/>
     35        <Window name="KeyBindBackButton" type="MenuWidgets/Button">
     36            <Property name="Text" value="Back" />
     37            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     38            <Property name="Area" value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
     39            <Event function="KeyBindMenu.KeyBindBackButton_clicked" name="Clicked" />
    4140        </Window>
    4241    </Window>
  • code/branches/ogre1.9/data/gui/layouts/MainMenu.layout

    r6746 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/MainMenuBackground" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1.0,0},{1.0,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/Button" Name="orxonox/QuickGameTestButton" >
    11             <Property Name="Text" Value="Quickstart" />
    12             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    13             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.2875,0},{0.6,0},{0.3375,0}}" />
    14             <Event Name="Clicked" Function="MainMenu.QuickGameTestButton_clicked"/>
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="MainMenuBackground" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1.0,0},{1.0,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="QuickGameTestButton" type="MenuWidgets/Button">
     10            <Property name="Text" value="Quickstart" />
     11            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     12            <Property name="Area" value="{{0.4,0},{0.2875,0},{0.6,0},{0.3375,0}}" />
     13            <Event function="MainMenu.QuickGameTestButton_clicked" name="Clicked" />
    1514        </Window>
    16         <Window Type="MenuWidgets/Button" Name="orxonox/SingleplayerButton" >
    17             <Property Name="Text" Value="Singleplayer" />
    18             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    19             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.3625,0},{0.6,0},{0.4125,0}}" />
    20             <Event Name="Clicked" Function="MainMenu.SingleplayerButton_clicked"/>
     15        <Window name="SingleplayerButton" type="MenuWidgets/Button">
     16            <Property name="Text" value="Singleplayer" />
     17            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     18            <Property name="Area" value="{{0.4,0},{0.3625,0},{0.6,0},{0.4125,0}}" />
     19            <Event function="MainMenu.SingleplayerButton_clicked" name="Clicked" />
    2120        </Window>
    22         <Window Type="MenuWidgets/Button" Name="orxonox/MultiplayerButton" >
    23             <Property Name="Text" Value="Multiplayer" />
    24             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    25             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.4375,0},{0.6,0},{0.4875,0}}" />
    26             <Event Name="Clicked" Function="MainMenu.MultiplayerButton_clicked"/>
     21        <Window name="MultiplayerButton" type="MenuWidgets/Button">
     22            <Property name="Text" value="Multiplayer" />
     23            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     24            <Property name="Area" value="{{0.4,0},{0.4375,0},{0.6,0},{0.4875,0}}" />
     25            <Event function="MainMenu.MultiplayerButton_clicked" name="Clicked" />
    2726        </Window>
    28         <Window Type="MenuWidgets/Button" Name="orxonox/SettingsButton" >
    29             <Property Name="Text" Value="Settings" />
    30             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    31             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.5125,0},{0.6,0},{0.5625,0}}" />
    32             <Event Name="Clicked" Function="MainMenu.SettingsButton_clicked"/>
     27        <Window name="SettingsButton" type="MenuWidgets/Button">
     28            <Property name="Text" value="Settings" />
     29            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     30            <Property name="Area" value="{{0.4,0},{0.5125,0},{0.6,0},{0.5625,0}}" />
     31            <Event function="MainMenu.SettingsButton_clicked" name="Clicked" />
    3332        </Window>
    34         <Window Type="MenuWidgets/Button" Name="orxonox/CreditsButton" >
    35             <Property Name="Text" Value="Credits" />
    36             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    37             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.5875,0},{0.6,0},{0.6375,0}}" />
    38             <Event Name="Clicked" Function="MainMenu.CreditsButton_clicked"/>
     33        <Window name="CreditsButton" type="MenuWidgets/Button">
     34            <Property name="Text" value="Credits" />
     35            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     36            <Property name="Area" value="{{0.4,0},{0.5875,0},{0.6,0},{0.6375,0}}" />
     37            <Event function="MainMenu.CreditsButton_clicked" name="Clicked" />
    3938        </Window>
    40         <Window Type="MenuWidgets/Button" Name="orxonox/ExitButton" >
    41             <Property Name="Text" Value="Exit" />
    42             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    43             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
    44             <Event Name="Clicked" Function="MainMenu.ExitButton_clicked"/>
     39        <Window name="ExitButton" type="MenuWidgets/Button">
     40            <Property name="Text" value="Exit" />
     41            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     42            <Property name="Area" value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
     43            <Event function="MainMenu.ExitButton_clicked" name="Clicked" />
    4544        </Window>
    4645    </Window>
  • code/branches/ogre1.9/data/gui/layouts/MainMenuBackground.layout

    r7689 r11211  
    1 <?xml version="1.0" ?>
    2 <GUILayout>
    3     <Window Type="MenuWidgets/StaticImage" Name="orxonox/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         <Property Name="InheritsAlpha" Value="False" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="Background" type="MenuWidgets/StaticImage">
     4        <Property name="Size" value="{{1.0,0},{1.0,0}}" />
     5        <Property name="Image" value="MainMenuBackground/Background" />
     6        <Property name="FrameEnabled" value="set:true" />
     7        <Property name="BackgroundEnabled" value="set:false" />
     8        <Property name="InheritsAlpha" value="False" />
    99    </Window>
    1010</GUILayout>
  • code/branches/ogre1.9/data/gui/layouts/MiscConfigMenu.layout

    r9016 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/MiscConfigMenu/Background" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/MicsConfigMenu/ConfigWindow" >
    11             <Property Name="Text" Value="Miscellaneous" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.15,0},{0.2125,0},{0.85,0},{0.6375,0}}" />
    18             <Window Type="MenuWidgets/StaticText" Name="orxonox/MiscConfigMenu/Wrapper" >
    19                 <Property Name="TextColours" Value="FF4444FF" />
    20                 <Property Name="InheritsAlpha" Value="False" />
    21                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    22                 <Property Name="HorzFormatting" Value="HorzCentred" />
    23                 <Property Name="VertFormatting" Value="TopAligned" />
    24                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.15,0},{0.95,0},{0.92,0}}" />
    25                 <Window Type="MenuWidgets/ScrollablePane" Name="orxonox/MiscConfigMenu/MiscConfigPane" >
    26                     <Property Name="ContentArea" Value="l:0 t:0 r:0 b:0" />
    27                     <Property Name="HorzStepSize" Value="0.005" />
    28                     <Property Name="VertStepSize" Value="0.005" />
    29                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    30                     <Property Name="HorzOverlapSize" Value="0.01" />
    31                     <Property Name="UnifiedAreaRect" Value="{{0.005,0},{0.01,0},{0.995,0},{0.99,0}}" />
    32                     <Property Name="VertOverlapSize" Value="0.01" />
    33                     <Property Name="HorzScrollPosition" Value="0" />
    34                     <Property Name="VertScrollPosition" Value="0" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="Background" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="ConfigWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Miscellaneous" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.15,0},{0.2125,0},{0.85,0},{0.6375,0}}" />
     17            <Window name="Wrapper" type="MenuWidgets/StaticText">
     18                <Property name="TextColours" value="FF4444FF" />
     19                <Property name="InheritsAlpha" value="False" />
     20                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     21                <Property name="HorzFormatting" value="HorzCentred" />
     22                <Property name="VertFormatting" value="TopAligned" />
     23                <Property name="Area" value="{{0.05,0},{0.15,0},{0.95,0},{0.92,0}}" />
     24                <Window name="MiscConfigPane" type="MenuWidgets/ScrollablePane">
     25                    <Property name="ContentArea" value="l:0 t:0 r:0 b:0" />
     26                    <Property name="HorzStepSize" value="0.005" />
     27                    <Property name="VertStepSize" value="0.005" />
     28                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     29                    <Property name="HorzOverlapSize" value="0.01" />
     30                    <Property name="Area" value="{{0.005,0},{0.01,0},{0.995,0},{0.99,0}}" />
     31                    <Property name="VertOverlapSize" value="0.01" />
     32                    <Property name="HorzScrollPosition" value="0" />
     33                    <Property name="VertScrollPosition" value="0" />
    3534                </Window>
    3635            </Window>
    3736        </Window>
    38         <Window Type="MenuWidgets/Button" Name="orxonox/MiscConfigMenu/CancelButton" >
    39             <Property Name="Text" Value="Cancel" />
    40             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    41             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.725,0},{0.4,0},{0.775,0}}" />
    42             <Event Name="Clicked" Function="MiscConfigMenu.MiscConfigCancelButton_clicked"/>
     37        <Window name="CancelButton" type="MenuWidgets/Button">
     38            <Property name="Text" value="Cancel" />
     39            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     40            <Property name="Area" value="{{0.25,0},{0.725,0},{0.4,0},{0.775,0}}" />
     41            <Event function="MiscConfigMenu.MiscConfigCancelButton_clicked" name="Clicked" />
    4342        </Window>
    44         <Window Type="MenuWidgets/Button" Name="orxonox/MiscConfigMenu/OKButton" >
    45             <Property Name="Text" Value="OK" />
    46             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    47             <Property Name="UnifiedAreaRect" Value="{{0.6,0},{0.725,0},{0.75,0},{0.775,0}}" />
    48             <Event Name="Clicked" Function="MiscConfigMenu.MiscConfigOKButton_clicked"/>
     43        <Window name="OKButton" type="MenuWidgets/Button">
     44            <Property name="Text" value="OK" />
     45            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     46            <Property name="Area" value="{{0.6,0},{0.725,0},{0.75,0},{0.775,0}}" />
     47            <Event function="MiscConfigMenu.MiscConfigOKButton_clicked" name="Clicked" />
    4948        </Window>
    5049    </Window>
  • code/branches/ogre1.9/data/gui/layouts/MouseControlsMenu.layout

    r6746 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/MouseControlsBackground" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/MouseControlsWindow" >
    11             <Property Name="Text" Value="Mouse controls" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.3625,0},{0.75,0},{0.6375,0}}" />
    18             <Window Type="MenuWidgets/StaticText" Name="orxonox/MouseNormalSensitivity" >
    19                 <Property Name="Text" Value="Sensitivity (normal mode)                                      " />
    20                 <Property Name="InheritsAlpha" Value="False" />
    21                 <Property Name="HorzFormatting" Value="HorzCentred" />
    22                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    23                 <Property Name="VertFormatting" Value="TopAligned" />
    24                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.2,0},{0.95,0},{0.45,0}}" />
    25                 <Window Type="MenuWidgets/HorizontalScrollbar" Name="orxonox/MouseNormalScrollbar" >
    26                     <Property Name="PageSize" Value="0" />
    27                     <Property Name="StepSize" Value="1" />
    28                     <Property Name="OverlapSize" Value="0" />
    29                     <Property Name="DocumentSize" Value="1" />
    30                     <Property Name="ScrollPosition" Value="0" />
    31                     <Property Name="StepSize" Value="0.1" />
    32                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    33                     <Property Name="UnifiedAreaRect" Value="{{0.02,0},{0.6,0},{0.565,0},{0.8,0}}" />
    34                     <Event Name="ThumbTrackStarted" Function="MouseControlsMenu.MouseControlsMouseNormalScrollbar_started" />
    35                     <Event Name="ThumbTrackEnded" Function="MouseControlsMenu.MouseControlsMouseNormalScrollbar_ended" />
    36                     <Event Name="ScrollPosChanged" Function="MouseControlsMenu.MouseControlsMouseNormalScrollbar_changed" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="MouseControlsBackground" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="MouseControlsWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Mouse controls" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.25,0},{0.3625,0},{0.75,0},{0.6375,0}}" />
     17            <Window name="MouseNormalSensitivity" type="MenuWidgets/StaticText">
     18                <Property name="Text" value="Sensitivity (normal mode)                                      " />
     19                <Property name="InheritsAlpha" value="False" />
     20                <Property name="HorzFormatting" value="HorzCentred" />
     21                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     22                <Property name="VertFormatting" value="TopAligned" />
     23                <Property name="Area" value="{{0.05,0},{0.2,0},{0.95,0},{0.45,0}}" />
     24                <Window name="MouseNormalScrollbar" type="MenuWidgets/HorizontalScrollbar">
     25                    <Property name="PageSize" value="0" />
     26                    <Property name="StepSize" value="1" />
     27                    <Property name="OverlapSize" value="0" />
     28                    <Property name="DocumentSize" value="1" />
     29                    <Property name="ScrollPosition" value="0" />
     30                    <Property name="StepSize" value="0.1" />
     31                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     32                    <Property name="Area" value="{{0.02,0},{0.6,0},{0.565,0},{0.8,0}}" />
     33                    <Event function="MouseControlsMenu.MouseControlsMouseNormalScrollbar_started" name="ThumbTrackStarted" />
     34                    <Event function="MouseControlsMenu.MouseControlsMouseNormalScrollbar_ended" name="ThumbTrackEnded" />
     35                    <Event function="MouseControlsMenu.MouseControlsMouseNormalScrollbar_changed" name="ScrollPosChanged" />
    3736                </Window>
    38                 <Window Type="MenuWidgets/RadioButton" Name="orxonox/MouseNormalButton" >
    39                     <Property Name="Text" Value="Normal mouse input" />
    40                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    41                     <Property Name="UnifiedAreaRect" Value="{{0.61,0},{0.5,0},{0.975,0},{0.85,0}}" />
    42                     <Event Name="SelectStateChanged" Function="MouseControlsMenu.MouseNormalButton_clicked" />
     37                <Window name="MouseNormalButton" type="MenuWidgets/RadioButton">
     38                    <Property name="Text" value="Normal mouse input" />
     39                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     40                    <Property name="Area" value="{{0.61,0},{0.5,0},{0.975,0},{0.85,0}}" />
     41                    <Event function="MouseControlsMenu.MouseNormalButton_clicked" name="SelectStateChanged" />
    4342                </Window>
    4443            </Window>
    45             <Window Type="MenuWidgets/StaticText" Name="orxonox/MouseDeriveSensitivity" >
    46                 <Property Name="Text" Value="Sensitivity (derive mode)                                      " />
    47                 <Property Name="InheritsAlpha" Value="False" />
    48                 <Property Name="HorzFormatting" Value="HorzCentred" />
    49                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    50                 <Property Name="VertFormatting" Value="TopAligned" />
    51                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.55,0},{0.95,0},{0.8,0}}" />
    52                 <Window Type="MenuWidgets/HorizontalScrollbar" Name="orxonox/MouseDeriveScrollbar" >
    53                     <Property Name="PageSize" Value="0" />
    54                     <Property Name="StepSize" Value="1" />
    55                     <Property Name="OverlapSize" Value="0" />
    56                     <Property Name="DocumentSize" Value="1" />
    57                     <Property Name="ScrollPosition" Value="0" />
    58                     <Property Name="StepSize" Value="0.1" />
    59                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    60                     <Property Name="UnifiedAreaRect" Value="{{0.02,0},{0.6,0},{0.565,0},{0.8,0}}" />
    61                     <Event Name="ThumbTrackStarted" Function="MouseControlsMenu.MouseControlsMouseDeriveScrollbar_started" />
    62                     <Event Name="ThumbTrackEnded" Function="MouseControlsMenu.MouseControlsMouseDeriveScrollbar_ended" />
    63                     <Event Name="ScrollPosChanged" Function="MouseControlsMenu.MouseControlsMouseDeriveScrollbar_changed" />
     44            <Window name="MouseDeriveSensitivity" type="MenuWidgets/StaticText">
     45                <Property name="Text" value="Sensitivity (derive mode)                                      " />
     46                <Property name="InheritsAlpha" value="False" />
     47                <Property name="HorzFormatting" value="HorzCentred" />
     48                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     49                <Property name="VertFormatting" value="TopAligned" />
     50                <Property name="Area" value="{{0.05,0},{0.55,0},{0.95,0},{0.8,0}}" />
     51                <Window name="MouseDeriveScrollbar" type="MenuWidgets/HorizontalScrollbar">
     52                    <Property name="PageSize" value="0" />
     53                    <Property name="StepSize" value="1" />
     54                    <Property name="OverlapSize" value="0" />
     55                    <Property name="DocumentSize" value="1" />
     56                    <Property name="ScrollPosition" value="0" />
     57                    <Property name="StepSize" value="0.1" />
     58                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     59                    <Property name="Area" value="{{0.02,0},{0.6,0},{0.565,0},{0.8,0}}" />
     60                    <Event function="MouseControlsMenu.MouseControlsMouseDeriveScrollbar_started" name="ThumbTrackStarted" />
     61                    <Event function="MouseControlsMenu.MouseControlsMouseDeriveScrollbar_ended" name="ThumbTrackEnded" />
     62                    <Event function="MouseControlsMenu.MouseControlsMouseDeriveScrollbar_changed" name="ScrollPosChanged" />
    6463                </Window>
    65                 <Window Type="MenuWidgets/RadioButton" Name="orxonox/MouseDeriveButton" >
    66                     <Property Name="Text" Value="Derive mouse input" />
    67                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    68                     <Property Name="UnifiedAreaRect" Value="{{0.61,0},{0.5,0},{0.975,0},{0.85,0}}" />
    69                     <Event Name="SelectStateChanged" Function="MouseControlsMenu.MouseDeriveButton_clicked" />
     64                <Window name="MouseDeriveButton" type="MenuWidgets/RadioButton">
     65                    <Property name="Text" value="Derive mouse input" />
     66                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     67                    <Property name="Area" value="{{0.61,0},{0.5,0},{0.975,0},{0.85,0}}" />
     68                    <Event function="MouseControlsMenu.MouseDeriveButton_clicked" name="SelectStateChanged" />
    7069                </Window>
    7170            </Window>
    72             <Window Type="MenuWidgets/Checkbox" Name="orxonox/MouseInvertCheckbox" >
    73                 <Property Name="Text" Value="Invert mouse" />
    74                 <Property Name="Disabled" Value="true" />
    75                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    76                 <Property Name="UnifiedAreaRect" Value="{{0.39,0},{0.85,0},{0.61,0},{0.95,0}}" />
    77                 <Event Name="CheckStateChanged" Function="MouseControlsMenu.MouseInvertCheckbox_clicked" />
     71            <Window name="MouseInvertCheckbox" type="MenuWidgets/Checkbox">
     72                <Property name="Text" value="Invert mouse" />
     73                <Property name="Disabled" value="true" />
     74                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     75                <Property name="Area" value="{{0.39,0},{0.85,0},{0.61,0},{0.95,0}}" />
     76                <Event function="MouseControlsMenu.MouseInvertCheckbox_clicked" name="CheckStateChanged" />
    7877            </Window>
    7978        </Window>
    80         <Window Type="MenuWidgets/Button" Name="orxonox/MouseControlsBackButton" >
    81             <Property Name="Text" Value="Back" />
    82             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    83             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
    84             <Event Name="Clicked" Function="MouseControlsMenu.MouseControlsBackButton_clicked"/>
     79        <Window name="MouseControlsBackButton" type="MenuWidgets/Button">
     80            <Property name="Text" value="Back" />
     81            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     82            <Property name="Area" value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
     83            <Event function="MouseControlsMenu.MouseControlsBackButton_clicked" name="Clicked" />
    8584        </Window>
    8685    </Window>
  • code/branches/ogre1.9/data/gui/layouts/MultiplayerMenu.layout

    r7801 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/MultiplayerBackground" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/MultiplayerWindow" >
    11             <Property Name="Text" Value="Multiplayer" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.2875,0},{0.75,0},{0.6375,0}}" />
    18             <Window Type="MenuWidgets/Listbox" Name="orxonox/MultiplayerListbox" >
    19                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    20                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.15,0},{0.95,0},{0.8,0}}" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="MultiplayerBackground" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="MultiplayerWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Multiplayer" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.25,0},{0.2875,0},{0.75,0},{0.6375,0}}" />
     17            <Window name="MultiplayerListbox" type="MenuWidgets/Listbox">
     18                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     19                <Property name="Area" value="{{0.05,0},{0.15,0},{0.95,0},{0.8,0}}" />
    2120            </Window>
    22             <Window Type="MenuWidgets/RadioButton" Name="orxonox/MultiplayerLanButton" >
    23                 <Property Name="Text" Value="LAN"/>
    24                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    25                 <Property Name="UnifiedAreaRect" Value="{{0.2,0},{0.87,0},{0.4,0},{0.97,0}}" />
    26                 <Event Name="SelectStateChanged" Function="MultiplayerMenu.LanButton_clicked"/>
     21            <Window name="MultiplayerLanButton" type="MenuWidgets/RadioButton">
     22                <Property name="Text" value="LAN" />
     23                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     24                <Property name="Area" value="{{0.2,0},{0.87,0},{0.4,0},{0.97,0}}" />
     25                <Event function="MultiplayerMenu.LanButton_clicked" name="SelectStateChanged" />
    2726            </Window>
    28             <Window Type="MenuWidgets/RadioButton" Name="orxonox/MultiplayerInternetButton" >
    29                 <Property Name="Text" Value="Internet" />
    30                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    31                 <Property Name="UnifiedAreaRect" Value="{{0.6,0},{0.87,0},{0.8,0},{0.97,0}}" />
    32                 <Event Name="SelectStateChanged" Function="MultiplayerMenu.InternetButton_clicked"/>
     27            <Window name="MultiplayerInternetButton" type="MenuWidgets/RadioButton">
     28                <Property name="Text" value="Internet" />
     29                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     30                <Property name="Area" value="{{0.6,0},{0.87,0},{0.8,0},{0.97,0}}" />
     31                <Event function="MultiplayerMenu.InternetButton_clicked" name="SelectStateChanged" />
    3332            </Window>
    3433        </Window>
    35          <Window Type="MenuWidgets/Button" Name="orxonox/MultiplayerBackButton" >
    36             <Property Name="Text" Value="Back" />
    37             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    38             <Property Name="UnifiedAreaRect" Value="{{0.7125,0},{0.8625,0},{0.9125,0},{0.9125,0}}" />
    39             <Event Name="Clicked" Function="MultiplayerMenu.MultiplayerBackButton_clicked"/>
     34        <Window name="MultiplayerBackButton" type="MenuWidgets/Button">
     35            <Property name="Text" value="Back" />
     36            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     37            <Property name="Area" value="{{0.7125,0},{0.8625,0},{0.9125,0},{0.9125,0}}" />
     38            <Event function="MultiplayerMenu.MultiplayerBackButton_clicked" name="Clicked" />
    4039        </Window>
    41         <Window Type="MenuWidgets/Button" Name="orxonox/MultiplayerJoinButton" >
    42             <Property Name="Text" Value="Join" />
    43             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    44             <Property Name="UnifiedAreaRect" Value="{{0.2875,0},{0.6625,0},{0.4875,0},{0.7125,0}}" />
    45             <Event Name="Clicked" Function="MultiplayerMenu.MultiplayerJoinButton_clicked"/>
     40        <Window name="MultiplayerJoinButton" type="MenuWidgets/Button">
     41            <Property name="Text" value="Join" />
     42            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     43            <Property name="Area" value="{{0.2875,0},{0.6625,0},{0.4875,0},{0.7125,0}}" />
     44            <Event function="MultiplayerMenu.MultiplayerJoinButton_clicked" name="Clicked" />
    4645        </Window>
    47         <Window Type="MenuWidgets/Button" Name="orxonox/MultiplayerHostButton" >
    48             <Property Name="Text" Value="Host" />
    49             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    50             <Property Name="UnifiedAreaRect" Value="{{0.5125,0},{0.6625,0},{0.7125,0},{0.7125,0}}" />
    51             <Event Name="Clicked" Function="MultiplayerMenu.MultiplayerHostButton_clicked"/>
     46        <Window name="MultiplayerHostButton" type="MenuWidgets/Button">
     47            <Property name="Text" value="Host" />
     48            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     49            <Property name="Area" value="{{0.5125,0},{0.6625,0},{0.7125,0},{0.7125,0}}" />
     50            <Event function="MultiplayerMenu.MultiplayerHostButton_clicked" name="Clicked" />
    5251        </Window>
    5352    </Window>
    5453</GUILayout>
    55 
  • code/branches/ogre1.9/data/gui/layouts/MultiplayerOptionsMenu.layout

    r6746 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/MultiplayerOptionsBackground" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/MultiplayerOptionsWindow" >
    11             <Property Name="Text" Value="Multiplayer options" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.3625,0},{0.75,0},{0.6375,0}}" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="MultiplayerOptionsBackground" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="MultiplayerOptionsWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Multiplayer options" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.25,0},{0.3625,0},{0.75,0},{0.6375,0}}" />
    1817        </Window>
    19         <Window Type="MenuWidgets/Button" Name="orxonox/MultiplayerOptionsBackButton" >
    20             <Property Name="Text" Value="Back" />
    21             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    22             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.625,0},{0.6,0},{0.675,0}}" />
    23             <Event Name="Clicked" Function="MultiplayerOptionsMenu.MultiplayerOptionsBackButton_clicked"/>
     18        <Window name="MultiplayerOptionsBackButton" type="MenuWidgets/Button">
     19            <Property name="Text" value="Back" />
     20            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     21            <Property name="Area" value="{{0.4,0},{0.625,0},{0.6,0},{0.675,0}}" />
     22            <Event function="MultiplayerOptionsMenu.MultiplayerOptionsBackButton_clicked" name="Clicked" />
    2423        </Window>
    2524    </Window>
  • code/branches/ogre1.9/data/gui/layouts/NotificationLayer.layout

    r7887 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="DefaultWindow" Name="orxonox/NotificationLayer/Root" >
    5         <Property Name="InheritsAlpha" Value="False" />
    6         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    7         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="Root" type="DefaultWindow">
     4        <Property name="InheritsAlpha" value="False" />
     5        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     6        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
    87    </Window>
    98</GUILayout>
  • code/branches/ogre1.9/data/gui/layouts/PickupInventory.layout

    r6746 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="DefaultWindow" Name="orxonox/PickupInventory/Background" >
    5         <Property Name="InheritsAlpha" Value="False" />
    6         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    7         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    8         <Window Type="MenuWidgets/StaticText" Name="orxonox/PickupInventory/PickupInventory" >
    9             <Property Name="Text" Value="Pickup Inventory" />
    10             <Property Name="Alpha" Value="0.8" />
    11             <Property Name="InheritsAlpha" Value="False" />
    12             <Property Name="HorzFormatting" Value="HorzCentred" />
    13             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    14             <Property Name="VertFormatting" Value="TopAligned" />
    15             <Property Name="UnifiedAreaRect" Value="{{0.15,0},{0.15,0},{0.85,0},{0.8,0}}" />
    16             <Window Type="MenuWidgets/StaticText" Name="orxonox/PickupInventory/Wrapper" >
    17                 <Property Name="TextColours" Value="FF4444FF" />
    18                 <Property Name="InheritsAlpha" Value="False" />
    19                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    20                 <Property Name="HorzFormatting" Value="HorzCentred" />
    21                 <Property Name="VertFormatting" Value="TopAligned" />
    22                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.15,0},{0.95,0},{0.92,0}}" />
    23                 <Window Type="MenuWidgets/ScrollablePane" Name="orxonox/PickupInventory/Inventory" >
    24                     <Property Name="ContentArea" Value="l:0 t:0 r:0 b:0" />
    25                     <Property Name="HorzStepSize" Value="0.005" />
    26                     <Property Name="VertStepSize" Value="0.005" />
    27                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    28                     <Property Name="HorzOverlapSize" Value="0.01" />
    29                     <Property Name="UnifiedAreaRect" Value="{{0.005,0},{0.01,0},{0.995,0},{0.99,0}}" />
    30                     <Property Name="VertOverlapSize" Value="0.01" />
    31                     <Property Name="HorzScrollPosition" Value="0" />
    32                     <Property Name="VertScrollPosition" Value="0" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="Background" type="DefaultWindow">
     4        <Property name="InheritsAlpha" value="False" />
     5        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     6        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     7        <Window name="PickupInventory" type="MenuWidgets/StaticText">
     8            <Property name="Text" value="Pickup Inventory" />
     9            <Property name="Alpha" value="0.8" />
     10            <Property name="InheritsAlpha" value="False" />
     11            <Property name="HorzFormatting" value="HorzCentred" />
     12            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     13            <Property name="VertFormatting" value="TopAligned" />
     14            <Property name="Area" value="{{0.15,0},{0.15,0},{0.85,0},{0.8,0}}" />
     15            <Window name="Wrapper" type="MenuWidgets/StaticText">
     16                <Property name="TextColours" value="FF4444FF" />
     17                <Property name="InheritsAlpha" value="False" />
     18                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     19                <Property name="HorzFormatting" value="HorzCentred" />
     20                <Property name="VertFormatting" value="TopAligned" />
     21                <Property name="Area" value="{{0.05,0},{0.15,0},{0.95,0},{0.92,0}}" />
     22                <Window name="Inventory" type="MenuWidgets/ScrollablePane">
     23                    <Property name="ContentArea" value="l:0 t:0 r:0 b:0" />
     24                    <Property name="HorzStepSize" value="0.005" />
     25                    <Property name="VertStepSize" value="0.005" />
     26                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     27                    <Property name="HorzOverlapSize" value="0.01" />
     28                    <Property name="Area" value="{{0.005,0},{0.01,0},{0.995,0},{0.99,0}}" />
     29                    <Property name="VertOverlapSize" value="0.01" />
     30                    <Property name="HorzScrollPosition" value="0" />
     31                    <Property name="VertScrollPosition" value="0" />
    3332                </Window>
    3433            </Window>
    3534        </Window>
    36         <Window Type="MenuWidgets/Button" Name="orxonox/PickupInventory/InventoryBackButton" >
    37             <Property Name="Text" Value="Back" />
    38             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    39             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.8350,0},{0.6,0},{0.8800,0}}" />
    40             <Event Name="Clicked" Function="PickupInventory.InventoryBackButton_clicked"/>
     35        <Window name="InventoryBackButton" type="MenuWidgets/Button">
     36            <Property name="Text" value="Back" />
     37            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     38            <Property name="Area" value="{{0.4,0},{0.8350,0},{0.6,0},{0.8800,0}}" />
     39            <Event function="PickupInventory.InventoryBackButton_clicked" name="Clicked" />
    4140        </Window>
    4241    </Window>
  • code/branches/ogre1.9/data/gui/layouts/QuestGUI.layout

    r8706 r11211  
    1 <?xml version="1.0" ?>
    2 <GUILayout>
    3     <Window Type="DefaultWindow" Name="orxonox/QuestGUI/Background">
    4         <Property Name="InheritsAlpha" Value="False" />
    5         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    6 
    7         <Window Type="DefaultWindow" Name="orxonox/QuestGUI/MainWindow">
    8             <Property Name="UnifiedAreaRect" Value="{{0.1,0},{0.1,0},{0.9,0},{0.9,0}}" />
    9 
    10             <Window Type="MenuWidgets/Titlebar" Name="orxonox/QuestGUI/Title">
    11                 <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{0,30}}" />
    12                 <Property Name="Text" Value="Your Quests"/>
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="Background" type="DefaultWindow">
     4        <Property name="InheritsAlpha" value="False" />
     5        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     6        <Window name="MainWindow" type="DefaultWindow">
     7            <Property name="Area" value="{{0.1,0},{0.1,0},{0.9,0},{0.9,0}}" />
     8            <Window name="Title" type="MenuWidgets/Titlebar">
     9                <Property name="Area" value="{{0,0},{0,0},{1,0},{0,30}}" />
     10                <Property name="Text" value="Your Quests" />
    1311            </Window>
    14 
    15             <Window Type="MenuWidgets/StaticText" Name="orxonox/QuestGUI/MainWindow/LeftPanel">
    16                 <Property Name="UnifiedAreaRect" Value="{{0,0},{0,30},{0.5,0},{1,0}}" />
    17 
    18                 <Window Type="MenuWidgets/TabButton" Name="orxonox/QuestGUI/ActiveQuestsButton">
    19                     <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{0.5,0},{0,30}}" />
    20                     <Property Name="Text" Value="active quests"/>
    21                     <Event Name="Clicked" Function="QuestGUI.showActiveQuestsButton_clicked"/>
     12            <Window name="LeftPanel" type="MenuWidgets/StaticText">
     13                <Property name="Area" value="{{0,0},{0,30},{0.5,0},{1,0}}" />
     14                <Window name="ActiveQuestsButton" type="MenuWidgets/TabButton">
     15                    <Property name="Area" value="{{0,0},{0,0},{0.5,0},{0,30}}" />
     16                    <Property name="Text" value="active quests" />
     17                    <Event function="QuestGUI.showActiveQuestsButton_clicked" name="Clicked" />
    2218                </Window>
    23                 <Window Type="MenuWidgets/TabButton" Name="orxonox/QuestGUI/FinishedQuestsButton">
    24                     <Property Name="UnifiedAreaRect" Value="{{0.5,0},{0,0},{1,0},{0,30}}" />
    25                     <Property Name="Text" Value="finished quests"/>
    26                     <Event Name="Clicked" Function="QuestGUI.showFinishedQuestsButton_clicked"/>
     19                <Window name="FinishedQuestsButton" type="MenuWidgets/TabButton">
     20                    <Property name="Area" value="{{0.5,0},{0,0},{1,0},{0,30}}" />
     21                    <Property name="Text" value="finished quests" />
     22                    <Event function="QuestGUI.showFinishedQuestsButton_clicked" name="Clicked" />
    2723                </Window>
    28 
    29                 <Window Type="MenuWidgets/Listbox" Name="orxonox/QuestGUI/QuestsList">
    30                     <Property Name="UnifiedAreaRect" Value="{{0,0},{0,30},{1,0},{1,0}}" />
    31                     <Event Name="ItemSelectionChanged" Function="QuestGUI.changeQuest_clicked"/>
     24                <Window name="QuestsList" type="MenuWidgets/Listbox">
     25                    <Property name="Area" value="{{0,0},{0,30},{1,0},{1,0}}" />
     26                    <Event function="QuestGUI.changeQuest_clicked" name="ItemSelectionChanged" />
    3227                </Window>
    3328            </Window>
    34 
    35             <Window Type="MenuWidgets/StaticText" Name="orxonox/QuestGUI/MainWindow/RightPanel">
    36                 <Property Name="UnifiedAreaRect" Value="{{0.5,0},{0,30},{1,0},{1,0}}" />
    37 
    38                 <Window Type="MenuWidgets/StaticText" Name="orxonox/QuestGUI/Quest/Title">
    39                     <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{0,30}}" />
    40                     <Property Name="Text" Value="Quest Title"/>
     29            <Window name="RightPanel" type="MenuWidgets/StaticText">
     30                <Property name="Area" value="{{0.5,0},{0,30},{1,0},{1,0}}" />
     31                <Window name="Title" type="MenuWidgets/StaticText">
     32                    <Property name="Area" value="{{0,0},{0,0},{1,0},{0,30}}" />
     33                    <Property name="Text" value="Quest Title" />
    4134                </Window>
    42 
    43                 <Window Type="MenuWidgets/ScrollablePane" Name="orxonox/QuestGUI/Quest/ScrollWrapper">
    44                     <Property Name="UnifiedAreaRect" Value="{{0,0},{0,30},{1,-4},{1,-4}}" />
    45 
    46                     <Window Type="MenuWidgets/StaticText" Name="orxonox/QuestGUI/Quest/Wrapper">
    47                         <Property Name="UnifiedAreaRect" Value="{{0,5},{0,5},{1,-5},{0,0}}" />
    48                         <Property Name="FrameEnabled" Value="false" />
    49                         <Property Name="Alpha" Value="0" />
    50 
    51                         <Window Type="MenuWidgets/StaticText" Name="orxonox/QuestGUI/Quest/Description">
    52                             <Property Name="UnifiedAreaRect" Value="{{0,5},{0,0},{1,-5},{0,0}}" />
    53                             <Property Name="InheritsAlpha" Value="False" />
    54                             <Property Name="HorzFormatting" Value="WordWrapLeftAligned" />
    55                             <Property Name="VertFormatting" Value="TopAligned" />
    56                             <Property Name="FrameEnabled" Value="false" />
    57                             <Property Name="Text" Value="Quest Description"/>
     35                <Window name="ScrollWrapper" type="MenuWidgets/ScrollablePane">
     36                    <Property name="Area" value="{{0,0},{0,30},{1,-4},{1,-4}}" />
     37                    <Window name="Wrapper" type="MenuWidgets/StaticText">
     38                        <Property name="Area" value="{{0,5},{0,5},{1,-5},{0,0}}" />
     39                        <Property name="FrameEnabled" value="false" />
     40                        <Property name="Alpha" value="0" />
     41                        <Window name="Description" type="MenuWidgets/StaticText">
     42                            <Property name="Area" value="{{0,5},{0,0},{1,-5},{0,0}}" />
     43                            <Property name="InheritsAlpha" value="False" />
     44                            <Property name="HorzFormatting" value="WordWrapLeftAligned" />
     45                            <Property name="VertFormatting" value="TopAligned" />
     46                            <Property name="FrameEnabled" value="false" />
     47                            <Property name="Text" value="Quest Description" />
    5848                        </Window>
    59 
    60                         <Window Type="MenuWidgets/Listbox" Name="orxonox/QuestGUI/Quest/SubquestsList">
    61                             <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    62                             <Property Name="InheritsAlpha" Value="False" />
    63                             <Event Name="ItemSelectionChanged" Function="QuestGUI.changeToSubquest_clicked"/>
     49                        <Window name="SubquestsList" type="MenuWidgets/Listbox">
     50                            <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     51                            <Property name="InheritsAlpha" value="False" />
     52                            <Event function="QuestGUI.changeToSubquest_clicked" name="ItemSelectionChanged" />
    6453                        </Window>
    65 
    66                         <Window Type="MenuWidgets/StaticText" Name="orxonox/QuestGUI/Quest/Hints">
    67                             <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{0,0}}" />
    68                             <Property Name="InheritsAlpha" Value="False" />
    69                             <Property Name="VertFormatting" Value="TopAligned" />
    70                             <Property Name="FrameEnabled" Value="false" />
    71                             <Property Name="Text" Value="Hints:" />
     54                        <Window name="Hints" type="MenuWidgets/StaticText">
     55                            <Property name="Area" value="{{0,0},{0,0},{1,0},{0,0}}" />
     56                            <Property name="InheritsAlpha" value="False" />
     57                            <Property name="VertFormatting" value="TopAligned" />
     58                            <Property name="FrameEnabled" value="false" />
     59                            <Property name="Text" value="Hints:" />
    7260                        </Window>
    7361                    </Window>
  • code/branches/ogre1.9/data/gui/layouts/SettingsMenu.layout

    r7163 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/SettingsMenu/Background" >
    5         <Property Name="InheritsAlpha" Value="False" />
    6         <Property Name="FrameEnabled" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/SettingsMenu/SettingsWindow" >
    11             <Property Name="Text" Value="Settings" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.3625,0},{0.75,0},{0.6375,0}}" />
    18             <Window Type="MenuWidgets/Button" Name="orxonox/SettingsMenu/GameplayButton" >
    19                 <Property Name="Text" Value="Gameplay" />
    20                 <Property Name="Disabled" Value="True" />
    21                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    22                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.181818,0},{0.45,0},{0.363636,0}}" />
    23                 <Event Name="Clicked" Function="SettingsMenu.SettingsGameplayButton_clicked"/>
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="Background" type="MenuWidgets/StaticImage">
     4        <Property name="InheritsAlpha" value="False" />
     5        <Property name="FrameEnabled" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="SettingsWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Settings" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.25,0},{0.3625,0},{0.75,0},{0.6375,0}}" />
     17            <Window name="GameplayButton" type="MenuWidgets/Button">
     18                <Property name="Text" value="Gameplay" />
     19                <Property name="Disabled" value="True" />
     20                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     21                <Property name="Area" value="{{0.05,0},{0.181818,0},{0.45,0},{0.363636,0}}" />
     22                <Event function="SettingsMenu.SettingsGameplayButton_clicked" name="Clicked" />
    2423            </Window>
    25             <Window Type="MenuWidgets/Button" Name="orxonox/SettingsMenu/MultiplayerOptionsButton" >
    26                 <Property Name="Text" Value="Multiplayer options" />
    27                 <Property Name="Disabled" Value="True" />
    28                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    29                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.454545,0},{0.45,0},{0.636363,0}}" />
    30                 <Event Name="Clicked" Function="SettingsMenu.SettingsMultiplayerOptionsButton_clicked"/>
     24            <Window name="MultiplayerOptionsButton" type="MenuWidgets/Button">
     25                <Property name="Text" value="Multiplayer options" />
     26                <Property name="Disabled" value="True" />
     27                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     28                <Property name="Area" value="{{0.05,0},{0.454545,0},{0.45,0},{0.636363,0}}" />
     29                <Event function="SettingsMenu.SettingsMultiplayerOptionsButton_clicked" name="Clicked" />
    3130            </Window>
    32             <Window Type="MenuWidgets/Button" Name="orxonox/SettingsMenu/ControlsButton" >
    33                 <Property Name="Text" Value="Controls" />
    34                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    35                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.727272,0},{0.45,0},{0.909090,0}}" />
    36                 <Event Name="Clicked" Function="SettingsMenu.SettingsControlsButton_clicked"/>
     31            <Window name="ControlsButton" type="MenuWidgets/Button">
     32                <Property name="Text" value="Controls" />
     33                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     34                <Property name="Area" value="{{0.05,0},{0.727272,0},{0.45,0},{0.909090,0}}" />
     35                <Event function="SettingsMenu.SettingsControlsButton_clicked" name="Clicked" />
    3736            </Window>
    38             <Window Type="MenuWidgets/Button" Name="orxonox/SettingsMenu/GraphicsButton" >
    39                 <Property Name="Text" Value="Graphics" />
    40                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    41                 <Property Name="UnifiedAreaRect" Value="{{0.55,0},{0.181818,0},{0.95,0},{0.363636,0}}" />
    42                 <Event Name="Clicked" Function="SettingsMenu.SettingsGraphicsButton_clicked"/>
     37            <Window name="GraphicsButton" type="MenuWidgets/Button">
     38                <Property name="Text" value="Graphics" />
     39                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     40                <Property name="Area" value="{{0.55,0},{0.181818,0},{0.95,0},{0.363636,0}}" />
     41                <Event function="SettingsMenu.SettingsGraphicsButton_clicked" name="Clicked" />
    4342            </Window>
    44             <Window Type="MenuWidgets/Button" Name="orxonox/SettingsMenu/AudioButton" >
    45                 <Property Name="Text" Value="Audio" />
    46                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    47                 <Property Name="UnifiedAreaRect" Value="{{0.55,0},{0.454545,0},{0.95,0},{0.636363,0}}" />
    48                 <Event Name="Clicked" Function="SettingsMenu.SettingsAudioButton_clicked"/>
     43            <Window name="AudioButton" type="MenuWidgets/Button">
     44                <Property name="Text" value="Audio" />
     45                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     46                <Property name="Area" value="{{0.55,0},{0.454545,0},{0.95,0},{0.636363,0}}" />
     47                <Event function="SettingsMenu.SettingsAudioButton_clicked" name="Clicked" />
    4948            </Window>
    50             <Window Type="MenuWidgets/Button" Name="orxonox/SettingsMenu/MiscellaneousButton" >
    51                 <Property Name="Text" Value="Miscellaneous" />
    52                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    53                 <Property Name="UnifiedAreaRect" Value="{{0.55,0},{0.727272,0},{0.95,0},{0.909090,0}}" />
    54                 <Event Name="Clicked" Function="SettingsMenu.SettingsMiscellaneousButton_clicked"/>
     49            <Window name="MiscellaneousButton" type="MenuWidgets/Button">
     50                <Property name="Text" value="Miscellaneous" />
     51                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     52                <Property name="Area" value="{{0.55,0},{0.727272,0},{0.95,0},{0.909090,0}}" />
     53                <Event function="SettingsMenu.SettingsMiscellaneousButton_clicked" name="Clicked" />
    5554            </Window>
    5655        </Window>
    57         <Window Type="MenuWidgets/Button" Name="orxonox/SettingsMenu/SettingsBackButton" >
    58             <Property Name="Text" Value="Back" />
    59             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    60             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
    61             <Event Name="Clicked" Function="SettingsMenu.SettingsBackButton_clicked"/>
     56        <Window name="SettingsBackButton" type="MenuWidgets/Button">
     57            <Property name="Text" value="Back" />
     58            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     59            <Property name="Area" value="{{0.4,0},{0.6625,0},{0.6,0},{0.7125,0}}" />
     60            <Event function="SettingsMenu.SettingsBackButton_clicked" name="Clicked" />
    6261        </Window>
    6362    </Window>
  • code/branches/ogre1.9/data/gui/layouts/ShipSelectionMenu.layout

    r9348 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4 
    5     <Window Type="MenuWidgets/StaticImage" Name="orxonox/ShipSelectionBackground" >
    6         <Property Name="FrameEnabled" Value="False" />
    7         <Property Name="InheritsAlpha" Value="False" />
    8         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    9         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    10         <Property Name="BackgroundEnabled" Value="False" />
    11         <!-- -->
    12         <Window Type="MenuWidgets/StaticText" Name="orxonox/ShipSelectionWindow" >
    13             <Property Name="Text" Value="ShipSelection" />
    14             <Property Name="Alpha" Value="0.8" />
    15             <Property Name="InheritsAlpha" Value="False" />
    16             <Property Name="HorzFormatting" Value="HorzCentred" />
    17             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    18             <Property Name="VertFormatting" Value="TopAligned" />
    19             <Property Name="UnifiedAreaRect" Value="{{0.2,0},{0.15,0},{0.8,0},{0.7,0}}" />
    20             <Window Type="MenuWidgets/TabControl" Name="orxonox/ShipSelectionTabControl" >
    21                 <Property Name="TabHeight" Value="{0,26.4388}" />
    22                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    23                 <Property Name="TabPanePosition" Value="Top" />
    24                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.1,0},{0.95,0},{0.925,0}}" />
    25 
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="ShipSelectionBackground" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="ShipSelectionWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="ShipSelection" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.2,0},{0.15,0},{0.8,0},{0.7,0}}" />
     17            <Window name="ShipSelectionTabControl" type="MenuWidgets/TabControl">
     18                <Property name="TabHeight" value="{0,26.4388}" />
     19                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     20                <Property name="TabPanePosition" value="Top" />
     21                <Property name="Area" value="{{0.05,0},{0.1,0},{0.95,0},{0.925,0}}" />
    2622            </Window>
    27 
    28             <!-- TODO: Ship Description and Image
    29             <Window Type="MenuWidgets/StaticImage" Name="orxonox/ShipSelectionShipImage" >
    30                 <Property Name="AlwaysOnTop" Value="True" />
    31                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    32                 <Property Name="UnifiedAreaRect" Value="{{0.55,0},{0.25,0},{0.9,0},{0.675,0}}" />
    33             </Window>
    34             <Window Type="MenuWidgets/StaticText" Name="orxonox/ShipSelectionLevelDescription" >
    35                 <Property Name="AlwaysOnTop" Value="True" />
    36                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    37                 <Property Name="VertScrollbar" Value="True" />
    38                 <Property Name="HorzScrollbar" Value="True" />
    39                 <Property Name="UnifiedAreaRect" Value="{{0.1,0},{0.725,0},{0.9,0},{0.875,0}}" />
    40             </Window>-->
    41 
    4223        </Window>
    43         <Window Type="MenuWidgets/Button" Name="orxonox/ShipSelectionStartButton" >
    44             <Property Name="Text" Value="Start" />
    45             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    46             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.725,0},{0.4,0},{0.775,0}}" />
    47             <Event Name="Clicked" Function="ShipSelectionMenu.ShipSelectionStartButton_clicked"/>
     24        <Window name="ShipSelectionStartButton" type="MenuWidgets/Button">
     25            <Property name="Text" value="Start" />
     26            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     27            <Property name="Area" value="{{0.25,0},{0.725,0},{0.4,0},{0.775,0}}" />
     28            <Event function="ShipSelectionMenu.ShipSelectionStartButton_clicked" name="Clicked" />
    4829        </Window>
    49         <!-- TODO: set ship properties
    50         <Window Type="MenuWidgets/Button" Name="orxonox/ShipSelectionConfigButton" >
    51             <Property Name="Text" Value="Configure" />
    52             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    53             <Property Name="UnifiedAreaRect" Value="{{0.425,0},{0.725,0},{0.575,0},{0.775,0}}" />
    54             <Property Name="Disabled" Value="True" />
    55             <Event Name="Clicked" Function="ShipSelectionMenu.ShipSelectionConfigButton_clicked"/>
    56         </Window> -->
    57         <Window Type="MenuWidgets/Button" Name="orxonox/ShipSelectionBackButton" >
    58             <Property Name="Text" Value="Back" />
    59             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    60             <Property Name="UnifiedAreaRect" Value="{{0.6,0},{0.725,0},{0.75,0},{0.775,0}}" />
    61             <Event Name="Clicked" Function="ShipSelectionMenu.ShipSelectionBackButton_clicked"/>
     30        <Window name="ShipSelectionBackButton" type="MenuWidgets/Button">
     31            <Property name="Text" value="Back" />
     32            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     33            <Property name="Area" value="{{0.6,0},{0.725,0},{0.75,0},{0.775,0}}" />
     34            <Event function="ShipSelectionMenu.ShipSelectionBackButton_clicked" name="Clicked" />
    6235        </Window>
    6336    </Window>
  • code/branches/ogre1.9/data/gui/layouts/SingleplayerConfigMenu.layout

    r9665 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/SingleplayerConfigMenu/Background" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/SingleplayerConfigMenu/ConfigWindow" >
    11             <Property Name="Text" Value="Config" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.15,0},{0.2125,0},{0.85,0},{0.6375,0}}" />
    18             <Window Type="MenuWidgets/StaticText" Name="orxonox/SingleplayerConfigMenu/Wrapper" >
    19                 <Property Name="TextColours" Value="FF4444FF" />
    20                 <Property Name="InheritsAlpha" Value="False" />
    21                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    22                 <Property Name="HorzFormatting" Value="HorzCentred" />
    23                 <Property Name="VertFormatting" Value="TopAligned" />
    24                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.15,0},{0.95,0},{0.92,0}}" />
    25                 <Window Type="MenuWidgets/ScrollablePane" Name="orxonox/SingleplayerConfigMenu/MiscConfigPane" >
    26                     <Property Name="ContentArea" Value="l:0 t:0 r:0 b:0" />
    27                     <Property Name="HorzStepSize" Value="0.005" />
    28                     <Property Name="VertStepSize" Value="0.005" />
    29                     <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    30                     <Property Name="HorzOverlapSize" Value="0.01" />
    31                     <Property Name="UnifiedAreaRect" Value="{{0.005,0},{0.01,0},{0.995,0},{0.99,0}}" />
    32                     <Property Name="VertOverlapSize" Value="0.01" />
    33                     <Property Name="HorzScrollPosition" Value="0" />
    34                     <Property Name="VertScrollPosition" Value="0" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="Background" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="ConfigWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Config" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.15,0},{0.2125,0},{0.85,0},{0.6375,0}}" />
     17            <Window name="Wrapper" type="MenuWidgets/StaticText">
     18                <Property name="TextColours" value="FF4444FF" />
     19                <Property name="InheritsAlpha" value="False" />
     20                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     21                <Property name="HorzFormatting" value="HorzCentred" />
     22                <Property name="VertFormatting" value="TopAligned" />
     23                <Property name="Area" value="{{0.05,0},{0.15,0},{0.95,0},{0.92,0}}" />
     24                <Window name="MiscConfigPane" type="MenuWidgets/ScrollablePane">
     25                    <Property name="ContentArea" value="l:0 t:0 r:0 b:0" />
     26                    <Property name="HorzStepSize" value="0.005" />
     27                    <Property name="VertStepSize" value="0.005" />
     28                    <Property name="MaxSize" value="{{1,0},{1,0}}" />
     29                    <Property name="HorzOverlapSize" value="0.01" />
     30                    <Property name="Area" value="{{0.005,0},{0.01,0},{0.995,0},{0.99,0}}" />
     31                    <Property name="VertOverlapSize" value="0.01" />
     32                    <Property name="HorzScrollPosition" value="0" />
     33                    <Property name="VertScrollPosition" value="0" />
    3534                </Window>
    3635            </Window>
    3736        </Window>
    38         <Window Type="MenuWidgets/Button" Name="orxonox/SingleplayerConfigMenu/CancelButton" >
    39             <Property Name="Text" Value="Cancel" />
    40             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    41             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.725,0},{0.4,0},{0.775,0}}" />
    42             <Event Name="Clicked" Function="SingleplayerConfigMenu.SingleplayerConfigCancelButton_clicked"/>
     37        <Window name="CancelButton" type="MenuWidgets/Button">
     38            <Property name="Text" value="Cancel" />
     39            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     40            <Property name="Area" value="{{0.25,0},{0.725,0},{0.4,0},{0.775,0}}" />
     41            <Event function="SingleplayerConfigMenu.SingleplayerConfigCancelButton_clicked" name="Clicked" />
    4342        </Window>
    44         <Window Type="MenuWidgets/Button" Name="orxonox/SingleplayerConfigMenu/OKButton" >
    45             <Property Name="Text" Value="OK" />
    46             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    47             <Property Name="UnifiedAreaRect" Value="{{0.6,0},{0.725,0},{0.75,0},{0.775,0}}" />
    48             <Event Name="Clicked" Function="SingleplayerConfigMenu.SingleplayerConfigOKButton_clicked"/>
     43        <Window name="OKButton" type="MenuWidgets/Button">
     44            <Property name="Text" value="OK" />
     45            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     46            <Property name="Area" value="{{0.6,0},{0.725,0},{0.75,0},{0.775,0}}" />
     47            <Event function="SingleplayerConfigMenu.SingleplayerConfigOKButton_clicked" name="Clicked" />
    4948        </Window>
    5049    </Window>
  • code/branches/ogre1.9/data/gui/layouts/SingleplayerMenu.layout

    r10258 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/SingleplayerBackground" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/SingleplayerWindow" >
    11             <Property Name="Text" Value="Singleplayer" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.2,0},{0.15,0},{0.8,0},{0.7,0}}" />
    18             <Window Type="MenuWidgets/TabControl" Name="orxonox/SingleplayerTabControl" >
    19                 <Property Name="TabHeight" Value="{0,26.4388}" />
    20                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    21                 <Property Name="TabPanePosition" Value="Top" />
    22                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.1,0},{0.95,0},{0.925,0}}" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="SingleplayerBackground" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="SingleplayerWindow" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Singleplayer" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.2,0},{0.15,0},{0.8,0},{0.7,0}}" />
     17            <Window name="SingleplayerTabControl" type="MenuWidgets/TabControl">
     18                <Property name="TabHeight" value="{0,26.4388}" />
     19                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     20                <Property name="TabPanePosition" value="Top" />
     21                <Property name="Area" value="{{0.05,0},{0.1,0},{0.95,0},{0.925,0}}" />
    2322            </Window>
    24             <Window Type="MenuWidgets/StaticImage" Name="orxonox/SingleplayerLevelImage" >
    25                 <Property Name="AlwaysOnTop" Value="True" />
    26                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    27                 <Property Name="UnifiedAreaRect" Value="{{0.55,0},{0.25,0},{0.9,0},{0.675,0}}" />
     23            <Window name="SingleplayerLevelImage" type="MenuWidgets/StaticImage">
     24                <Property name="AlwaysOnTop" value="True" />
     25                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     26                <Property name="Area" value="{{0.55,0},{0.25,0},{0.9,0},{0.675,0}}" />
    2827            </Window>
    29             <Window Type="MenuWidgets/StaticText" Name="orxonox/SingleplayerLevelDescription" >
    30                 <Property Name="AlwaysOnTop" Value="True" />
    31                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    32                 <Property Name="VertScrollbar" Value="True" />
    33                 <Property Name="HorzScrollbar" Value="False" />
    34                 <Property Name="UnifiedAreaRect" Value="{{0.1,0},{0.725,0},{0.9,0},{0.875,0}}" />
    35                 <Property Name="HorzFormatting" Value="WordWrapLeftAligned" />
     28            <Window name="SingleplayerLevelDescription" type="MenuWidgets/StaticText">
     29                <Property name="AlwaysOnTop" value="True" />
     30                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     31                <Property name="VertScrollbar" value="True" />
     32                <Property name="HorzScrollbar" value="False" />
     33                <Property name="Area" value="{{0.1,0},{0.725,0},{0.9,0},{0.875,0}}" />
     34                <Property name="HorzFormatting" value="WordWrapLeftAligned" />
    3635            </Window>
    3736        </Window>
    38         <Window Type="MenuWidgets/Button" Name="orxonox/SingleplayerStartButton" >
    39             <Property Name="Text" Value="Start" />
    40             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    41             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.725,0},{0.4,0},{0.775,0}}" />
    42             <Event Name="Clicked" Function="SingleplayerMenu.SingleplayerStartButton_clicked"/>
     37        <Window name="SingleplayerStartButton" type="MenuWidgets/Button">
     38            <Property name="Text" value="Start" />
     39            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     40            <Property name="Area" value="{{0.25,0},{0.725,0},{0.4,0},{0.775,0}}" />
     41            <Event function="SingleplayerMenu.SingleplayerStartButton_clicked" name="Clicked" />
    4342        </Window>
    44         <Window Type="MenuWidgets/Button" Name="orxonox/SingleplayerConfigButton" >
    45             <Property Name="Text" Value="Configure" />
    46             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    47             <Property Name="UnifiedAreaRect" Value="{{0.425,0},{0.725,0},{0.575,0},{0.775,0}}" />
    48             <Property Name="Disabled" Value="True" />
    49             <Event Name="Clicked" Function="SingleplayerMenu.SingleplayerConfigButton_clicked"/>
     43        <Window name="SingleplayerConfigButton" type="MenuWidgets/Button">
     44            <Property name="Text" value="Configure" />
     45            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     46            <Property name="Area" value="{{0.425,0},{0.725,0},{0.575,0},{0.775,0}}" />
     47            <Property name="Disabled" value="True" />
     48            <Event function="SingleplayerMenu.SingleplayerConfigButton_clicked" name="Clicked" />
    5049        </Window>
    51         <Window Type="MenuWidgets/Button" Name="orxonox/SingleplayerBackButton" >
    52             <Property Name="Text" Value="Back" />
    53             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    54             <Property Name="UnifiedAreaRect" Value="{{0.6,0},{0.725,0},{0.75,0},{0.775,0}}" />
    55             <Event Name="Clicked" Function="SingleplayerMenu.SingleplayerBackButton_clicked"/>
     50        <Window name="SingleplayerBackButton" type="MenuWidgets/Button">
     51            <Property name="Text" value="Back" />
     52            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     53            <Property name="Area" value="{{0.6,0},{0.725,0},{0.75,0},{0.775,0}}" />
     54            <Event function="SingleplayerMenu.SingleplayerBackButton_clicked" name="Clicked" />
    5655        </Window>
    57         <Window Type="MenuWidgets/Button" Name="orxonox/CampaignButton" >
    58             <Property Name="Text" Value="Campaign" />
    59             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    60             <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.8,0},{0.6,0},{0.85,0}}" />
    61             <Event Name="Clicked" Function="SingleplayerMenu.CampaignButton_clicked"/>
     56        <Window name="CampaignButton" type="MenuWidgets/Button">
     57            <Property name="Text" value="Campaign" />
     58            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     59            <Property name="Area" value="{{0.4,0},{0.8,0},{0.6,0},{0.85,0}}" />
     60            <Event function="SingleplayerMenu.CampaignButton_clicked" name="Clicked" />
    6261        </Window>
    6362    </Window>
  • code/branches/ogre1.9/data/gui/layouts/UndockingDialog.layout

    r9943 r11211  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <GUILayout >
    4     <Window Type="MenuWidgets/StaticImage" Name="orxonox/Undocking/Background" >
    5         <Property Name="FrameEnabled" Value="False" />
    6         <Property Name="InheritsAlpha" Value="False" />
    7         <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    8         <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
    9         <Property Name="BackgroundEnabled" Value="False" />
    10         <Window Type="MenuWidgets/StaticText" Name="orxonox/Undocking/Title" >
    11             <Property Name="Text" Value="Undocking" />
    12             <Property Name="Alpha" Value="0.8" />
    13             <Property Name="InheritsAlpha" Value="False" />
    14             <Property Name="HorzFormatting" Value="HorzCentred" />
    15             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    16             <Property Name="VertFormatting" Value="TopAligned" />
    17             <Property Name="UnifiedAreaRect" Value="{{0.25,0},{0.2875,0},{0.75,0},{0.7,0}}" />
    18             <Window Type="MenuWidgets/Listbox" Name="orxonox/Undocking/Docks" >
    19                 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    20                 <Property Name="UnifiedAreaRect" Value="{{0.05,0},{0.15,0},{0.95,0},{0.85,0}}" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUILayout version="4">
     3    <Window name="Background" type="MenuWidgets/StaticImage">
     4        <Property name="FrameEnabled" value="False" />
     5        <Property name="InheritsAlpha" value="False" />
     6        <Property name="MaxSize" value="{{1,0},{1,0}}" />
     7        <Property name="Area" value="{{0,0},{0,0},{1,0},{1,0}}" />
     8        <Property name="BackgroundEnabled" value="False" />
     9        <Window name="Title" type="MenuWidgets/StaticText">
     10            <Property name="Text" value="Undocking" />
     11            <Property name="Alpha" value="0.8" />
     12            <Property name="InheritsAlpha" value="False" />
     13            <Property name="HorzFormatting" value="HorzCentred" />
     14            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     15            <Property name="VertFormatting" value="TopAligned" />
     16            <Property name="Area" value="{{0.25,0},{0.2875,0},{0.75,0},{0.7,0}}" />
     17            <Window name="Docks" type="MenuWidgets/Listbox">
     18                <Property name="MaxSize" value="{{1,0},{1,0}}" />
     19                <Property name="Area" value="{{0.05,0},{0.15,0},{0.95,0},{0.85,0}}" />
    2120            </Window>
    2221        </Window>
    23         <Window Type="MenuWidgets/Button" Name="orxonox/Undocking/DockButton" >
    24             <Property Name="Text" Value="Undock" />
    25             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    26             <Property Name="UnifiedAreaRect" Value="{{0.2875,0},{0.725,0},{0.4875,0},{0.775,0}}" />
    27             <Event Name="Clicked" Function="UndockingDialog.undockButton_clicked"/>
     22        <Window name="DockButton" type="MenuWidgets/Button">
     23            <Property name="Text" value="Undock" />
     24            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     25            <Property name="Area" value="{{0.2875,0},{0.725,0},{0.4875,0},{0.775,0}}" />
     26            <Event function="UndockingDialog.undockButton_clicked" name="Clicked" />
    2827        </Window>
    29         <Window Type="MenuWidgets/Button" Name="orxonox/Undocking/CancelButton" >
    30             <Property Name="Text" Value="Cancel" />
    31             <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" />
    32             <Property Name="UnifiedAreaRect" Value="{{0.5125,0},{0.725,0},{0.7125,0},{0.775,0}}" />
    33             <Event Name="Clicked" Function="UndockingDialog.cancelButton_clicked"/>
     28        <Window name="CancelButton" type="MenuWidgets/Button">
     29            <Property name="Text" value="Cancel" />
     30            <Property name="MaxSize" value="{{1,0},{1,0}}" />
     31            <Property name="Area" value="{{0.5125,0},{0.725,0},{0.7125,0},{0.775,0}}" />
     32            <Event function="UndockingDialog.cancelButton_clicked" name="Clicked" />
    3433        </Window>
    3534    </Window>
  • code/branches/ogre1.9/data/gui/schemes/GUIScheme.xsd

    r8079 r11211  
    11<?xml version="1.0" ?>
    22<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
    3     <xsd:element name="GUIScheme" type="SchemeType" />
    4     <xsd:complexType name="SchemeType">
     3        <xsd:element name="GUIScheme" type="SchemeType" />
     4        <xsd:complexType name="SchemeType">
    55        <xsd:choice minOccurs="0" maxOccurs="unbounded">
    6             <xsd:element name="Imageset" type="NamedDataType" />
     6                        <xsd:element name="Imageset" type="NamedDataType" />
    77            <xsd:element name="ImagesetFromImage" type="NamedDataType" />
    8             <xsd:element name="Font" type="NamedDataType" />
     8                        <xsd:element name="Font" type="NamedDataType" />
    99            <xsd:element name="LookNFeel" type="FileDataType" />
    10             <xsd:element name="WindowSet" type="WindowSetType" />
    11             <xsd:element name="WindowRendererSet" type="WindowRendererSetType" />
    12             <xsd:element name="WindowAlias" type="WindowAliasType" />
     10                        <xsd:element name="WindowSet" type="WindowSetType" />
     11                        <xsd:element name="WindowRendererSet" type="WindowRendererSetType" />
     12                        <xsd:element name="WindowAlias" type="WindowAliasType" />
    1313            <xsd:element name="FalagardMapping" type="FalagardMapType" />
    14         </xsd:choice>
    15         <xsd:attribute name="Name" type="xsd:string" use="required" />
     14                </xsd:choice>
     15                <xsd:attribute name="name" type="xsd:string" use="required" />
     16                <xsd:attribute name="version" type="xsd:nonNegativeInteger" use="optional" default="0" />
     17        </xsd:complexType>
     18        <xsd:complexType name="WindowSetType">
     19                <xsd:sequence>
     20            <xsd:element name="WindowFactory" type="WindowFactoryType" minOccurs="0" maxOccurs="unbounded" />
     21                </xsd:sequence>
     22                <xsd:attribute name="filename" type="xsd:string" use="required" />
     23        </xsd:complexType>
     24        <xsd:complexType name="WindowRendererSetType">
     25                <xsd:sequence>
     26            <xsd:element name="WindowRendererFactory" type="WindowRendererFactoryType" minOccurs="0" maxOccurs="unbounded" />
     27                </xsd:sequence>
     28                <xsd:attribute name="filename" type="xsd:string" use="required" />
     29        </xsd:complexType>
     30    <xsd:complexType name="FileDataType">
     31        <xsd:attribute name="filename" type="xsd:string" use="required" />
     32        <xsd:attribute name="resourceGroup" type="xsd:string" use="optional"  default="" />
    1633    </xsd:complexType>
    17     <xsd:complexType name="WindowSetType">
    18         <xsd:sequence>
    19             <xsd:element name="WindowFactory" type="WindowFactoryType" minOccurs="0" maxOccurs="unbounded" />
    20         </xsd:sequence>
    21         <xsd:attribute name="Filename" type="xsd:string" use="required" />
    22     </xsd:complexType>
    23     <xsd:complexType name="WindowRendererSetType">
    24         <xsd:sequence>
    25             <xsd:element name="WindowRendererFactory" type="WindowRendererFactoryType" minOccurs="0" maxOccurs="unbounded" />
    26         </xsd:sequence>
    27         <xsd:attribute name="Filename" type="xsd:string" use="required" />
    28     </xsd:complexType>
    29     <xsd:complexType name="FileDataType">
    30         <xsd:attribute name="Filename" type="xsd:string" use="required" />
    31         <xsd:attribute name="ResourceGroup" type="xsd:string" use="optional"  default="" />
    32     </xsd:complexType>
    33     <xsd:complexType name="NamedDataType">
    34         <xsd:attribute name="Name" type="xsd:string" use="required" />
    35         <xsd:attribute name="Filename" type="xsd:string" use="required" />
    36         <xsd:attribute name="ResourceGroup" type="xsd:string" use="optional"  default="" />
    37     </xsd:complexType>
    38     <xsd:complexType name="WindowFactoryType">
    39         <xsd:attribute name="Name" type="xsd:string" use="required" />
    40     </xsd:complexType>
    41     <xsd:complexType name="WindowRendererFactoryType">
    42         <xsd:attribute name="Name" type="xsd:string" use="required" />
    43     </xsd:complexType>
    44     <xsd:complexType name="WindowAliasType">
    45         <xsd:attribute name="Alias" type="xsd:string" use="required" />
    46         <xsd:attribute name="Target" type="xsd:string" use="required" />
    47     </xsd:complexType>
     34        <xsd:complexType name="NamedDataType">
     35                <xsd:attribute name="name" type="xsd:string" use="optional" default="" />
     36                <xsd:attribute name="filename" type="xsd:string" use="required" />
     37                <xsd:attribute name="resourceGroup" type="xsd:string" use="optional"  default="" />
     38        </xsd:complexType>
     39        <xsd:complexType name="WindowFactoryType">
     40                <xsd:attribute name="name" type="xsd:string" use="required" />
     41        </xsd:complexType>
     42        <xsd:complexType name="WindowRendererFactoryType">
     43                <xsd:attribute name="name" type="xsd:string" use="required" />
     44        </xsd:complexType>
     45        <xsd:complexType name="WindowAliasType">
     46                <xsd:attribute name="alias" type="xsd:string" use="required" />
     47                <xsd:attribute name="target" type="xsd:string" use="required" />
     48        </xsd:complexType>
    4849    <xsd:complexType name="FalagardMapType">
    49         <xsd:attribute name="WindowType" type="xsd:string" use="required" />
    50         <xsd:attribute name="TargetType" type="xsd:string" use="required" />
    51         <xsd:attribute name="Renderer" type="xsd:string" use="required" />
    52         <xsd:attribute name="LookNFeel" type="xsd:string" use="required" />
     50        <xsd:attribute name="windowType" type="xsd:string" use="required" />
     51        <xsd:attribute name="targetType" type="xsd:string" use="required" />
     52                <xsd:attribute name="renderer" type="xsd:string" use="required" />
     53        <xsd:attribute name="lookNFeel" type="xsd:string" use="required" />
     54        <xsd:attribute name="renderEffect" type="xsd:string" use="optional" default="" />
    5355    </xsd:complexType>
    5456</xsd:schema>
  • code/branches/ogre1.9/data/gui/schemes/OrxonoxGUIScheme.scheme

    r7163 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="OrxonoxGUI">
    3     <Imageset Name="MainMenuBackground" Filename="MainMenuBackground.imageset"/>
    4     <Imageset Name="PickupInventory" Filename="PickupInventory.imageset"/>
    5     <Font Name="BlueHighway-12" Filename="bluehighway-12.font" />
    6     <Font Name="BlueHighway-10" Filename="bluehighway-10.font" />
    7     <Font Name="BlueHighway-8"  Filename="bluehighway-8.font" />
    8     <Font Name="Monofur-10"     Filename="Monofur-10.font" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="OrxonoxGUI" version="5">
     3    <Imageset filename="MainMenuBackground.imageset" name="MainMenuBackground" />
     4    <Imageset filename="PickupInventory.imageset" name="PickupInventory" />
     5    <Font filename="bluehighway-12.font" name="BlueHighway-12" />
     6    <Font filename="bluehighway-10.font" name="BlueHighway-10" />
     7    <Font filename="bluehighway-8.font" name="BlueHighway-8" />
     8    <Font filename="Monofur-10.font" name="Monofur-10" />
    99</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/OrxonoxHUDWidgets.scheme

    r7887 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="OrxonoxHUDWidgets">
    3     <WindowAlias Alias="HUDWidgets/StaticImage"              Target="OrxonoxLook/StaticImage" />
    4     <WindowAlias Alias="HUDWidgets/StaticText"               Target="OrxonoxLook/StaticText" />
    5     <WindowAlias Alias="HUDWidgets/TabButtonPane"            Target="OrxonoxLook/TabButtonPane" />
    6     <WindowAlias Alias="HUDWidgets/TabContentPane"           Target="OrxonoxLook/TabContentPane" />
    7     <WindowAlias Alias="HUDWidgets/Checkbox"                 Target="OrxonoxLook/Checkbox" />
    8     <WindowAlias Alias="HUDWidgets/Combobox"                 Target="OrxonoxLook/Combobox" />
    9     <WindowAlias Alias="HUDWidgets/ComboDropList"            Target="OrxonoxLook/ComboDropList" />
    10     <WindowAlias Alias="HUDWidgets/ComboEditbox"             Target="OrxonoxLook/ComboEditbox" />
    11     <WindowAlias Alias="HUDWidgets/Editbox"                  Target="OrxonoxLook/Editbox" />
    12     <WindowAlias Alias="HUDWidgets/FrameWindow"              Target="OrxonoxLook/FrameWindow" />
    13     <WindowAlias Alias="HUDWidgets/GroupBox"                 Target="OrxonoxLook/GroupBox" />
    14     <WindowAlias Alias="HUDWidgets/ItemListbox"              Target="OrxonoxLook/ItemListbox" />
    15     <WindowAlias Alias="HUDWidgets/ListboxItem"              Target="OrxonoxLook/ListboxItem" />
    16     <WindowAlias Alias="HUDWidgets/Listbox"                  Target="OrxonoxLook/Listbox" />
    17     <WindowAlias Alias="HUDWidgets/ListHeader"               Target="OrxonoxLook/ListHeader" />
    18     <WindowAlias Alias="HUDWidgets/ListHeaderSegment"        Target="OrxonoxLook/ListHeaderSegment" />
    19     <WindowAlias Alias="HUDWidgets/MultiLineEditbox"         Target="OrxonoxLook/MultiLineEditbox" />
    20     <WindowAlias Alias="HUDWidgets/Menubar"                  Target="OrxonoxLook/Menubar" />
    21     <WindowAlias Alias="HUDWidgets/MenuItem"                 Target="OrxonoxLook/MenuItem" />
    22     <WindowAlias Alias="HUDWidgets/MultiColumnList"          Target="OrxonoxLook/MultiColumnList" />
    23     <WindowAlias Alias="HUDWidgets/PopupMenu"                Target="OrxonoxLook/PopupMenu" />
    24     <WindowAlias Alias="HUDWidgets/ProgressBar"              Target="OrxonoxLook/ProgressBar" />
    25     <WindowAlias Alias="HUDWidgets/Button"                   Target="OrxonoxLook/Button" />
    26     <WindowAlias Alias="HUDWidgets/ImageButton"              Target="OrxonoxLook/ImageButton" />
    27     <WindowAlias Alias="HUDWidgets/RadioButton"              Target="OrxonoxLook/RadioButton" />
    28     <WindowAlias Alias="HUDWidgets/SystemButton"             Target="OrxonoxLook/SystemButton" />
    29     <WindowAlias Alias="HUDWidgets/ScrollablePane"           Target="OrxonoxLook/ScrollablePane" />
    30     <WindowAlias Alias="HUDWidgets/HorizontalScrollbar"      Target="OrxonoxLook/HorizontalScrollbar" />
    31     <WindowAlias Alias="HUDWidgets/VerticalScrollbar"        Target="OrxonoxLook/VerticalScrollbar" />
    32     <WindowAlias Alias="HUDWidgets/Slider"                   Target="OrxonoxLook/Slider" />
    33     <WindowAlias Alias="HUDWidgets/Spinner"                  Target="OrxonoxLook/Spinner" />
    34     <WindowAlias Alias="HUDWidgets/TabButton"                Target="OrxonoxLook/TabButton" />
    35     <WindowAlias Alias="HUDWidgets/TabControl"               Target="OrxonoxLook/TabControl" />
    36     <WindowAlias Alias="HUDWidgets/HorizontalScrollbarThumb" Target="OrxonoxLook/HorizontalScrollbarThumb" />
    37     <WindowAlias Alias="HUDWidgets/SliderThumb"              Target="OrxonoxLook/SliderThumb" />
    38     <WindowAlias Alias="HUDWidgets/VerticalScrollbarThumb"   Target="OrxonoxLook/VerticalScrollbarThumb" />
    39     <WindowAlias Alias="HUDWidgets/Titlebar"                 Target="OrxonoxLook/Titlebar" />
    40     <WindowAlias Alias="HUDWidgets/Tooltip"                  Target="OrxonoxLook/Tooltip" />
    41     <WindowAlias Alias="HUDWidgets/Tree"                     Target="OrxonoxLook/Tree" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="OrxonoxHUDWidgets" version="5">
     3    <WindowAlias alias="HUDWidgets/StaticImage" target="OrxonoxLook/StaticImage" />
     4    <WindowAlias alias="HUDWidgets/StaticText" target="OrxonoxLook/StaticText" />
     5    <WindowAlias alias="HUDWidgets/TabButtonPane" target="OrxonoxLook/TabButtonPane" />
     6    <WindowAlias alias="HUDWidgets/TabContentPane" target="OrxonoxLook/TabContentPane" />
     7    <WindowAlias alias="HUDWidgets/Checkbox" target="OrxonoxLook/Checkbox" />
     8    <WindowAlias alias="HUDWidgets/Combobox" target="OrxonoxLook/Combobox" />
     9    <WindowAlias alias="HUDWidgets/ComboDropList" target="OrxonoxLook/ComboDropList" />
     10    <WindowAlias alias="HUDWidgets/ComboEditbox" target="OrxonoxLook/ComboEditbox" />
     11    <WindowAlias alias="HUDWidgets/Editbox" target="OrxonoxLook/Editbox" />
     12    <WindowAlias alias="HUDWidgets/FrameWindow" target="OrxonoxLook/FrameWindow" />
     13    <WindowAlias alias="HUDWidgets/GroupBox" target="OrxonoxLook/GroupBox" />
     14    <WindowAlias alias="HUDWidgets/ItemListbox" target="OrxonoxLook/ItemListbox" />
     15    <WindowAlias alias="HUDWidgets/ListboxItem" target="OrxonoxLook/ListboxItem" />
     16    <WindowAlias alias="HUDWidgets/Listbox" target="OrxonoxLook/Listbox" />
     17    <WindowAlias alias="HUDWidgets/ListHeader" target="OrxonoxLook/ListHeader" />
     18    <WindowAlias alias="HUDWidgets/ListHeaderSegment" target="OrxonoxLook/ListHeaderSegment" />
     19    <WindowAlias alias="HUDWidgets/MultiLineEditbox" target="OrxonoxLook/MultiLineEditbox" />
     20    <WindowAlias alias="HUDWidgets/Menubar" target="OrxonoxLook/Menubar" />
     21    <WindowAlias alias="HUDWidgets/MenuItem" target="OrxonoxLook/MenuItem" />
     22    <WindowAlias alias="HUDWidgets/MultiColumnList" target="OrxonoxLook/MultiColumnList" />
     23    <WindowAlias alias="HUDWidgets/PopupMenu" target="OrxonoxLook/PopupMenu" />
     24    <WindowAlias alias="HUDWidgets/ProgressBar" target="OrxonoxLook/ProgressBar" />
     25    <WindowAlias alias="HUDWidgets/Button" target="OrxonoxLook/Button" />
     26    <WindowAlias alias="HUDWidgets/ImageButton" target="OrxonoxLook/ImageButton" />
     27    <WindowAlias alias="HUDWidgets/RadioButton" target="OrxonoxLook/RadioButton" />
     28    <WindowAlias alias="HUDWidgets/SystemButton" target="OrxonoxLook/SystemButton" />
     29    <WindowAlias alias="HUDWidgets/ScrollablePane" target="OrxonoxLook/ScrollablePane" />
     30    <WindowAlias alias="HUDWidgets/HorizontalScrollbar" target="OrxonoxLook/HorizontalScrollbar" />
     31    <WindowAlias alias="HUDWidgets/VerticalScrollbar" target="OrxonoxLook/VerticalScrollbar" />
     32    <WindowAlias alias="HUDWidgets/Slider" target="OrxonoxLook/Slider" />
     33    <WindowAlias alias="HUDWidgets/Spinner" target="OrxonoxLook/Spinner" />
     34    <WindowAlias alias="HUDWidgets/TabButton" target="OrxonoxLook/TabButton" />
     35    <WindowAlias alias="HUDWidgets/TabControl" target="OrxonoxLook/TabControl" />
     36    <WindowAlias alias="HUDWidgets/HorizontalScrollbarThumb" target="OrxonoxLook/HorizontalScrollbarThumb" />
     37    <WindowAlias alias="HUDWidgets/SliderThumb" target="OrxonoxLook/SliderThumb" />
     38    <WindowAlias alias="HUDWidgets/VerticalScrollbarThumb" target="OrxonoxLook/VerticalScrollbarThumb" />
     39    <WindowAlias alias="HUDWidgets/Titlebar" target="OrxonoxLook/Titlebar" />
     40    <WindowAlias alias="HUDWidgets/Tooltip" target="OrxonoxLook/Tooltip" />
     41    <WindowAlias alias="HUDWidgets/Tree" target="OrxonoxLook/Tree" />
    4242</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/OrxonoxLook.scheme

    r8079 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="OrxonoxLook">
    3     <Imageset Name="OrxonoxLook" Filename="OrxonoxLook.imageset" />
    4     <LookNFeel Filename="OrxonoxLook.looknfeel" />
    5     <WindowRendererSet Filename="CEGUIFalagardWRBase" />
    6 
    7     <!-- Standard widgets -->
    8     <FalagardMapping WindowType="OrxonoxLook/StaticImage"              TargetType="DefaultWindow"           Renderer="Falagard/StaticImage"       LookNFeel="OrxonoxLook/StaticImage" />
    9     <FalagardMapping WindowType="OrxonoxLook/StaticText"               TargetType="DefaultWindow"           Renderer="Falagard/StaticText"        LookNFeel="OrxonoxLook/StaticText" />
    10     <FalagardMapping WindowType="OrxonoxLook/TabButtonPane"            TargetType="DefaultWindow"           Renderer="Falagard/Default"           LookNFeel="OrxonoxLook/TabButtonPane" />
    11     <FalagardMapping WindowType="OrxonoxLook/TabContentPane"           TargetType="DefaultWindow"           Renderer="Falagard/Default"           LookNFeel="OrxonoxLook/TabContentPane" />
    12     <FalagardMapping WindowType="OrxonoxLook/Checkbox"                 TargetType="CEGUI/Checkbox"          Renderer="Falagard/ToggleButton"      LookNFeel="OrxonoxLook/Checkbox" />
    13     <FalagardMapping WindowType="OrxonoxLook/Combobox"                 TargetType="CEGUI/Combobox"          Renderer="Falagard/Default"           LookNFeel="OrxonoxLook/Combobox" />
    14     <FalagardMapping WindowType="OrxonoxLook/ComboDropList"            TargetType="CEGUI/ComboDropList"     Renderer="Falagard/Listbox"           LookNFeel="OrxonoxLook/ComboDropList" />
    15     <FalagardMapping WindowType="OrxonoxLook/ComboEditbox"             TargetType="CEGUI/Editbox"           Renderer="Falagard/Editbox"           LookNFeel="OrxonoxLook/ComboEditbox" />
    16     <FalagardMapping WindowType="OrxonoxLook/Editbox"                  TargetType="CEGUI/Editbox"           Renderer="Falagard/Editbox"           LookNFeel="OrxonoxLook/Editbox" />
    17     <FalagardMapping WindowType="OrxonoxLook/FrameWindow"              TargetType="CEGUI/FrameWindow"       Renderer="Falagard/FrameWindow"       LookNFeel="OrxonoxLook/FrameWindow" />
    18     <FalagardMapping WindowType="OrxonoxLook/GroupBox"                 TargetType="CEGUI/GroupBox"          Renderer="Falagard/Default"           LookNFeel="OrxonoxLook/GroupBox" />
    19     <FalagardMapping WindowType="OrxonoxLook/ItemListbox"              TargetType="CEGUI/ItemListbox"       Renderer="Falagard/ItemListbox"       LookNFeel="OrxonoxLook/ItemListbox" />
    20     <FalagardMapping WindowType="OrxonoxLook/ListboxItem"              TargetType="CEGUI/ItemEntry"         Renderer="Falagard/ItemEntry"         LookNFeel="OrxonoxLook/ListboxItem" />
    21     <FalagardMapping WindowType="OrxonoxLook/Listbox"                  TargetType="CEGUI/Listbox"           Renderer="Falagard/Listbox"           LookNFeel="OrxonoxLook/Listbox" />
    22     <FalagardMapping WindowType="OrxonoxLook/ListHeader"               TargetType="CEGUI/ListHeader"        Renderer="Falagard/ListHeader"        LookNFeel="OrxonoxLook/ListHeader" />
    23     <FalagardMapping WindowType="OrxonoxLook/ListHeaderSegment"        TargetType="CEGUI/ListHeaderSegment" Renderer="Falagard/ListHeaderSegment" LookNFeel="OrxonoxLook/ListHeaderSegment" />
    24     <FalagardMapping WindowType="OrxonoxLook/MultiLineEditbox"         TargetType="CEGUI/MultiLineEditbox"  Renderer="Falagard/MultiLineEditbox"  LookNFeel="OrxonoxLook/MultiLineEditbox" />
    25     <FalagardMapping WindowType="OrxonoxLook/Menubar"                  TargetType="CEGUI/Menubar"           Renderer="Falagard/Menubar"           LookNFeel="OrxonoxLook/Menubar" />
    26     <FalagardMapping WindowType="OrxonoxLook/MenuItem"                 TargetType="CEGUI/MenuItem"          Renderer="Falagard/MenuItem"          LookNFeel="OrxonoxLook/MenuItem" />
    27     <FalagardMapping WindowType="OrxonoxLook/MultiColumnList"          TargetType="CEGUI/MultiColumnList"   Renderer="Falagard/MultiColumnList"   LookNFeel="OrxonoxLook/MultiColumnList" />
    28     <FalagardMapping WindowType="OrxonoxLook/PopupMenu"                TargetType="CEGUI/PopupMenu"         Renderer="Falagard/PopupMenu"         LookNFeel="OrxonoxLook/PopupMenu" />
    29     <FalagardMapping WindowType="OrxonoxLook/ProgressBar"              TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="OrxonoxLook/ProgressBar" />
    30     <FalagardMapping WindowType="OrxonoxLook/Button"                   TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="OrxonoxLook/Button" />
    31     <FalagardMapping WindowType="OrxonoxLook/ImageButton"              TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="OrxonoxLook/ImageButton" />
    32     <FalagardMapping WindowType="OrxonoxLook/RadioButton"              TargetType="CEGUI/RadioButton"       Renderer="Falagard/ToggleButton"      LookNFeel="OrxonoxLook/RadioButton" />
    33     <FalagardMapping WindowType="OrxonoxLook/SystemButton"             TargetType="CEGUI/PushButton"        Renderer="Falagard/SystemButton"      LookNFeel="OrxonoxLook/Button" />
    34     <FalagardMapping WindowType="OrxonoxLook/ScrollablePane"           TargetType="CEGUI/ScrollablePane"    Renderer="Falagard/ScrollablePane"    LookNFeel="OrxonoxLook/ScrollablePane" />
    35     <FalagardMapping WindowType="OrxonoxLook/HorizontalScrollbar"      TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="OrxonoxLook/HorizontalScrollbar" />
    36     <FalagardMapping WindowType="OrxonoxLook/VerticalScrollbar"        TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="OrxonoxLook/VerticalScrollbar" />
    37     <FalagardMapping WindowType="OrxonoxLook/Slider"                   TargetType="CEGUI/Slider"            Renderer="Falagard/Slider"            LookNFeel="OrxonoxLook/Slider" />
    38     <FalagardMapping WindowType="OrxonoxLook/Spinner"                  TargetType="CEGUI/Spinner"           Renderer="Falagard/Default"           LookNFeel="OrxonoxLook/Spinner" />
    39     <FalagardMapping WindowType="OrxonoxLook/TabButton"                TargetType="CEGUI/TabButton"         Renderer="Falagard/TabButton"         LookNFeel="OrxonoxLook/TabButton" />
    40     <FalagardMapping WindowType="OrxonoxLook/TabControl"               TargetType="CEGUI/TabControl"        Renderer="Falagard/TabControl"        LookNFeel="OrxonoxLook/TabControl" />
    41     <FalagardMapping WindowType="OrxonoxLook/HorizontalScrollbarThumb" TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="OrxonoxLook/HorizontalScrollbarThumb" />
    42     <FalagardMapping WindowType="OrxonoxLook/SliderThumb"              TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="OrxonoxLook/SliderThumb" />
    43     <FalagardMapping WindowType="OrxonoxLook/VerticalScrollbarThumb"   TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="OrxonoxLook/VerticalScrollbarThumb" />
    44     <FalagardMapping WindowType="OrxonoxLook/Titlebar"                 TargetType="CEGUI/Titlebar"          Renderer="Falagard/Titlebar"          LookNFeel="OrxonoxLook/Titlebar" />
    45     <FalagardMapping WindowType="OrxonoxLook/Tooltip"                  TargetType="CEGUI/Tooltip"           Renderer="Falagard/Tooltip"           LookNFeel="OrxonoxLook/Tooltip" />
    46     <FalagardMapping WindowType="OrxonoxLook/Tree"                     TargetType="CEGUI/Tree"              Renderer="Falagard/Tree"              LookNFeel="OrxonoxLook/Tree" />
    47 
    48     <!-- Additional widgets -->
    49     <FalagardMapping WindowType="OrxonoxLook/AlternateProgressBar"        TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="OrxonoxLook/AltProgressBar" />
    50     <FalagardMapping WindowType="OrxonoxLook/VUMeter"                     TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="OrxonoxLook/VUMeter" />
    51     <FalagardMapping WindowType="OrxonoxLook/LargeVerticalScrollbar"      TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="OrxonoxLook/LargeVerticalScrollbar" />
    52     <FalagardMapping WindowType="OrxonoxLook/LargeVerticalScrollbarThumb" TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="OrxonoxLook/LargeVerticalScrollbarThumb" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="OrxonoxLook" version="5">
     3    <Imageset filename="OrxonoxLook.imageset" name="OrxonoxLook" />
     4    <LookNFeel filename="OrxonoxLook.looknfeel" />
     5    <WindowRendererSet filename="CEGUICoreWindowRendererSet" />
     6    <FalagardMapping lookNFeel="OrxonoxLook/StaticImage" renderer="Core/StaticImage" targetType="DefaultWindow" windowType="OrxonoxLook/StaticImage" />
     7    <FalagardMapping lookNFeel="OrxonoxLook/StaticText" renderer="Core/StaticText" targetType="DefaultWindow" windowType="OrxonoxLook/StaticText" />
     8    <FalagardMapping lookNFeel="OrxonoxLook/TabButtonPane" renderer="Core/Default" targetType="DefaultWindow" windowType="OrxonoxLook/TabButtonPane" />
     9    <FalagardMapping lookNFeel="OrxonoxLook/TabContentPane" renderer="Core/Default" targetType="DefaultWindow" windowType="OrxonoxLook/TabContentPane" />
     10    <FalagardMapping lookNFeel="OrxonoxLook/Checkbox" renderer="Core/ToggleButton" targetType="CEGUI/ToggleButton" windowType="OrxonoxLook/Checkbox" />
     11    <FalagardMapping lookNFeel="OrxonoxLook/Combobox" renderer="Core/Default" targetType="CEGUI/Combobox" windowType="OrxonoxLook/Combobox" />
     12    <FalagardMapping lookNFeel="OrxonoxLook/ComboDropList" renderer="Core/Listbox" targetType="CEGUI/ComboDropList" windowType="OrxonoxLook/ComboDropList" />
     13    <FalagardMapping lookNFeel="OrxonoxLook/ComboEditbox" renderer="Core/Editbox" targetType="CEGUI/Editbox" windowType="OrxonoxLook/ComboEditbox" />
     14    <FalagardMapping lookNFeel="OrxonoxLook/Editbox" renderer="Core/Editbox" targetType="CEGUI/Editbox" windowType="OrxonoxLook/Editbox" />
     15    <FalagardMapping lookNFeel="OrxonoxLook/FrameWindow" renderer="Core/FrameWindow" targetType="CEGUI/FrameWindow" windowType="OrxonoxLook/FrameWindow" />
     16    <FalagardMapping lookNFeel="OrxonoxLook/GroupBox" renderer="Core/Default" targetType="CEGUI/GroupBox" windowType="OrxonoxLook/GroupBox" />
     17    <FalagardMapping lookNFeel="OrxonoxLook/ItemListbox" renderer="Core/ItemListbox" targetType="CEGUI/ItemListbox" windowType="OrxonoxLook/ItemListbox" />
     18    <FalagardMapping lookNFeel="OrxonoxLook/ListboxItem" renderer="Core/ItemEntry" targetType="CEGUI/ItemEntry" windowType="OrxonoxLook/ListboxItem" />
     19    <FalagardMapping lookNFeel="OrxonoxLook/Listbox" renderer="Core/Listbox" targetType="CEGUI/Listbox" windowType="OrxonoxLook/Listbox" />
     20    <FalagardMapping lookNFeel="OrxonoxLook/ListHeader" renderer="Core/ListHeader" targetType="CEGUI/ListHeader" windowType="OrxonoxLook/ListHeader" />
     21    <FalagardMapping lookNFeel="OrxonoxLook/ListHeaderSegment" renderer="Core/ListHeaderSegment" targetType="CEGUI/ListHeaderSegment" windowType="OrxonoxLook/ListHeaderSegment" />
     22    <FalagardMapping lookNFeel="OrxonoxLook/MultiLineEditbox" renderer="Core/MultiLineEditbox" targetType="CEGUI/MultiLineEditbox" windowType="OrxonoxLook/MultiLineEditbox" />
     23    <FalagardMapping lookNFeel="OrxonoxLook/Menubar" renderer="Core/Menubar" targetType="CEGUI/Menubar" windowType="OrxonoxLook/Menubar" />
     24    <FalagardMapping lookNFeel="OrxonoxLook/MenuItem" renderer="Core/MenuItem" targetType="CEGUI/MenuItem" windowType="OrxonoxLook/MenuItem" />
     25    <FalagardMapping lookNFeel="OrxonoxLook/MultiColumnList" renderer="Core/MultiColumnList" targetType="CEGUI/MultiColumnList" windowType="OrxonoxLook/MultiColumnList" />
     26    <FalagardMapping lookNFeel="OrxonoxLook/PopupMenu" renderer="Core/PopupMenu" targetType="CEGUI/PopupMenu" windowType="OrxonoxLook/PopupMenu" />
     27    <FalagardMapping lookNFeel="OrxonoxLook/ProgressBar" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="OrxonoxLook/ProgressBar" />
     28    <FalagardMapping lookNFeel="OrxonoxLook/Button" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="OrxonoxLook/Button" />
     29    <FalagardMapping lookNFeel="OrxonoxLook/ImageButton" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="OrxonoxLook/ImageButton" />
     30    <FalagardMapping lookNFeel="OrxonoxLook/RadioButton" renderer="Core/ToggleButton" targetType="CEGUI/RadioButton" windowType="OrxonoxLook/RadioButton" />
     31    <FalagardMapping lookNFeel="OrxonoxLook/Button" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="OrxonoxLook/SystemButton" />
     32    <FalagardMapping lookNFeel="OrxonoxLook/ScrollablePane" renderer="Core/ScrollablePane" targetType="CEGUI/ScrollablePane" windowType="OrxonoxLook/ScrollablePane" />
     33    <FalagardMapping lookNFeel="OrxonoxLook/HorizontalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="OrxonoxLook/HorizontalScrollbar" />
     34    <FalagardMapping lookNFeel="OrxonoxLook/VerticalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="OrxonoxLook/VerticalScrollbar" />
     35    <FalagardMapping lookNFeel="OrxonoxLook/Slider" renderer="Core/Slider" targetType="CEGUI/Slider" windowType="OrxonoxLook/Slider" />
     36    <FalagardMapping lookNFeel="OrxonoxLook/Spinner" renderer="Core/Default" targetType="CEGUI/Spinner" windowType="OrxonoxLook/Spinner" />
     37    <FalagardMapping lookNFeel="OrxonoxLook/TabButton" renderer="Core/TabButton" targetType="CEGUI/TabButton" windowType="OrxonoxLook/TabButton" />
     38    <FalagardMapping lookNFeel="OrxonoxLook/TabControl" renderer="Core/TabControl" targetType="CEGUI/TabControl" windowType="OrxonoxLook/TabControl" />
     39    <FalagardMapping lookNFeel="OrxonoxLook/HorizontalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="OrxonoxLook/HorizontalScrollbarThumb" />
     40    <FalagardMapping lookNFeel="OrxonoxLook/SliderThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="OrxonoxLook/SliderThumb" />
     41    <FalagardMapping lookNFeel="OrxonoxLook/VerticalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="OrxonoxLook/VerticalScrollbarThumb" />
     42    <FalagardMapping lookNFeel="OrxonoxLook/Titlebar" renderer="Core/Titlebar" targetType="CEGUI/Titlebar" windowType="OrxonoxLook/Titlebar" />
     43    <FalagardMapping lookNFeel="OrxonoxLook/Tooltip" renderer="Core/Tooltip" targetType="CEGUI/Tooltip" windowType="OrxonoxLook/Tooltip" />
     44    <FalagardMapping lookNFeel="OrxonoxLook/Tree" renderer="Core/Tree" targetType="CEGUI/Tree" windowType="OrxonoxLook/Tree" />
     45    <FalagardMapping lookNFeel="OrxonoxLook/AltProgressBar" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="OrxonoxLook/AlternateProgressBar" />
     46    <FalagardMapping lookNFeel="OrxonoxLook/VUMeter" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="OrxonoxLook/VUMeter" />
     47    <FalagardMapping lookNFeel="OrxonoxLook/LargeVerticalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="OrxonoxLook/LargeVerticalScrollbar" />
     48    <FalagardMapping lookNFeel="OrxonoxLook/LargeVerticalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="OrxonoxLook/LargeVerticalScrollbarThumb" />
    5349</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/OrxonoxMenuWidgets.scheme

    r7887 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="OrxonoxMenuWidgets">
    3     <WindowAlias Alias="MenuWidgets/StaticImage"              Target="OrxonoxLook/StaticImage" />
    4     <WindowAlias Alias="MenuWidgets/StaticText"               Target="OrxonoxLook/StaticText" />
    5     <WindowAlias Alias="MenuWidgets/TabButtonPane"            Target="OrxonoxLook/TabButtonPane" />
    6     <WindowAlias Alias="MenuWidgets/TabContentPane"           Target="OrxonoxLook/TabContentPane" />
    7     <WindowAlias Alias="MenuWidgets/Checkbox"                 Target="OrxonoxLook/Checkbox" />
    8     <WindowAlias Alias="MenuWidgets/Combobox"                 Target="OrxonoxLook/Combobox" />
    9     <WindowAlias Alias="MenuWidgets/ComboDropList"            Target="OrxonoxLook/ComboDropList" />
    10     <WindowAlias Alias="MenuWidgets/ComboEditbox"             Target="OrxonoxLook/ComboEditbox" />
    11     <WindowAlias Alias="MenuWidgets/Editbox"                  Target="OrxonoxLook/Editbox" />
    12     <WindowAlias Alias="MenuWidgets/FrameWindow"              Target="OrxonoxLook/FrameWindow" />
    13     <WindowAlias Alias="MenuWidgets/GroupBox"                 Target="OrxonoxLook/GroupBox" />
    14     <WindowAlias Alias="MenuWidgets/ItemListbox"              Target="OrxonoxLook/ItemListbox" />
    15     <WindowAlias Alias="MenuWidgets/ListboxItem"              Target="OrxonoxLook/ListboxItem" />
    16     <WindowAlias Alias="MenuWidgets/Listbox"                  Target="OrxonoxLook/Listbox" />
    17     <WindowAlias Alias="MenuWidgets/ListHeader"               Target="OrxonoxLook/ListHeader" />
    18     <WindowAlias Alias="MenuWidgets/ListHeaderSegment"        Target="OrxonoxLook/ListHeaderSegment" />
    19     <WindowAlias Alias="MenuWidgets/MultiLineEditbox"         Target="OrxonoxLook/MultiLineEditbox" />
    20     <WindowAlias Alias="MenuWidgets/Menubar"                  Target="OrxonoxLook/Menubar" />
    21     <WindowAlias Alias="MenuWidgets/MenuItem"                 Target="OrxonoxLook/MenuItem" />
    22     <WindowAlias Alias="MenuWidgets/MultiColumnList"          Target="OrxonoxLook/MultiColumnList" />
    23     <WindowAlias Alias="MenuWidgets/PopupMenu"                Target="OrxonoxLook/PopupMenu" />
    24     <WindowAlias Alias="MenuWidgets/ProgressBar"              Target="OrxonoxLook/ProgressBar" />
    25     <WindowAlias Alias="MenuWidgets/Button"                   Target="OrxonoxLook/Button" />
    26     <WindowAlias Alias="MenuWidgets/ImageButton"              Target="OrxonoxLook/ImageButton" />
    27     <WindowAlias Alias="MenuWidgets/RadioButton"              Target="OrxonoxLook/RadioButton" />
    28     <WindowAlias Alias="MenuWidgets/SystemButton"             Target="OrxonoxLook/SystemButton" />
    29     <WindowAlias Alias="MenuWidgets/ScrollablePane"           Target="OrxonoxLook/ScrollablePane" />
    30     <WindowAlias Alias="MenuWidgets/HorizontalScrollbar"      Target="OrxonoxLook/HorizontalScrollbar" />
    31     <WindowAlias Alias="MenuWidgets/VerticalScrollbar"        Target="OrxonoxLook/VerticalScrollbar" />
    32     <WindowAlias Alias="MenuWidgets/Slider"                   Target="OrxonoxLook/Slider" />
    33     <WindowAlias Alias="MenuWidgets/Spinner"                  Target="OrxonoxLook/Spinner" />
    34     <WindowAlias Alias="MenuWidgets/TabButton"                Target="OrxonoxLook/TabButton" />
    35     <WindowAlias Alias="MenuWidgets/TabControl"               Target="OrxonoxLook/TabControl" />
    36     <WindowAlias Alias="MenuWidgets/HorizontalScrollbarThumb" Target="OrxonoxLook/HorizontalScrollbarThumb" />
    37     <WindowAlias Alias="MenuWidgets/SliderThumb"              Target="OrxonoxLook/SliderThumb" />
    38     <WindowAlias Alias="MenuWidgets/VerticalScrollbarThumb"   Target="OrxonoxLook/VerticalScrollbarThumb" />
    39     <WindowAlias Alias="MenuWidgets/Titlebar"                 Target="OrxonoxLook/Titlebar" />
    40     <WindowAlias Alias="MenuWidgets/Tooltip"                  Target="OrxonoxLook/Tooltip" />
    41     <WindowAlias Alias="MenuWidgets/Tree"                     Target="OrxonoxLook/Tree" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="OrxonoxMenuWidgets" version="5">
     3    <WindowAlias alias="MenuWidgets/StaticImage" target="OrxonoxLook/StaticImage" />
     4    <WindowAlias alias="MenuWidgets/StaticText" target="OrxonoxLook/StaticText" />
     5    <WindowAlias alias="MenuWidgets/TabButtonPane" target="OrxonoxLook/TabButtonPane" />
     6    <WindowAlias alias="MenuWidgets/TabContentPane" target="OrxonoxLook/TabContentPane" />
     7    <WindowAlias alias="MenuWidgets/Checkbox" target="OrxonoxLook/Checkbox" />
     8    <WindowAlias alias="MenuWidgets/Combobox" target="OrxonoxLook/Combobox" />
     9    <WindowAlias alias="MenuWidgets/ComboDropList" target="OrxonoxLook/ComboDropList" />
     10    <WindowAlias alias="MenuWidgets/ComboEditbox" target="OrxonoxLook/ComboEditbox" />
     11    <WindowAlias alias="MenuWidgets/Editbox" target="OrxonoxLook/Editbox" />
     12    <WindowAlias alias="MenuWidgets/FrameWindow" target="OrxonoxLook/FrameWindow" />
     13    <WindowAlias alias="MenuWidgets/GroupBox" target="OrxonoxLook/GroupBox" />
     14    <WindowAlias alias="MenuWidgets/ItemListbox" target="OrxonoxLook/ItemListbox" />
     15    <WindowAlias alias="MenuWidgets/ListboxItem" target="OrxonoxLook/ListboxItem" />
     16    <WindowAlias alias="MenuWidgets/Listbox" target="OrxonoxLook/Listbox" />
     17    <WindowAlias alias="MenuWidgets/ListHeader" target="OrxonoxLook/ListHeader" />
     18    <WindowAlias alias="MenuWidgets/ListHeaderSegment" target="OrxonoxLook/ListHeaderSegment" />
     19    <WindowAlias alias="MenuWidgets/MultiLineEditbox" target="OrxonoxLook/MultiLineEditbox" />
     20    <WindowAlias alias="MenuWidgets/Menubar" target="OrxonoxLook/Menubar" />
     21    <WindowAlias alias="MenuWidgets/MenuItem" target="OrxonoxLook/MenuItem" />
     22    <WindowAlias alias="MenuWidgets/MultiColumnList" target="OrxonoxLook/MultiColumnList" />
     23    <WindowAlias alias="MenuWidgets/PopupMenu" target="OrxonoxLook/PopupMenu" />
     24    <WindowAlias alias="MenuWidgets/ProgressBar" target="OrxonoxLook/ProgressBar" />
     25    <WindowAlias alias="MenuWidgets/Button" target="OrxonoxLook/Button" />
     26    <WindowAlias alias="MenuWidgets/ImageButton" target="OrxonoxLook/ImageButton" />
     27    <WindowAlias alias="MenuWidgets/RadioButton" target="OrxonoxLook/RadioButton" />
     28    <WindowAlias alias="MenuWidgets/SystemButton" target="OrxonoxLook/SystemButton" />
     29    <WindowAlias alias="MenuWidgets/ScrollablePane" target="OrxonoxLook/ScrollablePane" />
     30    <WindowAlias alias="MenuWidgets/HorizontalScrollbar" target="OrxonoxLook/HorizontalScrollbar" />
     31    <WindowAlias alias="MenuWidgets/VerticalScrollbar" target="OrxonoxLook/VerticalScrollbar" />
     32    <WindowAlias alias="MenuWidgets/Slider" target="OrxonoxLook/Slider" />
     33    <WindowAlias alias="MenuWidgets/Spinner" target="OrxonoxLook/Spinner" />
     34    <WindowAlias alias="MenuWidgets/TabButton" target="OrxonoxLook/TabButton" />
     35    <WindowAlias alias="MenuWidgets/TabControl" target="OrxonoxLook/TabControl" />
     36    <WindowAlias alias="MenuWidgets/HorizontalScrollbarThumb" target="OrxonoxLook/HorizontalScrollbarThumb" />
     37    <WindowAlias alias="MenuWidgets/SliderThumb" target="OrxonoxLook/SliderThumb" />
     38    <WindowAlias alias="MenuWidgets/VerticalScrollbarThumb" target="OrxonoxLook/VerticalScrollbarThumb" />
     39    <WindowAlias alias="MenuWidgets/Titlebar" target="OrxonoxLook/Titlebar" />
     40    <WindowAlias alias="MenuWidgets/Tooltip" target="OrxonoxLook/Tooltip" />
     41    <WindowAlias alias="MenuWidgets/Tree" target="OrxonoxLook/Tree" />
    4242</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/SleekSpaceHUDWidgets.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="SleekSpaceHUDWidgets">
    3     <WindowAlias Alias="HUDWidgets/StaticImage"              Target="SleekSpace/StaticImage" />
    4     <WindowAlias Alias="HUDWidgets/StaticText"               Target="SleekSpace/StaticText" />
    5     <WindowAlias Alias="HUDWidgets/TabButtonPane"            Target="SleekSpace/TabButtonPane" />
    6     <WindowAlias Alias="HUDWidgets/TabContentPane"           Target="SleekSpace/TabContentPane" />
    7     <WindowAlias Alias="HUDWidgets/Checkbox"                 Target="SleekSpace/Checkbox" />
    8     <WindowAlias Alias="HUDWidgets/Combobox"                 Target="SleekSpace/Combobox" />
    9     <WindowAlias Alias="HUDWidgets/ComboDropList"            Target="SleekSpace/ComboDropList" />
    10     <WindowAlias Alias="HUDWidgets/ComboEditbox"             Target="SleekSpace/ComboEditbox" />
    11     <WindowAlias Alias="HUDWidgets/Editbox"                  Target="SleekSpace/Editbox" />
    12     <WindowAlias Alias="HUDWidgets/FrameWindow"              Target="SleekSpace/FrameWindow" />
    13     <WindowAlias Alias="HUDWidgets/GroupBox"                 Target="SleekSpace/GroupBox" />
    14     <WindowAlias Alias="HUDWidgets/ItemListbox"              Target="SleekSpace/ItemListbox" />
    15     <WindowAlias Alias="HUDWidgets/ListboxItem"              Target="SleekSpace/ListboxItem" />
    16     <WindowAlias Alias="HUDWidgets/Listbox"                  Target="SleekSpace/Listbox" />
    17     <WindowAlias Alias="HUDWidgets/ListHeader"               Target="SleekSpace/ListHeader" />
    18     <WindowAlias Alias="HUDWidgets/ListHeaderSegment"        Target="SleekSpace/ListHeaderSegment" />
    19     <WindowAlias Alias="HUDWidgets/MultiLineEditbox"         Target="SleekSpace/MultiLineEditbox" />
    20     <WindowAlias Alias="HUDWidgets/Menubar"                  Target="SleekSpace/Menubar" />
    21     <WindowAlias Alias="HUDWidgets/MenuItem"                 Target="SleekSpace/MenuItem" />
    22     <WindowAlias Alias="HUDWidgets/MultiColumnList"          Target="SleekSpace/MultiColumnList" />
    23     <WindowAlias Alias="HUDWidgets/PopupMenu"                Target="SleekSpace/PopupMenu" />
    24     <WindowAlias Alias="HUDWidgets/ProgressBar"              Target="SleekSpace/ProgressBar" />
    25     <WindowAlias Alias="HUDWidgets/Button"                   Target="SleekSpace/Button" />
    26     <WindowAlias Alias="HUDWidgets/ImageButton"              Target="SleekSpace/ImageButton" />
    27     <WindowAlias Alias="HUDWidgets/RadioButton"              Target="SleekSpace/RadioButton" />
    28     <WindowAlias Alias="HUDWidgets/SystemButton"             Target="SleekSpace/SystemButton" />
    29     <WindowAlias Alias="HUDWidgets/ScrollablePane"           Target="SleekSpace/ScrollablePane" />
    30     <WindowAlias Alias="HUDWidgets/HorizontalScrollbar"      Target="SleekSpace/HorizontalScrollbar" />
    31     <WindowAlias Alias="HUDWidgets/VerticalScrollbar"        Target="SleekSpace/VerticalScrollbar" />
    32     <WindowAlias Alias="HUDWidgets/Slider"                   Target="SleekSpace/Slider" />
    33     <WindowAlias Alias="HUDWidgets/Spinner"                  Target="SleekSpace/Spinner" />
    34     <WindowAlias Alias="HUDWidgets/TabButton"                Target="SleekSpace/TabButton" />
    35     <WindowAlias Alias="HUDWidgets/TabControl"               Target="SleekSpace/TabControl" />
    36     <WindowAlias Alias="HUDWidgets/HorizontalScrollbarThumb" Target="SleekSpace/HorizontalScrollbarThumb" />
    37     <WindowAlias Alias="HUDWidgets/SliderThumb"              Target="SleekSpace/SliderThumb" />
    38     <WindowAlias Alias="HUDWidgets/VerticalScrollbarThumb"   Target="SleekSpace/VerticalScrollbarThumb" />
    39     <WindowAlias Alias="HUDWidgets/Titlebar"                 Target="SleekSpace/Titlebar" />
    40     <WindowAlias Alias="HUDWidgets/Tooltip"                  Target="SleekSpace/Tooltip" />
    41     <WindowAlias Alias="HUDWidgets/Tree"                     Target="SleekSpace/Tree" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="SleekSpaceHUDWidgets" version="5">
     3    <WindowAlias alias="HUDWidgets/StaticImage" target="SleekSpace/StaticImage" />
     4    <WindowAlias alias="HUDWidgets/StaticText" target="SleekSpace/StaticText" />
     5    <WindowAlias alias="HUDWidgets/TabButtonPane" target="SleekSpace/TabButtonPane" />
     6    <WindowAlias alias="HUDWidgets/TabContentPane" target="SleekSpace/TabContentPane" />
     7    <WindowAlias alias="HUDWidgets/Checkbox" target="SleekSpace/Checkbox" />
     8    <WindowAlias alias="HUDWidgets/Combobox" target="SleekSpace/Combobox" />
     9    <WindowAlias alias="HUDWidgets/ComboDropList" target="SleekSpace/ComboDropList" />
     10    <WindowAlias alias="HUDWidgets/ComboEditbox" target="SleekSpace/ComboEditbox" />
     11    <WindowAlias alias="HUDWidgets/Editbox" target="SleekSpace/Editbox" />
     12    <WindowAlias alias="HUDWidgets/FrameWindow" target="SleekSpace/FrameWindow" />
     13    <WindowAlias alias="HUDWidgets/GroupBox" target="SleekSpace/GroupBox" />
     14    <WindowAlias alias="HUDWidgets/ItemListbox" target="SleekSpace/ItemListbox" />
     15    <WindowAlias alias="HUDWidgets/ListboxItem" target="SleekSpace/ListboxItem" />
     16    <WindowAlias alias="HUDWidgets/Listbox" target="SleekSpace/Listbox" />
     17    <WindowAlias alias="HUDWidgets/ListHeader" target="SleekSpace/ListHeader" />
     18    <WindowAlias alias="HUDWidgets/ListHeaderSegment" target="SleekSpace/ListHeaderSegment" />
     19    <WindowAlias alias="HUDWidgets/MultiLineEditbox" target="SleekSpace/MultiLineEditbox" />
     20    <WindowAlias alias="HUDWidgets/Menubar" target="SleekSpace/Menubar" />
     21    <WindowAlias alias="HUDWidgets/MenuItem" target="SleekSpace/MenuItem" />
     22    <WindowAlias alias="HUDWidgets/MultiColumnList" target="SleekSpace/MultiColumnList" />
     23    <WindowAlias alias="HUDWidgets/PopupMenu" target="SleekSpace/PopupMenu" />
     24    <WindowAlias alias="HUDWidgets/ProgressBar" target="SleekSpace/ProgressBar" />
     25    <WindowAlias alias="HUDWidgets/Button" target="SleekSpace/Button" />
     26    <WindowAlias alias="HUDWidgets/ImageButton" target="SleekSpace/ImageButton" />
     27    <WindowAlias alias="HUDWidgets/RadioButton" target="SleekSpace/RadioButton" />
     28    <WindowAlias alias="HUDWidgets/SystemButton" target="SleekSpace/SystemButton" />
     29    <WindowAlias alias="HUDWidgets/ScrollablePane" target="SleekSpace/ScrollablePane" />
     30    <WindowAlias alias="HUDWidgets/HorizontalScrollbar" target="SleekSpace/HorizontalScrollbar" />
     31    <WindowAlias alias="HUDWidgets/VerticalScrollbar" target="SleekSpace/VerticalScrollbar" />
     32    <WindowAlias alias="HUDWidgets/Slider" target="SleekSpace/Slider" />
     33    <WindowAlias alias="HUDWidgets/Spinner" target="SleekSpace/Spinner" />
     34    <WindowAlias alias="HUDWidgets/TabButton" target="SleekSpace/TabButton" />
     35    <WindowAlias alias="HUDWidgets/TabControl" target="SleekSpace/TabControl" />
     36    <WindowAlias alias="HUDWidgets/HorizontalScrollbarThumb" target="SleekSpace/HorizontalScrollbarThumb" />
     37    <WindowAlias alias="HUDWidgets/SliderThumb" target="SleekSpace/SliderThumb" />
     38    <WindowAlias alias="HUDWidgets/VerticalScrollbarThumb" target="SleekSpace/VerticalScrollbarThumb" />
     39    <WindowAlias alias="HUDWidgets/Titlebar" target="SleekSpace/Titlebar" />
     40    <WindowAlias alias="HUDWidgets/Tooltip" target="SleekSpace/Tooltip" />
     41    <WindowAlias alias="HUDWidgets/Tree" target="SleekSpace/Tree" />
    4242</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/SleekSpaceLook.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="SleekSpaceLook">
    3     <Imageset Name="SleekSpace" Filename="SleekSpace.imageset" />
    4     <Imageset Name="TaharezLook" Filename="TaharezLook.imageset" />
    5     <LookNFeel Filename="SleekSpace.looknfeel" />
    6     <LookNFeel Filename="TaharezLook.looknfeel" />
    7     <WindowRendererSet Filename="CEGUIFalagardWRBase" />
    8 
    9     <!-- Standard widgets -->
    10     <FalagardMapping WindowType="SleekSpace/StaticImage"                 TargetType="DefaultWindow"           Renderer="Falagard/StaticImage"       LookNFeel="SleekSpace/StaticImage" />
    11     <FalagardMapping WindowType="SleekSpace/StaticText"                  TargetType="DefaultWindow"           Renderer="Falagard/StaticText"        LookNFeel="SleekSpace/StaticText" />
    12     <FalagardMapping WindowType="SleekSpace/Checkbox"                    TargetType="CEGUI/Checkbox"          Renderer="Falagard/ToggleButton"      LookNFeel="SleekSpace/Checkbox" />
    13     <FalagardMapping WindowType="SleekSpace/Combobox"                    TargetType="CEGUI/Combobox"          Renderer="Falagard/Default"           LookNFeel="SleekSpace/Combobox" />
    14     <FalagardMapping WindowType="SleekSpace/ComboDropList"               TargetType="CEGUI/ComboDropList"     Renderer="Falagard/Listbox"           LookNFeel="SleekSpace/ComboDropList" />
    15     <FalagardMapping WindowType="SleekSpace/ComboEditbox"                TargetType="CEGUI/Editbox"           Renderer="Falagard/Editbox"           LookNFeel="SleekSpace/ComboEditbox" />
    16     <FalagardMapping WindowType="SleekSpace/Editbox"                     TargetType="CEGUI/Editbox"           Renderer="Falagard/Editbox"           LookNFeel="SleekSpace/Editbox" />
    17     <FalagardMapping WindowType="SleekSpace/FrameWindow"                 TargetType="CEGUI/FrameWindow"       Renderer="Falagard/FrameWindow"       LookNFeel="SleekSpace/FrameWindow" />
    18     <FalagardMapping WindowType="SleekSpace/Listbox"                     TargetType="CEGUI/Listbox"           Renderer="Falagard/Listbox"           LookNFeel="SleekSpace/Listbox" />
    19     <FalagardMapping WindowType="SleekSpace/ListHeader"                  TargetType="CEGUI/ListHeader"        Renderer="Falagard/ListHeader"        LookNFeel="SleekSpace/ListHeader" />
    20     <FalagardMapping WindowType="SleekSpace/ListHeaderSegment"           TargetType="CEGUI/ListHeaderSegment" Renderer="Falagard/ListHeaderSegment" LookNFeel="SleekSpace/ListHeaderSegment" />
    21     <FalagardMapping WindowType="SleekSpace/MultiLineEditbox"            TargetType="CEGUI/MultiLineEditbox"  Renderer="Falagard/MultiLineEditbox"  LookNFeel="SleekSpace/MultiLineEditbox" />
    22     <FalagardMapping WindowType="SleekSpace/Menubar"                     TargetType="CEGUI/Menubar"           Renderer="Falagard/Menubar"           LookNFeel="SleekSpace/Menubar" />
    23     <FalagardMapping WindowType="SleekSpace/MenuItem"                    TargetType="CEGUI/MenuItem"          Renderer="Falagard/MenuItem"          LookNFeel="SleekSpace/MenuItem" />
    24     <FalagardMapping WindowType="SleekSpace/MultiColumnList"             TargetType="CEGUI/MultiColumnList"   Renderer="Falagard/MultiColumnList"   LookNFeel="SleekSpace/MultiColumnList" />
    25     <FalagardMapping WindowType="SleekSpace/PopupMenu"                   TargetType="CEGUI/PopupMenu"         Renderer="Falagard/PopupMenu"         LookNFeel="SleekSpace/PopupMenu" />
    26     <FalagardMapping WindowType="SleekSpace/ProgressBar"                 TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="SleekSpace/ProgressBar" />
    27     <FalagardMapping WindowType="SleekSpace/Button"                      TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="SleekSpace/Button" />
    28     <FalagardMapping WindowType="SleekSpace/RadioButton"                 TargetType="CEGUI/RadioButton"       Renderer="Falagard/ToggleButton"      LookNFeel="SleekSpace/RadioButton" />
    29     <FalagardMapping WindowType="SleekSpace/SystemButton"                TargetType="CEGUI/PushButton"        Renderer="Falagard/SystemButton"      LookNFeel="SleekSpace/Button" />
    30     <FalagardMapping WindowType="SleekSpace/ScrollablePane"              TargetType="CEGUI/ScrollablePane"    Renderer="Falagard/ScrollablePane"    LookNFeel="SleekSpace/ScrollablePane" />
    31     <FalagardMapping WindowType="SleekSpace/HorizontalScrollbar"         TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="SleekSpace/HorizontalScrollbar" />
    32     <FalagardMapping WindowType="SleekSpace/VerticalScrollbar"           TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="SleekSpace/VerticalScrollbar" />
    33     <FalagardMapping WindowType="SleekSpace/Slider"                      TargetType="CEGUI/Slider"            Renderer="Falagard/Slider"            LookNFeel="SleekSpace/Slider" />
    34     <FalagardMapping WindowType="SleekSpace/Spinner"                     TargetType="CEGUI/Spinner"           Renderer="Falagard/Default"           LookNFeel="SleekSpace/Spinner" />
    35     <FalagardMapping WindowType="SleekSpace/TabButton"                   TargetType="CEGUI/TabButton"         Renderer="Falagard/TabButton"         LookNFeel="SleekSpace/TabButton" />
    36     <FalagardMapping WindowType="SleekSpace/TabControl"                  TargetType="CEGUI/TabControl"        Renderer="Falagard/TabControl"        LookNFeel="SleekSpace/TabControl" />
    37     <FalagardMapping WindowType="SleekSpace/HorizontalScrollbarThumb"    TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="SleekSpace/HorizontalScrollbarThumb" />
    38     <FalagardMapping WindowType="SleekSpace/SliderThumb"                 TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="SleekSpace/SliderThumb" />
    39     <FalagardMapping WindowType="SleekSpace/VerticalScrollbarThumb"      TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="SleekSpace/VerticalScrollbarThumb" />
    40     <FalagardMapping WindowType="SleekSpace/Titlebar"                    TargetType="CEGUI/Titlebar"          Renderer="Falagard/Titlebar"          LookNFeel="SleekSpace/Titlebar" />
    41     <FalagardMapping WindowType="SleekSpace/Tooltip"                     TargetType="CEGUI/Tooltip"           Renderer="Falagard/Tooltip"           LookNFeel="SleekSpace/Tooltip" />
    42    
    43     <!-- Missing widgets (using Taharez LookNFeel) -->
    44     <FalagardMapping WindowType="SleekSpace/TabButtonPane"               TargetType="DefaultWindow"           Renderer="Falagard/Default"           LookNFeel="TaharezLook/TabButtonPane" />
    45     <FalagardMapping WindowType="SleekSpace/TabContentPane"              TargetType="DefaultWindow"           Renderer="Falagard/Default"           LookNFeel="TaharezLook/TabContentPane" />
    46     <FalagardMapping WindowType="SleekSpace/GroupBox"                    TargetType="CEGUI/GroupBox"          Renderer="Falagard/Default"           LookNFeel="TaharezLook/GroupBox" />
    47     <FalagardMapping WindowType="SleekSpace/ListboxItem"                 TargetType="CEGUI/ItemEntry"         Renderer="Falagard/ItemEntry"         LookNFeel="TaharezLook/ListboxItem" />
    48     <FalagardMapping WindowType="SleekSpace/ItemListbox"                 TargetType="CEGUI/ItemListbox"       Renderer="Falagard/ItemListbox"       LookNFeel="TaharezLook/ItemListbox" />
    49     <FalagardMapping WindowType="SleekSpace/ImageButton"                 TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="TaharezLook/ImageButton" />
    50     <FalagardMapping WindowType="SleekSpace/Tree"                        TargetType="CEGUI/Tree"              Renderer="Falagard/Tree"              LookNFeel="TaharezLook/Tree" />
    51 
    52     <!-- Additional widgets -->
    53     <FalagardMapping WindowType="SleekSpace/TabPane"                     TargetType="DefaultWindow"           Renderer="Falagard/TabPane"           LookNFeel="SleekSpace/TabPane" />
    54     <FalagardMapping WindowType="SleekSpace/ReticleWindow"               TargetType="CEGUI/FrameWindow"       Renderer="Falagard/FrameWindow"       LookNFeel="SleekSpace/ReticleWindow" />
    55     <FalagardMapping WindowType="SleekSpace/AlternateProgressBar"        TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="SleekSpace/AltProgressBar" />
    56     <FalagardMapping WindowType="SleekSpace/VUMeter"                     TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="SleekSpace/VUMeter" />
    57     <FalagardMapping WindowType="SleekSpace/LargeVerticalScrollbar"      TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="SleekSpace/LargeVerticalScrollbar" />
    58     <FalagardMapping WindowType="SleekSpace/VSlider"                     TargetType="CEGUI/Slider"            Renderer="Falagard/Slider"            LookNFeel="SleekSpace/VSlider" />
    59     <FalagardMapping WindowType="SleekSpace/LargeVerticalScrollbarThumb" TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="SleekSpace/LargeVerticalScrollbarThumb" />
    60     <FalagardMapping WindowType="SleekSpace/VSliderThumb"                TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="SleekSpace/VSliderThumb" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="SleekSpaceLook" version="5">
     3    <Imageset filename="SleekSpace.imageset" name="SleekSpace" />
     4    <Imageset filename="TaharezLook.imageset" name="TaharezLook" />
     5    <LookNFeel filename="SleekSpace.looknfeel" />
     6    <LookNFeel filename="TaharezLook.looknfeel" />
     7    <WindowRendererSet filename="CEGUICoreWindowRendererSet" />
     8    <FalagardMapping lookNFeel="SleekSpace/StaticImage" renderer="Core/StaticImage" targetType="DefaultWindow" windowType="SleekSpace/StaticImage" />
     9    <FalagardMapping lookNFeel="SleekSpace/StaticText" renderer="Core/StaticText" targetType="DefaultWindow" windowType="SleekSpace/StaticText" />
     10    <FalagardMapping lookNFeel="SleekSpace/Checkbox" renderer="Core/ToggleButton" targetType="CEGUI/ToggleButton" windowType="SleekSpace/Checkbox" />
     11    <FalagardMapping lookNFeel="SleekSpace/Combobox" renderer="Core/Default" targetType="CEGUI/Combobox" windowType="SleekSpace/Combobox" />
     12    <FalagardMapping lookNFeel="SleekSpace/ComboDropList" renderer="Core/Listbox" targetType="CEGUI/ComboDropList" windowType="SleekSpace/ComboDropList" />
     13    <FalagardMapping lookNFeel="SleekSpace/ComboEditbox" renderer="Core/Editbox" targetType="CEGUI/Editbox" windowType="SleekSpace/ComboEditbox" />
     14    <FalagardMapping lookNFeel="SleekSpace/Editbox" renderer="Core/Editbox" targetType="CEGUI/Editbox" windowType="SleekSpace/Editbox" />
     15    <FalagardMapping lookNFeel="SleekSpace/FrameWindow" renderer="Core/FrameWindow" targetType="CEGUI/FrameWindow" windowType="SleekSpace/FrameWindow" />
     16    <FalagardMapping lookNFeel="SleekSpace/Listbox" renderer="Core/Listbox" targetType="CEGUI/Listbox" windowType="SleekSpace/Listbox" />
     17    <FalagardMapping lookNFeel="SleekSpace/ListHeader" renderer="Core/ListHeader" targetType="CEGUI/ListHeader" windowType="SleekSpace/ListHeader" />
     18    <FalagardMapping lookNFeel="SleekSpace/ListHeaderSegment" renderer="Core/ListHeaderSegment" targetType="CEGUI/ListHeaderSegment" windowType="SleekSpace/ListHeaderSegment" />
     19    <FalagardMapping lookNFeel="SleekSpace/MultiLineEditbox" renderer="Core/MultiLineEditbox" targetType="CEGUI/MultiLineEditbox" windowType="SleekSpace/MultiLineEditbox" />
     20    <FalagardMapping lookNFeel="SleekSpace/Menubar" renderer="Core/Menubar" targetType="CEGUI/Menubar" windowType="SleekSpace/Menubar" />
     21    <FalagardMapping lookNFeel="SleekSpace/MenuItem" renderer="Core/MenuItem" targetType="CEGUI/MenuItem" windowType="SleekSpace/MenuItem" />
     22    <FalagardMapping lookNFeel="SleekSpace/MultiColumnList" renderer="Core/MultiColumnList" targetType="CEGUI/MultiColumnList" windowType="SleekSpace/MultiColumnList" />
     23    <FalagardMapping lookNFeel="SleekSpace/PopupMenu" renderer="Core/PopupMenu" targetType="CEGUI/PopupMenu" windowType="SleekSpace/PopupMenu" />
     24    <FalagardMapping lookNFeel="SleekSpace/ProgressBar" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="SleekSpace/ProgressBar" />
     25    <FalagardMapping lookNFeel="SleekSpace/Button" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="SleekSpace/Button" />
     26    <FalagardMapping lookNFeel="SleekSpace/RadioButton" renderer="Core/ToggleButton" targetType="CEGUI/RadioButton" windowType="SleekSpace/RadioButton" />
     27    <FalagardMapping lookNFeel="SleekSpace/Button" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="SleekSpace/SystemButton" />
     28    <FalagardMapping lookNFeel="SleekSpace/ScrollablePane" renderer="Core/ScrollablePane" targetType="CEGUI/ScrollablePane" windowType="SleekSpace/ScrollablePane" />
     29    <FalagardMapping lookNFeel="SleekSpace/HorizontalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="SleekSpace/HorizontalScrollbar" />
     30    <FalagardMapping lookNFeel="SleekSpace/VerticalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="SleekSpace/VerticalScrollbar" />
     31    <FalagardMapping lookNFeel="SleekSpace/Slider" renderer="Core/Slider" targetType="CEGUI/Slider" windowType="SleekSpace/Slider" />
     32    <FalagardMapping lookNFeel="SleekSpace/Spinner" renderer="Core/Default" targetType="CEGUI/Spinner" windowType="SleekSpace/Spinner" />
     33    <FalagardMapping lookNFeel="SleekSpace/TabButton" renderer="Core/TabButton" targetType="CEGUI/TabButton" windowType="SleekSpace/TabButton" />
     34    <FalagardMapping lookNFeel="SleekSpace/TabControl" renderer="Core/TabControl" targetType="CEGUI/TabControl" windowType="SleekSpace/TabControl" />
     35    <FalagardMapping lookNFeel="SleekSpace/HorizontalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="SleekSpace/HorizontalScrollbarThumb" />
     36    <FalagardMapping lookNFeel="SleekSpace/SliderThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="SleekSpace/SliderThumb" />
     37    <FalagardMapping lookNFeel="SleekSpace/VerticalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="SleekSpace/VerticalScrollbarThumb" />
     38    <FalagardMapping lookNFeel="SleekSpace/Titlebar" renderer="Core/Titlebar" targetType="CEGUI/Titlebar" windowType="SleekSpace/Titlebar" />
     39    <FalagardMapping lookNFeel="SleekSpace/Tooltip" renderer="Core/Tooltip" targetType="CEGUI/Tooltip" windowType="SleekSpace/Tooltip" />
     40    <FalagardMapping lookNFeel="TaharezLook/TabButtonPane" renderer="Core/Default" targetType="DefaultWindow" windowType="SleekSpace/TabButtonPane" />
     41    <FalagardMapping lookNFeel="TaharezLook/TabContentPane" renderer="Core/Default" targetType="DefaultWindow" windowType="SleekSpace/TabContentPane" />
     42    <FalagardMapping lookNFeel="TaharezLook/GroupBox" renderer="Core/Default" targetType="CEGUI/GroupBox" windowType="SleekSpace/GroupBox" />
     43    <FalagardMapping lookNFeel="TaharezLook/ListboxItem" renderer="Core/ItemEntry" targetType="CEGUI/ItemEntry" windowType="SleekSpace/ListboxItem" />
     44    <FalagardMapping lookNFeel="TaharezLook/ItemListbox" renderer="Core/ItemListbox" targetType="CEGUI/ItemListbox" windowType="SleekSpace/ItemListbox" />
     45    <FalagardMapping lookNFeel="TaharezLook/ImageButton" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="SleekSpace/ImageButton" />
     46    <FalagardMapping lookNFeel="TaharezLook/Tree" renderer="Core/Tree" targetType="CEGUI/Tree" windowType="SleekSpace/Tree" />
     47    <FalagardMapping lookNFeel="SleekSpace/TabPane" renderer="Core/TabPane" targetType="DefaultWindow" windowType="SleekSpace/TabPane" />
     48    <FalagardMapping lookNFeel="SleekSpace/ReticleWindow" renderer="Core/FrameWindow" targetType="CEGUI/FrameWindow" windowType="SleekSpace/ReticleWindow" />
     49    <FalagardMapping lookNFeel="SleekSpace/AltProgressBar" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="SleekSpace/AlternateProgressBar" />
     50    <FalagardMapping lookNFeel="SleekSpace/VUMeter" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="SleekSpace/VUMeter" />
     51    <FalagardMapping lookNFeel="SleekSpace/LargeVerticalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="SleekSpace/LargeVerticalScrollbar" />
     52    <FalagardMapping lookNFeel="SleekSpace/VSlider" renderer="Core/Slider" targetType="CEGUI/Slider" windowType="SleekSpace/VSlider" />
     53    <FalagardMapping lookNFeel="SleekSpace/LargeVerticalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="SleekSpace/LargeVerticalScrollbarThumb" />
     54    <FalagardMapping lookNFeel="SleekSpace/VSliderThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="SleekSpace/VSliderThumb" />
    6155</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/SleekSpaceMenuWidgets.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="SleekSpaceMenuWidgets">
    3     <WindowAlias Alias="MenuWidgets/StaticImage"              Target="SleekSpace/StaticImage" />
    4     <WindowAlias Alias="MenuWidgets/StaticText"               Target="SleekSpace/StaticText" />
    5     <WindowAlias Alias="MenuWidgets/TabButtonPane"            Target="SleekSpace/TabButtonPane" />
    6     <WindowAlias Alias="MenuWidgets/TabContentPane"           Target="SleekSpace/TabContentPane" />
    7     <WindowAlias Alias="MenuWidgets/Checkbox"                 Target="SleekSpace/Checkbox" />
    8     <WindowAlias Alias="MenuWidgets/Combobox"                 Target="SleekSpace/Combobox" />
    9     <WindowAlias Alias="MenuWidgets/ComboDropList"            Target="SleekSpace/ComboDropList" />
    10     <WindowAlias Alias="MenuWidgets/ComboEditbox"             Target="SleekSpace/ComboEditbox" />
    11     <WindowAlias Alias="MenuWidgets/Editbox"                  Target="SleekSpace/Editbox" />
    12     <WindowAlias Alias="MenuWidgets/FrameWindow"              Target="SleekSpace/FrameWindow" />
    13     <WindowAlias Alias="MenuWidgets/GroupBox"                 Target="SleekSpace/GroupBox" />
    14     <WindowAlias Alias="MenuWidgets/ItemListbox"              Target="SleekSpace/ItemListbox" />
    15     <WindowAlias Alias="MenuWidgets/ListboxItem"              Target="SleekSpace/ListboxItem" />
    16     <WindowAlias Alias="MenuWidgets/Listbox"                  Target="SleekSpace/Listbox" />
    17     <WindowAlias Alias="MenuWidgets/ListHeader"               Target="SleekSpace/ListHeader" />
    18     <WindowAlias Alias="MenuWidgets/ListHeaderSegment"        Target="SleekSpace/ListHeaderSegment" />
    19     <WindowAlias Alias="MenuWidgets/MultiLineEditbox"         Target="SleekSpace/MultiLineEditbox" />
    20     <WindowAlias Alias="MenuWidgets/Menubar"                  Target="SleekSpace/Menubar" />
    21     <WindowAlias Alias="MenuWidgets/MenuItem"                 Target="SleekSpace/MenuItem" />
    22     <WindowAlias Alias="MenuWidgets/MultiColumnList"          Target="SleekSpace/MultiColumnList" />
    23     <WindowAlias Alias="MenuWidgets/PopupMenu"                Target="SleekSpace/PopupMenu" />
    24     <WindowAlias Alias="MenuWidgets/ProgressBar"              Target="SleekSpace/ProgressBar" />
    25     <WindowAlias Alias="MenuWidgets/Button"                   Target="SleekSpace/Button" />
    26     <WindowAlias Alias="MenuWidgets/ImageButton"              Target="SleekSpace/ImageButton" />
    27     <WindowAlias Alias="MenuWidgets/RadioButton"              Target="SleekSpace/RadioButton" />
    28     <WindowAlias Alias="MenuWidgets/SystemButton"             Target="SleekSpace/SystemButton" />
    29     <WindowAlias Alias="MenuWidgets/ScrollablePane"           Target="SleekSpace/ScrollablePane" />
    30     <WindowAlias Alias="MenuWidgets/HorizontalScrollbar"      Target="SleekSpace/HorizontalScrollbar" />
    31     <WindowAlias Alias="MenuWidgets/VerticalScrollbar"        Target="SleekSpace/VerticalScrollbar" />
    32     <WindowAlias Alias="MenuWidgets/Slider"                   Target="SleekSpace/Slider" />
    33     <WindowAlias Alias="MenuWidgets/Spinner"                  Target="SleekSpace/Spinner" />
    34     <WindowAlias Alias="MenuWidgets/TabButton"                Target="SleekSpace/TabButton" />
    35     <WindowAlias Alias="MenuWidgets/TabControl"               Target="SleekSpace/TabControl" />
    36     <WindowAlias Alias="MenuWidgets/HorizontalScrollbarThumb" Target="SleekSpace/HorizontalScrollbarThumb" />
    37     <WindowAlias Alias="MenuWidgets/SliderThumb"              Target="SleekSpace/SliderThumb" />
    38     <WindowAlias Alias="MenuWidgets/VerticalScrollbarThumb"   Target="SleekSpace/VerticalScrollbarThumb" />
    39     <WindowAlias Alias="MenuWidgets/Titlebar"                 Target="SleekSpace/Titlebar" />
    40     <WindowAlias Alias="MenuWidgets/Tooltip"                  Target="SleekSpace/Tooltip" />
    41     <WindowAlias Alias="MenuWidgets/Tree"                     Target="SleekSpace/Tree" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="SleekSpaceMenuWidgets" version="5">
     3    <WindowAlias alias="MenuWidgets/StaticImage" target="SleekSpace/StaticImage" />
     4    <WindowAlias alias="MenuWidgets/StaticText" target="SleekSpace/StaticText" />
     5    <WindowAlias alias="MenuWidgets/TabButtonPane" target="SleekSpace/TabButtonPane" />
     6    <WindowAlias alias="MenuWidgets/TabContentPane" target="SleekSpace/TabContentPane" />
     7    <WindowAlias alias="MenuWidgets/Checkbox" target="SleekSpace/Checkbox" />
     8    <WindowAlias alias="MenuWidgets/Combobox" target="SleekSpace/Combobox" />
     9    <WindowAlias alias="MenuWidgets/ComboDropList" target="SleekSpace/ComboDropList" />
     10    <WindowAlias alias="MenuWidgets/ComboEditbox" target="SleekSpace/ComboEditbox" />
     11    <WindowAlias alias="MenuWidgets/Editbox" target="SleekSpace/Editbox" />
     12    <WindowAlias alias="MenuWidgets/FrameWindow" target="SleekSpace/FrameWindow" />
     13    <WindowAlias alias="MenuWidgets/GroupBox" target="SleekSpace/GroupBox" />
     14    <WindowAlias alias="MenuWidgets/ItemListbox" target="SleekSpace/ItemListbox" />
     15    <WindowAlias alias="MenuWidgets/ListboxItem" target="SleekSpace/ListboxItem" />
     16    <WindowAlias alias="MenuWidgets/Listbox" target="SleekSpace/Listbox" />
     17    <WindowAlias alias="MenuWidgets/ListHeader" target="SleekSpace/ListHeader" />
     18    <WindowAlias alias="MenuWidgets/ListHeaderSegment" target="SleekSpace/ListHeaderSegment" />
     19    <WindowAlias alias="MenuWidgets/MultiLineEditbox" target="SleekSpace/MultiLineEditbox" />
     20    <WindowAlias alias="MenuWidgets/Menubar" target="SleekSpace/Menubar" />
     21    <WindowAlias alias="MenuWidgets/MenuItem" target="SleekSpace/MenuItem" />
     22    <WindowAlias alias="MenuWidgets/MultiColumnList" target="SleekSpace/MultiColumnList" />
     23    <WindowAlias alias="MenuWidgets/PopupMenu" target="SleekSpace/PopupMenu" />
     24    <WindowAlias alias="MenuWidgets/ProgressBar" target="SleekSpace/ProgressBar" />
     25    <WindowAlias alias="MenuWidgets/Button" target="SleekSpace/Button" />
     26    <WindowAlias alias="MenuWidgets/ImageButton" target="SleekSpace/ImageButton" />
     27    <WindowAlias alias="MenuWidgets/RadioButton" target="SleekSpace/RadioButton" />
     28    <WindowAlias alias="MenuWidgets/SystemButton" target="SleekSpace/SystemButton" />
     29    <WindowAlias alias="MenuWidgets/ScrollablePane" target="SleekSpace/ScrollablePane" />
     30    <WindowAlias alias="MenuWidgets/HorizontalScrollbar" target="SleekSpace/HorizontalScrollbar" />
     31    <WindowAlias alias="MenuWidgets/VerticalScrollbar" target="SleekSpace/VerticalScrollbar" />
     32    <WindowAlias alias="MenuWidgets/Slider" target="SleekSpace/Slider" />
     33    <WindowAlias alias="MenuWidgets/Spinner" target="SleekSpace/Spinner" />
     34    <WindowAlias alias="MenuWidgets/TabButton" target="SleekSpace/TabButton" />
     35    <WindowAlias alias="MenuWidgets/TabControl" target="SleekSpace/TabControl" />
     36    <WindowAlias alias="MenuWidgets/HorizontalScrollbarThumb" target="SleekSpace/HorizontalScrollbarThumb" />
     37    <WindowAlias alias="MenuWidgets/SliderThumb" target="SleekSpace/SliderThumb" />
     38    <WindowAlias alias="MenuWidgets/VerticalScrollbarThumb" target="SleekSpace/VerticalScrollbarThumb" />
     39    <WindowAlias alias="MenuWidgets/Titlebar" target="SleekSpace/Titlebar" />
     40    <WindowAlias alias="MenuWidgets/Tooltip" target="SleekSpace/Tooltip" />
     41    <WindowAlias alias="MenuWidgets/Tree" target="SleekSpace/Tree" />
    4242</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/TaharezGreenHUDWidgets.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="TaharezGreenHUDWidgets">
    3     <WindowAlias Alias="HUDWidgets/StaticImage"              Target="TaharezGreenLook/StaticImage" />
    4     <WindowAlias Alias="HUDWidgets/StaticText"               Target="TaharezGreenLook/StaticText" />
    5     <WindowAlias Alias="HUDWidgets/TabButtonPane"            Target="TaharezGreenLook/TabButtonPane" />
    6     <WindowAlias Alias="HUDWidgets/TabContentPane"           Target="TaharezGreenLook/TabContentPane" />
    7     <WindowAlias Alias="HUDWidgets/Checkbox"                 Target="TaharezGreenLook/Checkbox" />
    8     <WindowAlias Alias="HUDWidgets/Combobox"                 Target="TaharezGreenLook/Combobox" />
    9     <WindowAlias Alias="HUDWidgets/ComboDropList"            Target="TaharezGreenLook/ComboDropList" />
    10     <WindowAlias Alias="HUDWidgets/ComboEditbox"             Target="TaharezGreenLook/ComboEditbox" />
    11     <WindowAlias Alias="HUDWidgets/Editbox"                  Target="TaharezGreenLook/Editbox" />
    12     <WindowAlias Alias="HUDWidgets/FrameWindow"              Target="TaharezGreenLook/FrameWindow" />
    13     <WindowAlias Alias="HUDWidgets/GroupBox"                 Target="TaharezGreenLook/GroupBox" />
    14     <WindowAlias Alias="HUDWidgets/ItemListbox"              Target="TaharezGreenLook/ItemListbox" />
    15     <WindowAlias Alias="HUDWidgets/ListboxItem"              Target="TaharezGreenLook/ListboxItem" />
    16     <WindowAlias Alias="HUDWidgets/Listbox"                  Target="TaharezGreenLook/Listbox" />
    17     <WindowAlias Alias="HUDWidgets/ListHeader"               Target="TaharezGreenLook/ListHeader" />
    18     <WindowAlias Alias="HUDWidgets/ListHeaderSegment"        Target="TaharezGreenLook/ListHeaderSegment" />
    19     <WindowAlias Alias="HUDWidgets/MultiLineEditbox"         Target="TaharezGreenLook/MultiLineEditbox" />
    20     <WindowAlias Alias="HUDWidgets/Menubar"                  Target="TaharezGreenLook/Menubar" />
    21     <WindowAlias Alias="HUDWidgets/MenuItem"                 Target="TaharezGreenLook/MenuItem" />
    22     <WindowAlias Alias="HUDWidgets/MultiColumnList"          Target="TaharezGreenLook/MultiColumnList" />
    23     <WindowAlias Alias="HUDWidgets/PopupMenu"                Target="TaharezGreenLook/PopupMenu" />
    24     <WindowAlias Alias="HUDWidgets/ProgressBar"              Target="TaharezGreenLook/ProgressBar" />
    25     <WindowAlias Alias="HUDWidgets/Button"                   Target="TaharezGreenLook/Button" />
    26     <WindowAlias Alias="HUDWidgets/ImageButton"              Target="TaharezGreenLook/ImageButton" />
    27     <WindowAlias Alias="HUDWidgets/RadioButton"              Target="TaharezGreenLook/RadioButton" />
    28     <WindowAlias Alias="HUDWidgets/SystemButton"             Target="TaharezGreenLook/SystemButton" />
    29     <WindowAlias Alias="HUDWidgets/ScrollablePane"           Target="TaharezGreenLook/ScrollablePane" />
    30     <WindowAlias Alias="HUDWidgets/HorizontalScrollbar"      Target="TaharezGreenLook/HorizontalScrollbar" />
    31     <WindowAlias Alias="HUDWidgets/VerticalScrollbar"        Target="TaharezGreenLook/VerticalScrollbar" />
    32     <WindowAlias Alias="HUDWidgets/Slider"                   Target="TaharezGreenLook/Slider" />
    33     <WindowAlias Alias="HUDWidgets/Spinner"                  Target="TaharezGreenLook/Spinner" />
    34     <WindowAlias Alias="HUDWidgets/TabButton"                Target="TaharezGreenLook/TabButton" />
    35     <WindowAlias Alias="HUDWidgets/TabControl"               Target="TaharezGreenLook/TabControl" />
    36     <WindowAlias Alias="HUDWidgets/HorizontalScrollbarThumb" Target="TaharezGreenLook/HorizontalScrollbarThumb" />
    37     <WindowAlias Alias="HUDWidgets/SliderThumb"              Target="TaharezGreenLook/SliderThumb" />
    38     <WindowAlias Alias="HUDWidgets/VerticalScrollbarThumb"   Target="TaharezGreenLook/VerticalScrollbarThumb" />
    39     <WindowAlias Alias="HUDWidgets/Titlebar"                 Target="TaharezGreenLook/Titlebar" />
    40     <WindowAlias Alias="HUDWidgets/Tooltip"                  Target="TaharezGreenLook/Tooltip" />
    41     <WindowAlias Alias="HUDWidgets/Tree"                     Target="TaharezGreenLook/Tree" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="TaharezGreenHUDWidgets" version="5">
     3    <WindowAlias alias="HUDWidgets/StaticImage" target="TaharezGreenLook/StaticImage" />
     4    <WindowAlias alias="HUDWidgets/StaticText" target="TaharezGreenLook/StaticText" />
     5    <WindowAlias alias="HUDWidgets/TabButtonPane" target="TaharezGreenLook/TabButtonPane" />
     6    <WindowAlias alias="HUDWidgets/TabContentPane" target="TaharezGreenLook/TabContentPane" />
     7    <WindowAlias alias="HUDWidgets/Checkbox" target="TaharezGreenLook/Checkbox" />
     8    <WindowAlias alias="HUDWidgets/Combobox" target="TaharezGreenLook/Combobox" />
     9    <WindowAlias alias="HUDWidgets/ComboDropList" target="TaharezGreenLook/ComboDropList" />
     10    <WindowAlias alias="HUDWidgets/ComboEditbox" target="TaharezGreenLook/ComboEditbox" />
     11    <WindowAlias alias="HUDWidgets/Editbox" target="TaharezGreenLook/Editbox" />
     12    <WindowAlias alias="HUDWidgets/FrameWindow" target="TaharezGreenLook/FrameWindow" />
     13    <WindowAlias alias="HUDWidgets/GroupBox" target="TaharezGreenLook/GroupBox" />
     14    <WindowAlias alias="HUDWidgets/ItemListbox" target="TaharezGreenLook/ItemListbox" />
     15    <WindowAlias alias="HUDWidgets/ListboxItem" target="TaharezGreenLook/ListboxItem" />
     16    <WindowAlias alias="HUDWidgets/Listbox" target="TaharezGreenLook/Listbox" />
     17    <WindowAlias alias="HUDWidgets/ListHeader" target="TaharezGreenLook/ListHeader" />
     18    <WindowAlias alias="HUDWidgets/ListHeaderSegment" target="TaharezGreenLook/ListHeaderSegment" />
     19    <WindowAlias alias="HUDWidgets/MultiLineEditbox" target="TaharezGreenLook/MultiLineEditbox" />
     20    <WindowAlias alias="HUDWidgets/Menubar" target="TaharezGreenLook/Menubar" />
     21    <WindowAlias alias="HUDWidgets/MenuItem" target="TaharezGreenLook/MenuItem" />
     22    <WindowAlias alias="HUDWidgets/MultiColumnList" target="TaharezGreenLook/MultiColumnList" />
     23    <WindowAlias alias="HUDWidgets/PopupMenu" target="TaharezGreenLook/PopupMenu" />
     24    <WindowAlias alias="HUDWidgets/ProgressBar" target="TaharezGreenLook/ProgressBar" />
     25    <WindowAlias alias="HUDWidgets/Button" target="TaharezGreenLook/Button" />
     26    <WindowAlias alias="HUDWidgets/ImageButton" target="TaharezGreenLook/ImageButton" />
     27    <WindowAlias alias="HUDWidgets/RadioButton" target="TaharezGreenLook/RadioButton" />
     28    <WindowAlias alias="HUDWidgets/SystemButton" target="TaharezGreenLook/SystemButton" />
     29    <WindowAlias alias="HUDWidgets/ScrollablePane" target="TaharezGreenLook/ScrollablePane" />
     30    <WindowAlias alias="HUDWidgets/HorizontalScrollbar" target="TaharezGreenLook/HorizontalScrollbar" />
     31    <WindowAlias alias="HUDWidgets/VerticalScrollbar" target="TaharezGreenLook/VerticalScrollbar" />
     32    <WindowAlias alias="HUDWidgets/Slider" target="TaharezGreenLook/Slider" />
     33    <WindowAlias alias="HUDWidgets/Spinner" target="TaharezGreenLook/Spinner" />
     34    <WindowAlias alias="HUDWidgets/TabButton" target="TaharezGreenLook/TabButton" />
     35    <WindowAlias alias="HUDWidgets/TabControl" target="TaharezGreenLook/TabControl" />
     36    <WindowAlias alias="HUDWidgets/HorizontalScrollbarThumb" target="TaharezGreenLook/HorizontalScrollbarThumb" />
     37    <WindowAlias alias="HUDWidgets/SliderThumb" target="TaharezGreenLook/SliderThumb" />
     38    <WindowAlias alias="HUDWidgets/VerticalScrollbarThumb" target="TaharezGreenLook/VerticalScrollbarThumb" />
     39    <WindowAlias alias="HUDWidgets/Titlebar" target="TaharezGreenLook/Titlebar" />
     40    <WindowAlias alias="HUDWidgets/Tooltip" target="TaharezGreenLook/Tooltip" />
     41    <WindowAlias alias="HUDWidgets/Tree" target="TaharezGreenLook/Tree" />
    4242</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/TaharezGreenLook.scheme

    r8079 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="TaharezGreenLook">
    3     <Imageset Name="TaharezGreenLook" Filename="TaharezGreenLook.imageset" />
    4     <LookNFeel Filename="TaharezGreenLook.looknfeel" />
    5     <WindowRendererSet Filename="CEGUIFalagardWRBase" />
    6 
    7     <!-- Standard widgets -->
    8     <FalagardMapping WindowType="TaharezGreenLook/StaticImage"              TargetType="DefaultWindow"           Renderer="Falagard/StaticImage"       LookNFeel="TaharezGreenLook/StaticImage" />
    9     <FalagardMapping WindowType="TaharezGreenLook/StaticText"               TargetType="DefaultWindow"           Renderer="Falagard/StaticText"        LookNFeel="TaharezGreenLook/StaticText" />
    10     <FalagardMapping WindowType="TaharezGreenLook/TabButtonPane"            TargetType="DefaultWindow"           Renderer="Falagard/Default"           LookNFeel="TaharezGreenLook/TabButtonPane" />
    11     <FalagardMapping WindowType="TaharezGreenLook/TabContentPane"           TargetType="DefaultWindow"           Renderer="Falagard/Default"           LookNFeel="TaharezGreenLook/TabContentPane" />
    12     <FalagardMapping WindowType="TaharezGreenLook/Checkbox"                 TargetType="CEGUI/Checkbox"          Renderer="Falagard/ToggleButton"      LookNFeel="TaharezGreenLook/Checkbox" />
    13     <FalagardMapping WindowType="TaharezGreenLook/Combobox"                 TargetType="CEGUI/Combobox"          Renderer="Falagard/Default"           LookNFeel="TaharezGreenLook/Combobox" />
    14     <FalagardMapping WindowType="TaharezGreenLook/ComboDropList"            TargetType="CEGUI/ComboDropList"     Renderer="Falagard/Listbox"           LookNFeel="TaharezGreenLook/ComboDropList" />
    15     <FalagardMapping WindowType="TaharezGreenLook/ComboEditbox"             TargetType="CEGUI/Editbox"           Renderer="Falagard/Editbox"           LookNFeel="TaharezGreenLook/ComboEditbox" />
    16     <FalagardMapping WindowType="TaharezGreenLook/Editbox"                  TargetType="CEGUI/Editbox"           Renderer="Falagard/Editbox"           LookNFeel="TaharezGreenLook/Editbox" />
    17     <FalagardMapping WindowType="TaharezGreenLook/FrameWindow"              TargetType="CEGUI/FrameWindow"       Renderer="Falagard/FrameWindow"       LookNFeel="TaharezGreenLook/FrameWindow" />
    18     <FalagardMapping WindowType="TaharezGreenLook/GroupBox"                 TargetType="CEGUI/GroupBox"          Renderer="Falagard/Default"           LookNFeel="TaharezGreenLook/GroupBox" />
    19     <FalagardMapping WindowType="TaharezGreenLook/ItemListbox"              TargetType="CEGUI/ItemListbox"       Renderer="Falagard/ItemListbox"       LookNFeel="TaharezGreenLook/ItemListbox" />
    20     <FalagardMapping WindowType="TaharezGreenLook/ListboxItem"              TargetType="CEGUI/ItemEntry"         Renderer="Falagard/ItemEntry"         LookNFeel="TaharezGreenLook/ListboxItem" />
    21     <FalagardMapping WindowType="TaharezGreenLook/Listbox"                  TargetType="CEGUI/Listbox"           Renderer="Falagard/Listbox"           LookNFeel="TaharezGreenLook/Listbox" />
    22     <FalagardMapping WindowType="TaharezGreenLook/ListHeader"               TargetType="CEGUI/ListHeader"        Renderer="Falagard/ListHeader"        LookNFeel="TaharezGreenLook/ListHeader" />
    23     <FalagardMapping WindowType="TaharezGreenLook/ListHeaderSegment"        TargetType="CEGUI/ListHeaderSegment" Renderer="Falagard/ListHeaderSegment" LookNFeel="TaharezGreenLook/ListHeaderSegment" />
    24     <FalagardMapping WindowType="TaharezGreenLook/MultiLineEditbox"         TargetType="CEGUI/MultiLineEditbox"  Renderer="Falagard/MultiLineEditbox"  LookNFeel="TaharezGreenLook/MultiLineEditbox" />
    25     <FalagardMapping WindowType="TaharezGreenLook/Menubar"                  TargetType="CEGUI/Menubar"           Renderer="Falagard/Menubar"           LookNFeel="TaharezGreenLook/Menubar" />
    26     <FalagardMapping WindowType="TaharezGreenLook/MenuItem"                 TargetType="CEGUI/MenuItem"          Renderer="Falagard/MenuItem"          LookNFeel="TaharezGreenLook/MenuItem" />
    27     <FalagardMapping WindowType="TaharezGreenLook/MultiColumnList"          TargetType="CEGUI/MultiColumnList"   Renderer="Falagard/MultiColumnList"   LookNFeel="TaharezGreenLook/MultiColumnList" />
    28     <FalagardMapping WindowType="TaharezGreenLook/PopupMenu"                TargetType="CEGUI/PopupMenu"         Renderer="Falagard/PopupMenu"         LookNFeel="TaharezGreenLook/PopupMenu" />
    29     <FalagardMapping WindowType="TaharezGreenLook/ProgressBar"              TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="TaharezGreenLook/ProgressBar" />
    30     <FalagardMapping WindowType="TaharezGreenLook/Button"                   TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="TaharezGreenLook/Button" />
    31     <FalagardMapping WindowType="TaharezGreenLook/ImageButton"              TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="TaharezGreenLook/ImageButton" />
    32     <FalagardMapping WindowType="TaharezGreenLook/RadioButton"              TargetType="CEGUI/RadioButton"       Renderer="Falagard/ToggleButton"      LookNFeel="TaharezGreenLook/RadioButton" />
    33     <FalagardMapping WindowType="TaharezGreenLook/SystemButton"             TargetType="CEGUI/PushButton"        Renderer="Falagard/SystemButton"      LookNFeel="TaharezGreenLook/Button" />
    34     <FalagardMapping WindowType="TaharezGreenLook/ScrollablePane"           TargetType="CEGUI/ScrollablePane"    Renderer="Falagard/ScrollablePane"    LookNFeel="TaharezGreenLook/ScrollablePane" />
    35     <FalagardMapping WindowType="TaharezGreenLook/HorizontalScrollbar"      TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="TaharezGreenLook/HorizontalScrollbar" />
    36     <FalagardMapping WindowType="TaharezGreenLook/VerticalScrollbar"        TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="TaharezGreenLook/VerticalScrollbar" />
    37     <FalagardMapping WindowType="TaharezGreenLook/Slider"                   TargetType="CEGUI/Slider"            Renderer="Falagard/Slider"            LookNFeel="TaharezGreenLook/Slider" />
    38     <FalagardMapping WindowType="TaharezGreenLook/Spinner"                  TargetType="CEGUI/Spinner"           Renderer="Falagard/Default"           LookNFeel="TaharezGreenLook/Spinner" />
    39     <FalagardMapping WindowType="TaharezGreenLook/TabButton"                TargetType="CEGUI/TabButton"         Renderer="Falagard/TabButton"         LookNFeel="TaharezGreenLook/TabButton" />
    40     <FalagardMapping WindowType="TaharezGreenLook/TabControl"               TargetType="CEGUI/TabControl"        Renderer="Falagard/TabControl"        LookNFeel="TaharezGreenLook/TabControl" />
    41     <FalagardMapping WindowType="TaharezGreenLook/HorizontalScrollbarThumb" TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="TaharezGreenLook/HorizontalScrollbarThumb" />
    42     <FalagardMapping WindowType="TaharezGreenLook/SliderThumb"              TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="TaharezGreenLook/SliderThumb" />
    43     <FalagardMapping WindowType="TaharezGreenLook/VerticalScrollbarThumb"   TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="TaharezGreenLook/VerticalScrollbarThumb" />
    44     <FalagardMapping WindowType="TaharezGreenLook/Titlebar"                 TargetType="CEGUI/Titlebar"          Renderer="Falagard/Titlebar"          LookNFeel="TaharezGreenLook/Titlebar" />
    45     <FalagardMapping WindowType="TaharezGreenLook/Tooltip"                  TargetType="CEGUI/Tooltip"           Renderer="Falagard/Tooltip"           LookNFeel="TaharezGreenLook/Tooltip" />
    46     <FalagardMapping WindowType="TaharezGreenLook/Tree"                     TargetType="CEGUI/Tree"              Renderer="Falagard/Tree"              LookNFeel="TaharezGreenLook/Tree" />
    47 
    48     <!-- Additional widgets -->
    49     <FalagardMapping WindowType="TaharezGreenLook/AlternateProgressBar"        TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="TaharezGreenLook/AltProgressBar" />
    50     <FalagardMapping WindowType="TaharezGreenLook/VUMeter"                     TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="TaharezGreenLook/VUMeter" />
    51     <FalagardMapping WindowType="TaharezGreenLook/LargeVerticalScrollbar"      TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="TaharezGreenLook/LargeVerticalScrollbar" />
    52     <FalagardMapping WindowType="TaharezGreenLook/LargeVerticalScrollbarThumb" TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="TaharezGreenLook/LargeVerticalScrollbarThumb" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="TaharezGreenLook" version="5">
     3    <Imageset filename="TaharezGreenLook.imageset" name="TaharezGreenLook" />
     4    <LookNFeel filename="TaharezGreenLook.looknfeel" />
     5    <WindowRendererSet filename="CEGUICoreWindowRendererSet" />
     6    <FalagardMapping lookNFeel="TaharezGreenLook/StaticImage" renderer="Core/StaticImage" targetType="DefaultWindow" windowType="TaharezGreenLook/StaticImage" />
     7    <FalagardMapping lookNFeel="TaharezGreenLook/StaticText" renderer="Core/StaticText" targetType="DefaultWindow" windowType="TaharezGreenLook/StaticText" />
     8    <FalagardMapping lookNFeel="TaharezGreenLook/TabButtonPane" renderer="Core/Default" targetType="DefaultWindow" windowType="TaharezGreenLook/TabButtonPane" />
     9    <FalagardMapping lookNFeel="TaharezGreenLook/TabContentPane" renderer="Core/Default" targetType="DefaultWindow" windowType="TaharezGreenLook/TabContentPane" />
     10    <FalagardMapping lookNFeel="TaharezGreenLook/Checkbox" renderer="Core/ToggleButton" targetType="CEGUI/ToggleButton" windowType="TaharezGreenLook/Checkbox" />
     11    <FalagardMapping lookNFeel="TaharezGreenLook/Combobox" renderer="Core/Default" targetType="CEGUI/Combobox" windowType="TaharezGreenLook/Combobox" />
     12    <FalagardMapping lookNFeel="TaharezGreenLook/ComboDropList" renderer="Core/Listbox" targetType="CEGUI/ComboDropList" windowType="TaharezGreenLook/ComboDropList" />
     13    <FalagardMapping lookNFeel="TaharezGreenLook/ComboEditbox" renderer="Core/Editbox" targetType="CEGUI/Editbox" windowType="TaharezGreenLook/ComboEditbox" />
     14    <FalagardMapping lookNFeel="TaharezGreenLook/Editbox" renderer="Core/Editbox" targetType="CEGUI/Editbox" windowType="TaharezGreenLook/Editbox" />
     15    <FalagardMapping lookNFeel="TaharezGreenLook/FrameWindow" renderer="Core/FrameWindow" targetType="CEGUI/FrameWindow" windowType="TaharezGreenLook/FrameWindow" />
     16    <FalagardMapping lookNFeel="TaharezGreenLook/GroupBox" renderer="Core/Default" targetType="CEGUI/GroupBox" windowType="TaharezGreenLook/GroupBox" />
     17    <FalagardMapping lookNFeel="TaharezGreenLook/ItemListbox" renderer="Core/ItemListbox" targetType="CEGUI/ItemListbox" windowType="TaharezGreenLook/ItemListbox" />
     18    <FalagardMapping lookNFeel="TaharezGreenLook/ListboxItem" renderer="Core/ItemEntry" targetType="CEGUI/ItemEntry" windowType="TaharezGreenLook/ListboxItem" />
     19    <FalagardMapping lookNFeel="TaharezGreenLook/Listbox" renderer="Core/Listbox" targetType="CEGUI/Listbox" windowType="TaharezGreenLook/Listbox" />
     20    <FalagardMapping lookNFeel="TaharezGreenLook/ListHeader" renderer="Core/ListHeader" targetType="CEGUI/ListHeader" windowType="TaharezGreenLook/ListHeader" />
     21    <FalagardMapping lookNFeel="TaharezGreenLook/ListHeaderSegment" renderer="Core/ListHeaderSegment" targetType="CEGUI/ListHeaderSegment" windowType="TaharezGreenLook/ListHeaderSegment" />
     22    <FalagardMapping lookNFeel="TaharezGreenLook/MultiLineEditbox" renderer="Core/MultiLineEditbox" targetType="CEGUI/MultiLineEditbox" windowType="TaharezGreenLook/MultiLineEditbox" />
     23    <FalagardMapping lookNFeel="TaharezGreenLook/Menubar" renderer="Core/Menubar" targetType="CEGUI/Menubar" windowType="TaharezGreenLook/Menubar" />
     24    <FalagardMapping lookNFeel="TaharezGreenLook/MenuItem" renderer="Core/MenuItem" targetType="CEGUI/MenuItem" windowType="TaharezGreenLook/MenuItem" />
     25    <FalagardMapping lookNFeel="TaharezGreenLook/MultiColumnList" renderer="Core/MultiColumnList" targetType="CEGUI/MultiColumnList" windowType="TaharezGreenLook/MultiColumnList" />
     26    <FalagardMapping lookNFeel="TaharezGreenLook/PopupMenu" renderer="Core/PopupMenu" targetType="CEGUI/PopupMenu" windowType="TaharezGreenLook/PopupMenu" />
     27    <FalagardMapping lookNFeel="TaharezGreenLook/ProgressBar" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="TaharezGreenLook/ProgressBar" />
     28    <FalagardMapping lookNFeel="TaharezGreenLook/Button" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="TaharezGreenLook/Button" />
     29    <FalagardMapping lookNFeel="TaharezGreenLook/ImageButton" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="TaharezGreenLook/ImageButton" />
     30    <FalagardMapping lookNFeel="TaharezGreenLook/RadioButton" renderer="Core/ToggleButton" targetType="CEGUI/RadioButton" windowType="TaharezGreenLook/RadioButton" />
     31    <FalagardMapping lookNFeel="TaharezGreenLook/Button" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="TaharezGreenLook/SystemButton" />
     32    <FalagardMapping lookNFeel="TaharezGreenLook/ScrollablePane" renderer="Core/ScrollablePane" targetType="CEGUI/ScrollablePane" windowType="TaharezGreenLook/ScrollablePane" />
     33    <FalagardMapping lookNFeel="TaharezGreenLook/HorizontalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="TaharezGreenLook/HorizontalScrollbar" />
     34    <FalagardMapping lookNFeel="TaharezGreenLook/VerticalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="TaharezGreenLook/VerticalScrollbar" />
     35    <FalagardMapping lookNFeel="TaharezGreenLook/Slider" renderer="Core/Slider" targetType="CEGUI/Slider" windowType="TaharezGreenLook/Slider" />
     36    <FalagardMapping lookNFeel="TaharezGreenLook/Spinner" renderer="Core/Default" targetType="CEGUI/Spinner" windowType="TaharezGreenLook/Spinner" />
     37    <FalagardMapping lookNFeel="TaharezGreenLook/TabButton" renderer="Core/TabButton" targetType="CEGUI/TabButton" windowType="TaharezGreenLook/TabButton" />
     38    <FalagardMapping lookNFeel="TaharezGreenLook/TabControl" renderer="Core/TabControl" targetType="CEGUI/TabControl" windowType="TaharezGreenLook/TabControl" />
     39    <FalagardMapping lookNFeel="TaharezGreenLook/HorizontalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="TaharezGreenLook/HorizontalScrollbarThumb" />
     40    <FalagardMapping lookNFeel="TaharezGreenLook/SliderThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="TaharezGreenLook/SliderThumb" />
     41    <FalagardMapping lookNFeel="TaharezGreenLook/VerticalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="TaharezGreenLook/VerticalScrollbarThumb" />
     42    <FalagardMapping lookNFeel="TaharezGreenLook/Titlebar" renderer="Core/Titlebar" targetType="CEGUI/Titlebar" windowType="TaharezGreenLook/Titlebar" />
     43    <FalagardMapping lookNFeel="TaharezGreenLook/Tooltip" renderer="Core/Tooltip" targetType="CEGUI/Tooltip" windowType="TaharezGreenLook/Tooltip" />
     44    <FalagardMapping lookNFeel="TaharezGreenLook/Tree" renderer="Core/Tree" targetType="CEGUI/Tree" windowType="TaharezGreenLook/Tree" />
     45    <FalagardMapping lookNFeel="TaharezGreenLook/AltProgressBar" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="TaharezGreenLook/AlternateProgressBar" />
     46    <FalagardMapping lookNFeel="TaharezGreenLook/VUMeter" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="TaharezGreenLook/VUMeter" />
     47    <FalagardMapping lookNFeel="TaharezGreenLook/LargeVerticalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="TaharezGreenLook/LargeVerticalScrollbar" />
     48    <FalagardMapping lookNFeel="TaharezGreenLook/LargeVerticalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="TaharezGreenLook/LargeVerticalScrollbarThumb" />
    5349</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/TaharezGreenMenuWidgets.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="TaharezGreenMenuWidgets">
    3     <WindowAlias Alias="MenuWidgets/StaticImage"              Target="TaharezGreenLook/StaticImage" />
    4     <WindowAlias Alias="MenuWidgets/StaticText"               Target="TaharezGreenLook/StaticText" />
    5     <WindowAlias Alias="MenuWidgets/TabButtonPane"            Target="TaharezGreenLook/TabButtonPane" />
    6     <WindowAlias Alias="MenuWidgets/TabContentPane"           Target="TaharezGreenLook/TabContentPane" />
    7     <WindowAlias Alias="MenuWidgets/Checkbox"                 Target="TaharezGreenLook/Checkbox" />
    8     <WindowAlias Alias="MenuWidgets/Combobox"                 Target="TaharezGreenLook/Combobox" />
    9     <WindowAlias Alias="MenuWidgets/ComboDropList"            Target="TaharezGreenLook/ComboDropList" />
    10     <WindowAlias Alias="MenuWidgets/ComboEditbox"             Target="TaharezGreenLook/ComboEditbox" />
    11     <WindowAlias Alias="MenuWidgets/Editbox"                  Target="TaharezGreenLook/Editbox" />
    12     <WindowAlias Alias="MenuWidgets/FrameWindow"              Target="TaharezGreenLook/FrameWindow" />
    13     <WindowAlias Alias="MenuWidgets/GroupBox"                 Target="TaharezGreenLook/GroupBox" />
    14     <WindowAlias Alias="MenuWidgets/ItemListbox"              Target="TaharezGreenLook/ItemListbox" />
    15     <WindowAlias Alias="MenuWidgets/ListboxItem"              Target="TaharezGreenLook/ListboxItem" />
    16     <WindowAlias Alias="MenuWidgets/Listbox"                  Target="TaharezGreenLook/Listbox" />
    17     <WindowAlias Alias="MenuWidgets/ListHeader"               Target="TaharezGreenLook/ListHeader" />
    18     <WindowAlias Alias="MenuWidgets/ListHeaderSegment"        Target="TaharezGreenLook/ListHeaderSegment" />
    19     <WindowAlias Alias="MenuWidgets/MultiLineEditbox"         Target="TaharezGreenLook/MultiLineEditbox" />
    20     <WindowAlias Alias="MenuWidgets/Menubar"                  Target="TaharezGreenLook/Menubar" />
    21     <WindowAlias Alias="MenuWidgets/MenuItem"                 Target="TaharezGreenLook/MenuItem" />
    22     <WindowAlias Alias="MenuWidgets/MultiColumnList"          Target="TaharezGreenLook/MultiColumnList" />
    23     <WindowAlias Alias="MenuWidgets/PopupMenu"                Target="TaharezGreenLook/PopupMenu" />
    24     <WindowAlias Alias="MenuWidgets/ProgressBar"              Target="TaharezGreenLook/ProgressBar" />
    25     <WindowAlias Alias="MenuWidgets/Button"                   Target="TaharezGreenLook/Button" />
    26     <WindowAlias Alias="MenuWidgets/ImageButton"              Target="TaharezGreenLook/ImageButton" />
    27     <WindowAlias Alias="MenuWidgets/RadioButton"              Target="TaharezGreenLook/RadioButton" />
    28     <WindowAlias Alias="MenuWidgets/SystemButton"             Target="TaharezGreenLook/SystemButton" />
    29     <WindowAlias Alias="MenuWidgets/ScrollablePane"           Target="TaharezGreenLook/ScrollablePane" />
    30     <WindowAlias Alias="MenuWidgets/HorizontalScrollbar"      Target="TaharezGreenLook/HorizontalScrollbar" />
    31     <WindowAlias Alias="MenuWidgets/VerticalScrollbar"        Target="TaharezGreenLook/VerticalScrollbar" />
    32     <WindowAlias Alias="MenuWidgets/Slider"                   Target="TaharezGreenLook/Slider" />
    33     <WindowAlias Alias="MenuWidgets/Spinner"                  Target="TaharezGreenLook/Spinner" />
    34     <WindowAlias Alias="MenuWidgets/TabButton"                Target="TaharezGreenLook/TabButton" />
    35     <WindowAlias Alias="MenuWidgets/TabControl"               Target="TaharezGreenLook/TabControl" />
    36     <WindowAlias Alias="MenuWidgets/HorizontalScrollbarThumb" Target="TaharezGreenLook/HorizontalScrollbarThumb" />
    37     <WindowAlias Alias="MenuWidgets/SliderThumb"              Target="TaharezGreenLook/SliderThumb" />
    38     <WindowAlias Alias="MenuWidgets/VerticalScrollbarThumb"   Target="TaharezGreenLook/VerticalScrollbarThumb" />
    39     <WindowAlias Alias="MenuWidgets/Titlebar"                 Target="TaharezGreenLook/Titlebar" />
    40     <WindowAlias Alias="MenuWidgets/Tooltip"                  Target="TaharezGreenLook/Tooltip" />
    41     <WindowAlias Alias="MenuWidgets/Tree"                     Target="TaharezGreenLook/Tree" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="TaharezGreenMenuWidgets" version="5">
     3    <WindowAlias alias="MenuWidgets/StaticImage" target="TaharezGreenLook/StaticImage" />
     4    <WindowAlias alias="MenuWidgets/StaticText" target="TaharezGreenLook/StaticText" />
     5    <WindowAlias alias="MenuWidgets/TabButtonPane" target="TaharezGreenLook/TabButtonPane" />
     6    <WindowAlias alias="MenuWidgets/TabContentPane" target="TaharezGreenLook/TabContentPane" />
     7    <WindowAlias alias="MenuWidgets/Checkbox" target="TaharezGreenLook/Checkbox" />
     8    <WindowAlias alias="MenuWidgets/Combobox" target="TaharezGreenLook/Combobox" />
     9    <WindowAlias alias="MenuWidgets/ComboDropList" target="TaharezGreenLook/ComboDropList" />
     10    <WindowAlias alias="MenuWidgets/ComboEditbox" target="TaharezGreenLook/ComboEditbox" />
     11    <WindowAlias alias="MenuWidgets/Editbox" target="TaharezGreenLook/Editbox" />
     12    <WindowAlias alias="MenuWidgets/FrameWindow" target="TaharezGreenLook/FrameWindow" />
     13    <WindowAlias alias="MenuWidgets/GroupBox" target="TaharezGreenLook/GroupBox" />
     14    <WindowAlias alias="MenuWidgets/ItemListbox" target="TaharezGreenLook/ItemListbox" />
     15    <WindowAlias alias="MenuWidgets/ListboxItem" target="TaharezGreenLook/ListboxItem" />
     16    <WindowAlias alias="MenuWidgets/Listbox" target="TaharezGreenLook/Listbox" />
     17    <WindowAlias alias="MenuWidgets/ListHeader" target="TaharezGreenLook/ListHeader" />
     18    <WindowAlias alias="MenuWidgets/ListHeaderSegment" target="TaharezGreenLook/ListHeaderSegment" />
     19    <WindowAlias alias="MenuWidgets/MultiLineEditbox" target="TaharezGreenLook/MultiLineEditbox" />
     20    <WindowAlias alias="MenuWidgets/Menubar" target="TaharezGreenLook/Menubar" />
     21    <WindowAlias alias="MenuWidgets/MenuItem" target="TaharezGreenLook/MenuItem" />
     22    <WindowAlias alias="MenuWidgets/MultiColumnList" target="TaharezGreenLook/MultiColumnList" />
     23    <WindowAlias alias="MenuWidgets/PopupMenu" target="TaharezGreenLook/PopupMenu" />
     24    <WindowAlias alias="MenuWidgets/ProgressBar" target="TaharezGreenLook/ProgressBar" />
     25    <WindowAlias alias="MenuWidgets/Button" target="TaharezGreenLook/Button" />
     26    <WindowAlias alias="MenuWidgets/ImageButton" target="TaharezGreenLook/ImageButton" />
     27    <WindowAlias alias="MenuWidgets/RadioButton" target="TaharezGreenLook/RadioButton" />
     28    <WindowAlias alias="MenuWidgets/SystemButton" target="TaharezGreenLook/SystemButton" />
     29    <WindowAlias alias="MenuWidgets/ScrollablePane" target="TaharezGreenLook/ScrollablePane" />
     30    <WindowAlias alias="MenuWidgets/HorizontalScrollbar" target="TaharezGreenLook/HorizontalScrollbar" />
     31    <WindowAlias alias="MenuWidgets/VerticalScrollbar" target="TaharezGreenLook/VerticalScrollbar" />
     32    <WindowAlias alias="MenuWidgets/Slider" target="TaharezGreenLook/Slider" />
     33    <WindowAlias alias="MenuWidgets/Spinner" target="TaharezGreenLook/Spinner" />
     34    <WindowAlias alias="MenuWidgets/TabButton" target="TaharezGreenLook/TabButton" />
     35    <WindowAlias alias="MenuWidgets/TabControl" target="TaharezGreenLook/TabControl" />
     36    <WindowAlias alias="MenuWidgets/HorizontalScrollbarThumb" target="TaharezGreenLook/HorizontalScrollbarThumb" />
     37    <WindowAlias alias="MenuWidgets/SliderThumb" target="TaharezGreenLook/SliderThumb" />
     38    <WindowAlias alias="MenuWidgets/VerticalScrollbarThumb" target="TaharezGreenLook/VerticalScrollbarThumb" />
     39    <WindowAlias alias="MenuWidgets/Titlebar" target="TaharezGreenLook/Titlebar" />
     40    <WindowAlias alias="MenuWidgets/Tooltip" target="TaharezGreenLook/Tooltip" />
     41    <WindowAlias alias="MenuWidgets/Tree" target="TaharezGreenLook/Tree" />
    4242</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/TaharezHUDWidgets.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="TaharezHUDWidgets">
    3     <WindowAlias Alias="HUDWidgets/StaticImage"              Target="TaharezLook/StaticImage" />
    4     <WindowAlias Alias="HUDWidgets/StaticText"               Target="TaharezLook/StaticText" />
    5     <WindowAlias Alias="HUDWidgets/TabButtonPane"            Target="TaharezLook/TabButtonPane" />
    6     <WindowAlias Alias="HUDWidgets/TabContentPane"           Target="TaharezLook/TabContentPane" />
    7     <WindowAlias Alias="HUDWidgets/Checkbox"                 Target="TaharezLook/Checkbox" />
    8     <WindowAlias Alias="HUDWidgets/Combobox"                 Target="TaharezLook/Combobox" />
    9     <WindowAlias Alias="HUDWidgets/ComboDropList"            Target="TaharezLook/ComboDropList" />
    10     <WindowAlias Alias="HUDWidgets/ComboEditbox"             Target="TaharezLook/ComboEditbox" />
    11     <WindowAlias Alias="HUDWidgets/Editbox"                  Target="TaharezLook/Editbox" />
    12     <WindowAlias Alias="HUDWidgets/FrameWindow"              Target="TaharezLook/FrameWindow" />
    13     <WindowAlias Alias="HUDWidgets/GroupBox"                 Target="TaharezLook/GroupBox" />
    14     <WindowAlias Alias="HUDWidgets/ItemListbox"              Target="TaharezLook/ItemListbox" />
    15     <WindowAlias Alias="HUDWidgets/ListboxItem"              Target="TaharezLook/ListboxItem" />
    16     <WindowAlias Alias="HUDWidgets/Listbox"                  Target="TaharezLook/Listbox" />
    17     <WindowAlias Alias="HUDWidgets/ListHeader"               Target="TaharezLook/ListHeader" />
    18     <WindowAlias Alias="HUDWidgets/ListHeaderSegment"        Target="TaharezLook/ListHeaderSegment" />
    19     <WindowAlias Alias="HUDWidgets/MultiLineEditbox"         Target="TaharezLook/MultiLineEditbox" />
    20     <WindowAlias Alias="HUDWidgets/Menubar"                  Target="TaharezLook/Menubar" />
    21     <WindowAlias Alias="HUDWidgets/MenuItem"                 Target="TaharezLook/MenuItem" />
    22     <WindowAlias Alias="HUDWidgets/MultiColumnList"          Target="TaharezLook/MultiColumnList" />
    23     <WindowAlias Alias="HUDWidgets/PopupMenu"                Target="TaharezLook/PopupMenu" />
    24     <WindowAlias Alias="HUDWidgets/ProgressBar"              Target="TaharezLook/ProgressBar" />
    25     <WindowAlias Alias="HUDWidgets/Button"                   Target="TaharezLook/Button" />
    26     <WindowAlias Alias="HUDWidgets/ImageButton"              Target="TaharezLook/ImageButton" />
    27     <WindowAlias Alias="HUDWidgets/RadioButton"              Target="TaharezLook/RadioButton" />
    28     <WindowAlias Alias="HUDWidgets/SystemButton"             Target="TaharezLook/SystemButton" />
    29     <WindowAlias Alias="HUDWidgets/ScrollablePane"           Target="TaharezLook/ScrollablePane" />
    30     <WindowAlias Alias="HUDWidgets/HorizontalScrollbar"      Target="TaharezLook/HorizontalScrollbar" />
    31     <WindowAlias Alias="HUDWidgets/VerticalScrollbar"        Target="TaharezLook/VerticalScrollbar" />
    32     <WindowAlias Alias="HUDWidgets/Slider"                   Target="TaharezLook/Slider" />
    33     <WindowAlias Alias="HUDWidgets/Spinner"                  Target="TaharezLook/Spinner" />
    34     <WindowAlias Alias="HUDWidgets/TabButton"                Target="TaharezLook/TabButton" />
    35     <WindowAlias Alias="HUDWidgets/TabControl"               Target="TaharezLook/TabControl" />
    36     <WindowAlias Alias="HUDWidgets/HorizontalScrollbarThumb" Target="TaharezLook/HorizontalScrollbarThumb" />
    37     <WindowAlias Alias="HUDWidgets/SliderThumb"              Target="TaharezLook/SliderThumb" />
    38     <WindowAlias Alias="HUDWidgets/VerticalScrollbarThumb"   Target="TaharezLook/VerticalScrollbarThumb" />
    39     <WindowAlias Alias="HUDWidgets/Titlebar"                 Target="TaharezLook/Titlebar" />
    40     <WindowAlias Alias="HUDWidgets/Tooltip"                  Target="TaharezLook/Tooltip" />
    41     <WindowAlias Alias="HUDWidgets/Tree"                     Target="TaharezLook/Tree" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="TaharezHUDWidgets" version="5">
     3    <WindowAlias alias="HUDWidgets/StaticImage" target="TaharezLook/StaticImage" />
     4    <WindowAlias alias="HUDWidgets/StaticText" target="TaharezLook/StaticText" />
     5    <WindowAlias alias="HUDWidgets/TabButtonPane" target="TaharezLook/TabButtonPane" />
     6    <WindowAlias alias="HUDWidgets/TabContentPane" target="TaharezLook/TabContentPane" />
     7    <WindowAlias alias="HUDWidgets/Checkbox" target="TaharezLook/Checkbox" />
     8    <WindowAlias alias="HUDWidgets/Combobox" target="TaharezLook/Combobox" />
     9    <WindowAlias alias="HUDWidgets/ComboDropList" target="TaharezLook/ComboDropList" />
     10    <WindowAlias alias="HUDWidgets/ComboEditbox" target="TaharezLook/ComboEditbox" />
     11    <WindowAlias alias="HUDWidgets/Editbox" target="TaharezLook/Editbox" />
     12    <WindowAlias alias="HUDWidgets/FrameWindow" target="TaharezLook/FrameWindow" />
     13    <WindowAlias alias="HUDWidgets/GroupBox" target="TaharezLook/GroupBox" />
     14    <WindowAlias alias="HUDWidgets/ItemListbox" target="TaharezLook/ItemListbox" />
     15    <WindowAlias alias="HUDWidgets/ListboxItem" target="TaharezLook/ListboxItem" />
     16    <WindowAlias alias="HUDWidgets/Listbox" target="TaharezLook/Listbox" />
     17    <WindowAlias alias="HUDWidgets/ListHeader" target="TaharezLook/ListHeader" />
     18    <WindowAlias alias="HUDWidgets/ListHeaderSegment" target="TaharezLook/ListHeaderSegment" />
     19    <WindowAlias alias="HUDWidgets/MultiLineEditbox" target="TaharezLook/MultiLineEditbox" />
     20    <WindowAlias alias="HUDWidgets/Menubar" target="TaharezLook/Menubar" />
     21    <WindowAlias alias="HUDWidgets/MenuItem" target="TaharezLook/MenuItem" />
     22    <WindowAlias alias="HUDWidgets/MultiColumnList" target="TaharezLook/MultiColumnList" />
     23    <WindowAlias alias="HUDWidgets/PopupMenu" target="TaharezLook/PopupMenu" />
     24    <WindowAlias alias="HUDWidgets/ProgressBar" target="TaharezLook/ProgressBar" />
     25    <WindowAlias alias="HUDWidgets/Button" target="TaharezLook/Button" />
     26    <WindowAlias alias="HUDWidgets/ImageButton" target="TaharezLook/ImageButton" />
     27    <WindowAlias alias="HUDWidgets/RadioButton" target="TaharezLook/RadioButton" />
     28    <WindowAlias alias="HUDWidgets/SystemButton" target="TaharezLook/SystemButton" />
     29    <WindowAlias alias="HUDWidgets/ScrollablePane" target="TaharezLook/ScrollablePane" />
     30    <WindowAlias alias="HUDWidgets/HorizontalScrollbar" target="TaharezLook/HorizontalScrollbar" />
     31    <WindowAlias alias="HUDWidgets/VerticalScrollbar" target="TaharezLook/VerticalScrollbar" />
     32    <WindowAlias alias="HUDWidgets/Slider" target="TaharezLook/Slider" />
     33    <WindowAlias alias="HUDWidgets/Spinner" target="TaharezLook/Spinner" />
     34    <WindowAlias alias="HUDWidgets/TabButton" target="TaharezLook/TabButton" />
     35    <WindowAlias alias="HUDWidgets/TabControl" target="TaharezLook/TabControl" />
     36    <WindowAlias alias="HUDWidgets/HorizontalScrollbarThumb" target="TaharezLook/HorizontalScrollbarThumb" />
     37    <WindowAlias alias="HUDWidgets/SliderThumb" target="TaharezLook/SliderThumb" />
     38    <WindowAlias alias="HUDWidgets/VerticalScrollbarThumb" target="TaharezLook/VerticalScrollbarThumb" />
     39    <WindowAlias alias="HUDWidgets/Titlebar" target="TaharezLook/Titlebar" />
     40    <WindowAlias alias="HUDWidgets/Tooltip" target="TaharezLook/Tooltip" />
     41    <WindowAlias alias="HUDWidgets/Tree" target="TaharezLook/Tree" />
    4242</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/TaharezLook.scheme

    r8079 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="TaharezLook">
    3     <Imageset Name="TaharezLook" Filename="TaharezLook.imageset" />
    4     <LookNFeel Filename="TaharezLook.looknfeel" />
    5     <WindowRendererSet Filename="CEGUIFalagardWRBase" />
    6 
    7     <!-- Standard widgets -->
    8     <FalagardMapping WindowType="TaharezLook/StaticImage"              TargetType="DefaultWindow"           Renderer="Falagard/StaticImage"       LookNFeel="TaharezLook/StaticImage" />
    9     <FalagardMapping WindowType="TaharezLook/StaticText"               TargetType="DefaultWindow"           Renderer="Falagard/StaticText"        LookNFeel="TaharezLook/StaticText" />
    10     <FalagardMapping WindowType="TaharezLook/TabButtonPane"            TargetType="DefaultWindow"           Renderer="Falagard/Default"           LookNFeel="TaharezLook/TabButtonPane" />
    11     <FalagardMapping WindowType="TaharezLook/TabContentPane"           TargetType="DefaultWindow"           Renderer="Falagard/Default"           LookNFeel="TaharezLook/TabContentPane" />
    12     <FalagardMapping WindowType="TaharezLook/Checkbox"                 TargetType="CEGUI/Checkbox"          Renderer="Falagard/ToggleButton"      LookNFeel="TaharezLook/Checkbox" />
    13     <FalagardMapping WindowType="TaharezLook/Combobox"                 TargetType="CEGUI/Combobox"          Renderer="Falagard/Default"           LookNFeel="TaharezLook/Combobox" />
    14     <FalagardMapping WindowType="TaharezLook/ComboDropList"            TargetType="CEGUI/ComboDropList"     Renderer="Falagard/Listbox"           LookNFeel="TaharezLook/ComboDropList" />
    15     <FalagardMapping WindowType="TaharezLook/ComboEditbox"             TargetType="CEGUI/Editbox"           Renderer="Falagard/Editbox"           LookNFeel="TaharezLook/ComboEditbox" />
    16     <FalagardMapping WindowType="TaharezLook/Editbox"                  TargetType="CEGUI/Editbox"           Renderer="Falagard/Editbox"           LookNFeel="TaharezLook/Editbox" />
    17     <FalagardMapping WindowType="TaharezLook/FrameWindow"              TargetType="CEGUI/FrameWindow"       Renderer="Falagard/FrameWindow"       LookNFeel="TaharezLook/FrameWindow" />
    18     <FalagardMapping WindowType="TaharezLook/GroupBox"                 TargetType="CEGUI/GroupBox"          Renderer="Falagard/Default"           LookNFeel="TaharezLook/GroupBox" />
    19     <FalagardMapping WindowType="TaharezLook/ItemListbox"              TargetType="CEGUI/ItemListbox"       Renderer="Falagard/ItemListbox"       LookNFeel="TaharezLook/ItemListbox" />
    20     <FalagardMapping WindowType="TaharezLook/ListboxItem"              TargetType="CEGUI/ItemEntry"         Renderer="Falagard/ItemEntry"         LookNFeel="TaharezLook/ListboxItem" />
    21     <FalagardMapping WindowType="TaharezLook/Listbox"                  TargetType="CEGUI/Listbox"           Renderer="Falagard/Listbox"           LookNFeel="TaharezLook/Listbox" />
    22     <FalagardMapping WindowType="TaharezLook/ListHeader"               TargetType="CEGUI/ListHeader"        Renderer="Falagard/ListHeader"        LookNFeel="TaharezLook/ListHeader" />
    23     <FalagardMapping WindowType="TaharezLook/ListHeaderSegment"        TargetType="CEGUI/ListHeaderSegment" Renderer="Falagard/ListHeaderSegment" LookNFeel="TaharezLook/ListHeaderSegment" />
    24     <FalagardMapping WindowType="TaharezLook/MultiLineEditbox"         TargetType="CEGUI/MultiLineEditbox"  Renderer="Falagard/MultiLineEditbox"  LookNFeel="TaharezLook/MultiLineEditbox" />
    25     <FalagardMapping WindowType="TaharezLook/Menubar"                  TargetType="CEGUI/Menubar"           Renderer="Falagard/Menubar"           LookNFeel="TaharezLook/Menubar" />
    26     <FalagardMapping WindowType="TaharezLook/MenuItem"                 TargetType="CEGUI/MenuItem"          Renderer="Falagard/MenuItem"          LookNFeel="TaharezLook/MenuItem" />
    27     <FalagardMapping WindowType="TaharezLook/MultiColumnList"          TargetType="CEGUI/MultiColumnList"   Renderer="Falagard/MultiColumnList"   LookNFeel="TaharezLook/MultiColumnList" />
    28     <FalagardMapping WindowType="TaharezLook/PopupMenu"                TargetType="CEGUI/PopupMenu"         Renderer="Falagard/PopupMenu"         LookNFeel="TaharezLook/PopupMenu" />
    29     <FalagardMapping WindowType="TaharezLook/ProgressBar"              TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="TaharezLook/ProgressBar" />
    30     <FalagardMapping WindowType="TaharezLook/Button"                   TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="TaharezLook/Button" />
    31     <FalagardMapping WindowType="TaharezLook/ImageButton"              TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="TaharezLook/ImageButton" />
    32     <FalagardMapping WindowType="TaharezLook/RadioButton"              TargetType="CEGUI/RadioButton"       Renderer="Falagard/ToggleButton"      LookNFeel="TaharezLook/RadioButton" />
    33     <FalagardMapping WindowType="TaharezLook/SystemButton"             TargetType="CEGUI/PushButton"        Renderer="Falagard/SystemButton"      LookNFeel="TaharezLook/Button" />
    34     <FalagardMapping WindowType="TaharezLook/ScrollablePane"           TargetType="CEGUI/ScrollablePane"    Renderer="Falagard/ScrollablePane"    LookNFeel="TaharezLook/ScrollablePane" />
    35     <FalagardMapping WindowType="TaharezLook/HorizontalScrollbar"      TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="TaharezLook/HorizontalScrollbar" />
    36     <FalagardMapping WindowType="TaharezLook/VerticalScrollbar"        TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="TaharezLook/VerticalScrollbar" />
    37     <FalagardMapping WindowType="TaharezLook/Slider"                   TargetType="CEGUI/Slider"            Renderer="Falagard/Slider"            LookNFeel="TaharezLook/Slider" />
    38     <FalagardMapping WindowType="TaharezLook/Spinner"                  TargetType="CEGUI/Spinner"           Renderer="Falagard/Default"           LookNFeel="TaharezLook/Spinner" />
    39     <FalagardMapping WindowType="TaharezLook/TabButton"                TargetType="CEGUI/TabButton"         Renderer="Falagard/TabButton"         LookNFeel="TaharezLook/TabButton" />
    40     <FalagardMapping WindowType="TaharezLook/TabControl"               TargetType="CEGUI/TabControl"        Renderer="Falagard/TabControl"        LookNFeel="TaharezLook/TabControl" />
    41     <FalagardMapping WindowType="TaharezLook/HorizontalScrollbarThumb" TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="TaharezLook/HorizontalScrollbarThumb" />
    42     <FalagardMapping WindowType="TaharezLook/SliderThumb"              TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="TaharezLook/SliderThumb" />
    43     <FalagardMapping WindowType="TaharezLook/VerticalScrollbarThumb"   TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="TaharezLook/VerticalScrollbarThumb" />
    44     <FalagardMapping WindowType="TaharezLook/Titlebar"                 TargetType="CEGUI/Titlebar"          Renderer="Falagard/Titlebar"          LookNFeel="TaharezLook/Titlebar" />
    45     <FalagardMapping WindowType="TaharezLook/Tooltip"                  TargetType="CEGUI/Tooltip"           Renderer="Falagard/Tooltip"           LookNFeel="TaharezLook/Tooltip" />
    46     <FalagardMapping WindowType="TaharezLook/Tree"                     TargetType="CEGUI/Tree"              Renderer="Falagard/Tree"              LookNFeel="TaharezLook/Tree" />
    47 
    48     <!-- Additional widgets -->
    49     <FalagardMapping WindowType="TaharezLook/AlternateProgressBar"        TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="TaharezLook/AltProgressBar" />
    50     <FalagardMapping WindowType="TaharezLook/VUMeter"                     TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="TaharezLook/VUMeter" />
    51     <FalagardMapping WindowType="TaharezLook/LargeVerticalScrollbar"      TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="TaharezLook/LargeVerticalScrollbar" />
    52     <FalagardMapping WindowType="TaharezLook/LargeVerticalScrollbarThumb" TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="TaharezLook/LargeVerticalScrollbarThumb" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="TaharezLook" version="5">
     3    <Imageset filename="TaharezLook.imageset" name="TaharezLook" />
     4    <LookNFeel filename="TaharezLook.looknfeel" />
     5    <WindowRendererSet filename="CEGUICoreWindowRendererSet" />
     6    <FalagardMapping lookNFeel="TaharezLook/StaticImage" renderer="Core/StaticImage" targetType="DefaultWindow" windowType="TaharezLook/StaticImage" />
     7    <FalagardMapping lookNFeel="TaharezLook/StaticText" renderer="Core/StaticText" targetType="DefaultWindow" windowType="TaharezLook/StaticText" />
     8    <FalagardMapping lookNFeel="TaharezLook/TabButtonPane" renderer="Core/Default" targetType="DefaultWindow" windowType="TaharezLook/TabButtonPane" />
     9    <FalagardMapping lookNFeel="TaharezLook/TabContentPane" renderer="Core/Default" targetType="DefaultWindow" windowType="TaharezLook/TabContentPane" />
     10    <FalagardMapping lookNFeel="TaharezLook/Checkbox" renderer="Core/ToggleButton" targetType="CEGUI/ToggleButton" windowType="TaharezLook/Checkbox" />
     11    <FalagardMapping lookNFeel="TaharezLook/Combobox" renderer="Core/Default" targetType="CEGUI/Combobox" windowType="TaharezLook/Combobox" />
     12    <FalagardMapping lookNFeel="TaharezLook/ComboDropList" renderer="Core/Listbox" targetType="CEGUI/ComboDropList" windowType="TaharezLook/ComboDropList" />
     13    <FalagardMapping lookNFeel="TaharezLook/ComboEditbox" renderer="Core/Editbox" targetType="CEGUI/Editbox" windowType="TaharezLook/ComboEditbox" />
     14    <FalagardMapping lookNFeel="TaharezLook/Editbox" renderer="Core/Editbox" targetType="CEGUI/Editbox" windowType="TaharezLook/Editbox" />
     15    <FalagardMapping lookNFeel="TaharezLook/FrameWindow" renderer="Core/FrameWindow" targetType="CEGUI/FrameWindow" windowType="TaharezLook/FrameWindow" />
     16    <FalagardMapping lookNFeel="TaharezLook/GroupBox" renderer="Core/Default" targetType="CEGUI/GroupBox" windowType="TaharezLook/GroupBox" />
     17    <FalagardMapping lookNFeel="TaharezLook/ItemListbox" renderer="Core/ItemListbox" targetType="CEGUI/ItemListbox" windowType="TaharezLook/ItemListbox" />
     18    <FalagardMapping lookNFeel="TaharezLook/ListboxItem" renderer="Core/ItemEntry" targetType="CEGUI/ItemEntry" windowType="TaharezLook/ListboxItem" />
     19    <FalagardMapping lookNFeel="TaharezLook/Listbox" renderer="Core/Listbox" targetType="CEGUI/Listbox" windowType="TaharezLook/Listbox" />
     20    <FalagardMapping lookNFeel="TaharezLook/ListHeader" renderer="Core/ListHeader" targetType="CEGUI/ListHeader" windowType="TaharezLook/ListHeader" />
     21    <FalagardMapping lookNFeel="TaharezLook/ListHeaderSegment" renderer="Core/ListHeaderSegment" targetType="CEGUI/ListHeaderSegment" windowType="TaharezLook/ListHeaderSegment" />
     22    <FalagardMapping lookNFeel="TaharezLook/MultiLineEditbox" renderer="Core/MultiLineEditbox" targetType="CEGUI/MultiLineEditbox" windowType="TaharezLook/MultiLineEditbox" />
     23    <FalagardMapping lookNFeel="TaharezLook/Menubar" renderer="Core/Menubar" targetType="CEGUI/Menubar" windowType="TaharezLook/Menubar" />
     24    <FalagardMapping lookNFeel="TaharezLook/MenuItem" renderer="Core/MenuItem" targetType="CEGUI/MenuItem" windowType="TaharezLook/MenuItem" />
     25    <FalagardMapping lookNFeel="TaharezLook/MultiColumnList" renderer="Core/MultiColumnList" targetType="CEGUI/MultiColumnList" windowType="TaharezLook/MultiColumnList" />
     26    <FalagardMapping lookNFeel="TaharezLook/PopupMenu" renderer="Core/PopupMenu" targetType="CEGUI/PopupMenu" windowType="TaharezLook/PopupMenu" />
     27    <FalagardMapping lookNFeel="TaharezLook/ProgressBar" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="TaharezLook/ProgressBar" />
     28    <FalagardMapping lookNFeel="TaharezLook/Button" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="TaharezLook/Button" />
     29    <FalagardMapping lookNFeel="TaharezLook/ImageButton" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="TaharezLook/ImageButton" />
     30    <FalagardMapping lookNFeel="TaharezLook/RadioButton" renderer="Core/ToggleButton" targetType="CEGUI/RadioButton" windowType="TaharezLook/RadioButton" />
     31    <FalagardMapping lookNFeel="TaharezLook/Button" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="TaharezLook/SystemButton" />
     32    <FalagardMapping lookNFeel="TaharezLook/ScrollablePane" renderer="Core/ScrollablePane" targetType="CEGUI/ScrollablePane" windowType="TaharezLook/ScrollablePane" />
     33    <FalagardMapping lookNFeel="TaharezLook/HorizontalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="TaharezLook/HorizontalScrollbar" />
     34    <FalagardMapping lookNFeel="TaharezLook/VerticalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="TaharezLook/VerticalScrollbar" />
     35    <FalagardMapping lookNFeel="TaharezLook/Slider" renderer="Core/Slider" targetType="CEGUI/Slider" windowType="TaharezLook/Slider" />
     36    <FalagardMapping lookNFeel="TaharezLook/Spinner" renderer="Core/Default" targetType="CEGUI/Spinner" windowType="TaharezLook/Spinner" />
     37    <FalagardMapping lookNFeel="TaharezLook/TabButton" renderer="Core/TabButton" targetType="CEGUI/TabButton" windowType="TaharezLook/TabButton" />
     38    <FalagardMapping lookNFeel="TaharezLook/TabControl" renderer="Core/TabControl" targetType="CEGUI/TabControl" windowType="TaharezLook/TabControl" />
     39    <FalagardMapping lookNFeel="TaharezLook/HorizontalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="TaharezLook/HorizontalScrollbarThumb" />
     40    <FalagardMapping lookNFeel="TaharezLook/SliderThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="TaharezLook/SliderThumb" />
     41    <FalagardMapping lookNFeel="TaharezLook/VerticalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="TaharezLook/VerticalScrollbarThumb" />
     42    <FalagardMapping lookNFeel="TaharezLook/Titlebar" renderer="Core/Titlebar" targetType="CEGUI/Titlebar" windowType="TaharezLook/Titlebar" />
     43    <FalagardMapping lookNFeel="TaharezLook/Tooltip" renderer="Core/Tooltip" targetType="CEGUI/Tooltip" windowType="TaharezLook/Tooltip" />
     44    <FalagardMapping lookNFeel="TaharezLook/Tree" renderer="Core/Tree" targetType="CEGUI/Tree" windowType="TaharezLook/Tree" />
     45    <FalagardMapping lookNFeel="TaharezLook/AltProgressBar" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="TaharezLook/AlternateProgressBar" />
     46    <FalagardMapping lookNFeel="TaharezLook/VUMeter" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="TaharezLook/VUMeter" />
     47    <FalagardMapping lookNFeel="TaharezLook/LargeVerticalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="TaharezLook/LargeVerticalScrollbar" />
     48    <FalagardMapping lookNFeel="TaharezLook/LargeVerticalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="TaharezLook/LargeVerticalScrollbarThumb" />
    5349</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/TaharezMenuWidgets.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="TaharezMenuWidgets">
    3     <WindowAlias Alias="MenuWidgets/StaticImage"              Target="TaharezLook/StaticImage" />
    4     <WindowAlias Alias="MenuWidgets/StaticText"               Target="TaharezLook/StaticText" />
    5     <WindowAlias Alias="MenuWidgets/TabButtonPane"            Target="TaharezLook/TabButtonPane" />
    6     <WindowAlias Alias="MenuWidgets/TabContentPane"           Target="TaharezLook/TabContentPane" />
    7     <WindowAlias Alias="MenuWidgets/Checkbox"                 Target="TaharezLook/Checkbox" />
    8     <WindowAlias Alias="MenuWidgets/Combobox"                 Target="TaharezLook/Combobox" />
    9     <WindowAlias Alias="MenuWidgets/ComboDropList"            Target="TaharezLook/ComboDropList" />
    10     <WindowAlias Alias="MenuWidgets/ComboEditbox"             Target="TaharezLook/ComboEditbox" />
    11     <WindowAlias Alias="MenuWidgets/Editbox"                  Target="TaharezLook/Editbox" />
    12     <WindowAlias Alias="MenuWidgets/FrameWindow"              Target="TaharezLook/FrameWindow" />
    13     <WindowAlias Alias="MenuWidgets/GroupBox"                 Target="TaharezLook/GroupBox" />
    14     <WindowAlias Alias="MenuWidgets/ItemListbox"              Target="TaharezLook/ItemListbox" />
    15     <WindowAlias Alias="MenuWidgets/ListboxItem"              Target="TaharezLook/ListboxItem" />
    16     <WindowAlias Alias="MenuWidgets/Listbox"                  Target="TaharezLook/Listbox" />
    17     <WindowAlias Alias="MenuWidgets/ListHeader"               Target="TaharezLook/ListHeader" />
    18     <WindowAlias Alias="MenuWidgets/ListHeaderSegment"        Target="TaharezLook/ListHeaderSegment" />
    19     <WindowAlias Alias="MenuWidgets/MultiLineEditbox"         Target="TaharezLook/MultiLineEditbox" />
    20     <WindowAlias Alias="MenuWidgets/Menubar"                  Target="TaharezLook/Menubar" />
    21     <WindowAlias Alias="MenuWidgets/MenuItem"                 Target="TaharezLook/MenuItem" />
    22     <WindowAlias Alias="MenuWidgets/MultiColumnList"          Target="TaharezLook/MultiColumnList" />
    23     <WindowAlias Alias="MenuWidgets/PopupMenu"                Target="TaharezLook/PopupMenu" />
    24     <WindowAlias Alias="MenuWidgets/ProgressBar"              Target="TaharezLook/ProgressBar" />
    25     <WindowAlias Alias="MenuWidgets/Button"                   Target="TaharezLook/Button" />
    26     <WindowAlias Alias="MenuWidgets/ImageButton"              Target="TaharezLook/ImageButton" />
    27     <WindowAlias Alias="MenuWidgets/RadioButton"              Target="TaharezLook/RadioButton" />
    28     <WindowAlias Alias="MenuWidgets/SystemButton"             Target="TaharezLook/SystemButton" />
    29     <WindowAlias Alias="MenuWidgets/ScrollablePane"           Target="TaharezLook/ScrollablePane" />
    30     <WindowAlias Alias="MenuWidgets/HorizontalScrollbar"      Target="TaharezLook/HorizontalScrollbar" />
    31     <WindowAlias Alias="MenuWidgets/VerticalScrollbar"        Target="TaharezLook/VerticalScrollbar" />
    32     <WindowAlias Alias="MenuWidgets/Slider"                   Target="TaharezLook/Slider" />
    33     <WindowAlias Alias="MenuWidgets/Spinner"                  Target="TaharezLook/Spinner" />
    34     <WindowAlias Alias="MenuWidgets/TabButton"                Target="TaharezLook/TabButton" />
    35     <WindowAlias Alias="MenuWidgets/TabControl"               Target="TaharezLook/TabControl" />
    36     <WindowAlias Alias="MenuWidgets/HorizontalScrollbarThumb" Target="TaharezLook/HorizontalScrollbarThumb" />
    37     <WindowAlias Alias="MenuWidgets/SliderThumb"              Target="TaharezLook/SliderThumb" />
    38     <WindowAlias Alias="MenuWidgets/VerticalScrollbarThumb"   Target="TaharezLook/VerticalScrollbarThumb" />
    39     <WindowAlias Alias="MenuWidgets/Titlebar"                 Target="TaharezLook/Titlebar" />
    40     <WindowAlias Alias="MenuWidgets/Tooltip"                  Target="TaharezLook/Tooltip" />
    41     <WindowAlias Alias="MenuWidgets/Tree"                     Target="TaharezLook/Tree" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="TaharezMenuWidgets" version="5">
     3    <WindowAlias alias="MenuWidgets/StaticImage" target="TaharezLook/StaticImage" />
     4    <WindowAlias alias="MenuWidgets/StaticText" target="TaharezLook/StaticText" />
     5    <WindowAlias alias="MenuWidgets/TabButtonPane" target="TaharezLook/TabButtonPane" />
     6    <WindowAlias alias="MenuWidgets/TabContentPane" target="TaharezLook/TabContentPane" />
     7    <WindowAlias alias="MenuWidgets/Checkbox" target="TaharezLook/Checkbox" />
     8    <WindowAlias alias="MenuWidgets/Combobox" target="TaharezLook/Combobox" />
     9    <WindowAlias alias="MenuWidgets/ComboDropList" target="TaharezLook/ComboDropList" />
     10    <WindowAlias alias="MenuWidgets/ComboEditbox" target="TaharezLook/ComboEditbox" />
     11    <WindowAlias alias="MenuWidgets/Editbox" target="TaharezLook/Editbox" />
     12    <WindowAlias alias="MenuWidgets/FrameWindow" target="TaharezLook/FrameWindow" />
     13    <WindowAlias alias="MenuWidgets/GroupBox" target="TaharezLook/GroupBox" />
     14    <WindowAlias alias="MenuWidgets/ItemListbox" target="TaharezLook/ItemListbox" />
     15    <WindowAlias alias="MenuWidgets/ListboxItem" target="TaharezLook/ListboxItem" />
     16    <WindowAlias alias="MenuWidgets/Listbox" target="TaharezLook/Listbox" />
     17    <WindowAlias alias="MenuWidgets/ListHeader" target="TaharezLook/ListHeader" />
     18    <WindowAlias alias="MenuWidgets/ListHeaderSegment" target="TaharezLook/ListHeaderSegment" />
     19    <WindowAlias alias="MenuWidgets/MultiLineEditbox" target="TaharezLook/MultiLineEditbox" />
     20    <WindowAlias alias="MenuWidgets/Menubar" target="TaharezLook/Menubar" />
     21    <WindowAlias alias="MenuWidgets/MenuItem" target="TaharezLook/MenuItem" />
     22    <WindowAlias alias="MenuWidgets/MultiColumnList" target="TaharezLook/MultiColumnList" />
     23    <WindowAlias alias="MenuWidgets/PopupMenu" target="TaharezLook/PopupMenu" />
     24    <WindowAlias alias="MenuWidgets/ProgressBar" target="TaharezLook/ProgressBar" />
     25    <WindowAlias alias="MenuWidgets/Button" target="TaharezLook/Button" />
     26    <WindowAlias alias="MenuWidgets/ImageButton" target="TaharezLook/ImageButton" />
     27    <WindowAlias alias="MenuWidgets/RadioButton" target="TaharezLook/RadioButton" />
     28    <WindowAlias alias="MenuWidgets/SystemButton" target="TaharezLook/SystemButton" />
     29    <WindowAlias alias="MenuWidgets/ScrollablePane" target="TaharezLook/ScrollablePane" />
     30    <WindowAlias alias="MenuWidgets/HorizontalScrollbar" target="TaharezLook/HorizontalScrollbar" />
     31    <WindowAlias alias="MenuWidgets/VerticalScrollbar" target="TaharezLook/VerticalScrollbar" />
     32    <WindowAlias alias="MenuWidgets/Slider" target="TaharezLook/Slider" />
     33    <WindowAlias alias="MenuWidgets/Spinner" target="TaharezLook/Spinner" />
     34    <WindowAlias alias="MenuWidgets/TabButton" target="TaharezLook/TabButton" />
     35    <WindowAlias alias="MenuWidgets/TabControl" target="TaharezLook/TabControl" />
     36    <WindowAlias alias="MenuWidgets/HorizontalScrollbarThumb" target="TaharezLook/HorizontalScrollbarThumb" />
     37    <WindowAlias alias="MenuWidgets/SliderThumb" target="TaharezLook/SliderThumb" />
     38    <WindowAlias alias="MenuWidgets/VerticalScrollbarThumb" target="TaharezLook/VerticalScrollbarThumb" />
     39    <WindowAlias alias="MenuWidgets/Titlebar" target="TaharezLook/Titlebar" />
     40    <WindowAlias alias="MenuWidgets/Tooltip" target="TaharezLook/Tooltip" />
     41    <WindowAlias alias="MenuWidgets/Tree" target="TaharezLook/Tree" />
    4242</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/VanillaHUDWidgets.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="VanillaHUDWidgets">
    3     <WindowAlias Alias="HUDWidgets/StaticImage"              Target="Vanilla/StaticImage" />
    4     <WindowAlias Alias="HUDWidgets/StaticText"               Target="Vanilla/StaticText" />
    5     <WindowAlias Alias="HUDWidgets/TabButtonPane"            Target="Vanilla/TabButtonPane" />
    6     <WindowAlias Alias="HUDWidgets/TabContentPane"           Target="Vanilla/TabContentPane" />
    7     <WindowAlias Alias="HUDWidgets/Checkbox"                 Target="Vanilla/Checkbox" />
    8     <WindowAlias Alias="HUDWidgets/Combobox"                 Target="Vanilla/Combobox" />
    9     <WindowAlias Alias="HUDWidgets/ComboDropList"            Target="Vanilla/ComboDropList" />
    10     <WindowAlias Alias="HUDWidgets/ComboEditbox"             Target="Vanilla/ComboEditbox" />
    11     <WindowAlias Alias="HUDWidgets/Editbox"                  Target="Vanilla/Editbox" />
    12     <WindowAlias Alias="HUDWidgets/FrameWindow"              Target="Vanilla/FrameWindow" />
    13     <WindowAlias Alias="HUDWidgets/GroupBox"                 Target="Vanilla/GroupBox" />
    14     <WindowAlias Alias="HUDWidgets/ItemListbox"              Target="Vanilla/ItemListbox" />
    15     <WindowAlias Alias="HUDWidgets/ListboxItem"              Target="Vanilla/ListboxItem" />
    16     <WindowAlias Alias="HUDWidgets/Listbox"                  Target="Vanilla/Listbox" />
    17     <WindowAlias Alias="HUDWidgets/ListHeader"               Target="Vanilla/ListHeader" />
    18     <WindowAlias Alias="HUDWidgets/ListHeaderSegment"        Target="Vanilla/ListHeaderSegment" />
    19     <WindowAlias Alias="HUDWidgets/MultiLineEditbox"         Target="Vanilla/MultiLineEditbox" />
    20     <WindowAlias Alias="HUDWidgets/Menubar"                  Target="Vanilla/Menubar" />
    21     <WindowAlias Alias="HUDWidgets/MenuItem"                 Target="Vanilla/MenuItem" />
    22     <WindowAlias Alias="HUDWidgets/MultiColumnList"          Target="Vanilla/MultiColumnList" />
    23     <WindowAlias Alias="HUDWidgets/PopupMenu"                Target="Vanilla/PopupMenu" />
    24     <WindowAlias Alias="HUDWidgets/ProgressBar"              Target="Vanilla/ProgressBar" />
    25     <WindowAlias Alias="HUDWidgets/Button"                   Target="Vanilla/Button" />
    26     <WindowAlias Alias="HUDWidgets/ImageButton"              Target="Vanilla/ImageButton" />
    27     <WindowAlias Alias="HUDWidgets/RadioButton"              Target="Vanilla/RadioButton" />
    28     <WindowAlias Alias="HUDWidgets/SystemButton"             Target="Vanilla/SystemButton" />
    29     <WindowAlias Alias="HUDWidgets/ScrollablePane"           Target="Vanilla/ScrollablePane" />
    30     <WindowAlias Alias="HUDWidgets/HorizontalScrollbar"      Target="Vanilla/HorizontalScrollbar" />
    31     <WindowAlias Alias="HUDWidgets/VerticalScrollbar"        Target="Vanilla/VerticalScrollbar" />
    32     <WindowAlias Alias="HUDWidgets/Slider"                   Target="Vanilla/Slider" />
    33     <WindowAlias Alias="HUDWidgets/Spinner"                  Target="Vanilla/Spinner" />
    34     <WindowAlias Alias="HUDWidgets/TabButton"                Target="Vanilla/TabButton" />
    35     <WindowAlias Alias="HUDWidgets/TabControl"               Target="Vanilla/TabControl" />
    36     <WindowAlias Alias="HUDWidgets/HorizontalScrollbarThumb" Target="Vanilla/HorizontalScrollbarThumb" />
    37     <WindowAlias Alias="HUDWidgets/SliderThumb"              Target="Vanilla/SliderThumb" />
    38     <WindowAlias Alias="HUDWidgets/VerticalScrollbarThumb"   Target="Vanilla/VerticalScrollbarThumb" />
    39     <WindowAlias Alias="HUDWidgets/Titlebar"                 Target="Vanilla/Titlebar" />
    40     <WindowAlias Alias="HUDWidgets/Tooltip"                  Target="Vanilla/Tooltip" />
    41     <WindowAlias Alias="HUDWidgets/Tree"                     Target="Vanilla/Tree" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="VanillaHUDWidgets" version="5">
     3    <WindowAlias alias="HUDWidgets/StaticImage" target="Vanilla/StaticImage" />
     4    <WindowAlias alias="HUDWidgets/StaticText" target="Vanilla/StaticText" />
     5    <WindowAlias alias="HUDWidgets/TabButtonPane" target="Vanilla/TabButtonPane" />
     6    <WindowAlias alias="HUDWidgets/TabContentPane" target="Vanilla/TabContentPane" />
     7    <WindowAlias alias="HUDWidgets/Checkbox" target="Vanilla/Checkbox" />
     8    <WindowAlias alias="HUDWidgets/Combobox" target="Vanilla/Combobox" />
     9    <WindowAlias alias="HUDWidgets/ComboDropList" target="Vanilla/ComboDropList" />
     10    <WindowAlias alias="HUDWidgets/ComboEditbox" target="Vanilla/ComboEditbox" />
     11    <WindowAlias alias="HUDWidgets/Editbox" target="Vanilla/Editbox" />
     12    <WindowAlias alias="HUDWidgets/FrameWindow" target="Vanilla/FrameWindow" />
     13    <WindowAlias alias="HUDWidgets/GroupBox" target="Vanilla/GroupBox" />
     14    <WindowAlias alias="HUDWidgets/ItemListbox" target="Vanilla/ItemListbox" />
     15    <WindowAlias alias="HUDWidgets/ListboxItem" target="Vanilla/ListboxItem" />
     16    <WindowAlias alias="HUDWidgets/Listbox" target="Vanilla/Listbox" />
     17    <WindowAlias alias="HUDWidgets/ListHeader" target="Vanilla/ListHeader" />
     18    <WindowAlias alias="HUDWidgets/ListHeaderSegment" target="Vanilla/ListHeaderSegment" />
     19    <WindowAlias alias="HUDWidgets/MultiLineEditbox" target="Vanilla/MultiLineEditbox" />
     20    <WindowAlias alias="HUDWidgets/Menubar" target="Vanilla/Menubar" />
     21    <WindowAlias alias="HUDWidgets/MenuItem" target="Vanilla/MenuItem" />
     22    <WindowAlias alias="HUDWidgets/MultiColumnList" target="Vanilla/MultiColumnList" />
     23    <WindowAlias alias="HUDWidgets/PopupMenu" target="Vanilla/PopupMenu" />
     24    <WindowAlias alias="HUDWidgets/ProgressBar" target="Vanilla/ProgressBar" />
     25    <WindowAlias alias="HUDWidgets/Button" target="Vanilla/Button" />
     26    <WindowAlias alias="HUDWidgets/ImageButton" target="Vanilla/ImageButton" />
     27    <WindowAlias alias="HUDWidgets/RadioButton" target="Vanilla/RadioButton" />
     28    <WindowAlias alias="HUDWidgets/SystemButton" target="Vanilla/SystemButton" />
     29    <WindowAlias alias="HUDWidgets/ScrollablePane" target="Vanilla/ScrollablePane" />
     30    <WindowAlias alias="HUDWidgets/HorizontalScrollbar" target="Vanilla/HorizontalScrollbar" />
     31    <WindowAlias alias="HUDWidgets/VerticalScrollbar" target="Vanilla/VerticalScrollbar" />
     32    <WindowAlias alias="HUDWidgets/Slider" target="Vanilla/Slider" />
     33    <WindowAlias alias="HUDWidgets/Spinner" target="Vanilla/Spinner" />
     34    <WindowAlias alias="HUDWidgets/TabButton" target="Vanilla/TabButton" />
     35    <WindowAlias alias="HUDWidgets/TabControl" target="Vanilla/TabControl" />
     36    <WindowAlias alias="HUDWidgets/HorizontalScrollbarThumb" target="Vanilla/HorizontalScrollbarThumb" />
     37    <WindowAlias alias="HUDWidgets/SliderThumb" target="Vanilla/SliderThumb" />
     38    <WindowAlias alias="HUDWidgets/VerticalScrollbarThumb" target="Vanilla/VerticalScrollbarThumb" />
     39    <WindowAlias alias="HUDWidgets/Titlebar" target="Vanilla/Titlebar" />
     40    <WindowAlias alias="HUDWidgets/Tooltip" target="Vanilla/Tooltip" />
     41    <WindowAlias alias="HUDWidgets/Tree" target="Vanilla/Tree" />
    4242</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/VanillaLook.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="VanillaLook">
    3     <Imageset Name="Vanilla-Images" Filename="Vanilla.imageset" />
    4     <Imageset Name="TaharezLook"    Filename="TaharezLook.imageset" />
    5     <LookNFeel Filename="Vanilla.looknfeel" />
    6     <LookNFeel Filename="TaharezLook.looknfeel" />
    7     <WindowRendererSet Filename="CEGUIFalagardWRBase" />
    8 
    9     <!-- Standard widgets -->
    10     <FalagardMapping WindowType="Vanilla/StaticImage"              TargetType="DefaultWindow"           Renderer="Falagard/StaticImage"       LookNFeel="Vanilla/StaticImage" />
    11     <FalagardMapping WindowType="Vanilla/StaticText"               TargetType="DefaultWindow"           Renderer="Falagard/StaticText"        LookNFeel="Vanilla/StaticText" />
    12     <FalagardMapping WindowType="Vanilla/Editbox"                  TargetType="CEGUI/Editbox"           Renderer="Falagard/Editbox"           LookNFeel="Vanilla/Editbox" />
    13     <FalagardMapping WindowType="Vanilla/FrameWindow"              TargetType="CEGUI/FrameWindow"       Renderer="Falagard/FrameWindow"       LookNFeel="Vanilla/FrameWindow" />
    14     <FalagardMapping WindowType="Vanilla/Listbox"                  TargetType="CEGUI/Listbox"           Renderer="Falagard/Listbox"           LookNFeel="Vanilla/Listbox" />
    15     <FalagardMapping WindowType="Vanilla/MultiLineEditbox"         TargetType="CEGUI/MultiLineEditbox"  Renderer="Falagard/MultiLineEditbox"  LookNFeel="Vanilla/MultiLineEditbox" />
    16     <FalagardMapping WindowType="Vanilla/Button"                   TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="Vanilla/Button" />
    17     <FalagardMapping WindowType="Vanilla/HorizontalScrollbar"      TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="Vanilla/HorizontalScrollbar" />
    18     <FalagardMapping WindowType="Vanilla/VerticalScrollbar"        TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="Vanilla/VerticalScrollbar" />
    19     <FalagardMapping WindowType="Vanilla/HorizontalScrollbarThumb" TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="Vanilla/HorizontalScrollbarThumb" />
    20     <FalagardMapping WindowType="Vanilla/VerticalScrollbarThumb"   TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="Vanilla/VerticalScrollbarThumb" />
    21     <FalagardMapping WindowType="Vanilla/Titlebar"                 TargetType="CEGUI/Titlebar"          Renderer="Falagard/Titlebar"          LookNFeel="Vanilla/Titlebar" />
    22 
    23     <!-- Missing widgets (using Taharez LookNFeel) -->
    24     <FalagardMapping WindowType="Vanilla/TabButtonPane"            TargetType="DefaultWindow"           Renderer="Falagard/Default"           LookNFeel="TaharezLook/TabButtonPane" />
    25     <FalagardMapping WindowType="Vanilla/TabContentPane"           TargetType="DefaultWindow"           Renderer="Falagard/Default"           LookNFeel="TaharezLook/TabContentPane" />
    26     <FalagardMapping WindowType="Vanilla/Checkbox"                 TargetType="CEGUI/Checkbox"          Renderer="Falagard/ToggleButton"      LookNFeel="TaharezLook/Checkbox" />
    27     <FalagardMapping WindowType="Vanilla/Combobox"                 TargetType="CEGUI/Combobox"          Renderer="Falagard/Default"           LookNFeel="TaharezLook/Combobox" />
    28     <FalagardMapping WindowType="Vanilla/ComboDropList"            TargetType="CEGUI/ComboDropList"     Renderer="Falagard/Listbox"           LookNFeel="TaharezLook/ComboDropList" />
    29     <FalagardMapping WindowType="Vanilla/ComboEditbox"             TargetType="CEGUI/Editbox"           Renderer="Falagard/Editbox"           LookNFeel="TaharezLook/ComboEditbox" />
    30     <FalagardMapping WindowType="Vanilla/GroupBox"                 TargetType="CEGUI/GroupBox"          Renderer="Falagard/Default"           LookNFeel="TaharezLook/GroupBox" />
    31     <FalagardMapping WindowType="Vanilla/ItemListbox"              TargetType="CEGUI/ItemListbox"       Renderer="Falagard/ItemListbox"       LookNFeel="TaharezLook/ItemListbox" />
    32     <FalagardMapping WindowType="Vanilla/ListboxItem"              TargetType="CEGUI/ItemEntry"         Renderer="Falagard/ItemEntry"         LookNFeel="TaharezLook/ListboxItem" />
    33     <FalagardMapping WindowType="Vanilla/ListHeader"               TargetType="CEGUI/ListHeader"        Renderer="Falagard/ListHeader"        LookNFeel="TaharezLook/ListHeader" />
    34     <FalagardMapping WindowType="Vanilla/ListHeaderSegment"        TargetType="CEGUI/ListHeaderSegment" Renderer="Falagard/ListHeaderSegment" LookNFeel="TaharezLook/ListHeaderSegment" />
    35     <FalagardMapping WindowType="Vanilla/Menubar"                  TargetType="CEGUI/Menubar"           Renderer="Falagard/Menubar"           LookNFeel="TaharezLook/Menubar" />
    36     <FalagardMapping WindowType="Vanilla/MenuItem"                 TargetType="CEGUI/MenuItem"          Renderer="Falagard/MenuItem"          LookNFeel="TaharezLook/MenuItem" />
    37     <FalagardMapping WindowType="Vanilla/MultiColumnList"          TargetType="CEGUI/MultiColumnList"   Renderer="Falagard/MultiColumnList"   LookNFeel="TaharezLook/MultiColumnList" />
    38     <FalagardMapping WindowType="Vanilla/PopupMenu"                TargetType="CEGUI/PopupMenu"         Renderer="Falagard/PopupMenu"         LookNFeel="TaharezLook/PopupMenu" />
    39     <FalagardMapping WindowType="Vanilla/ProgressBar"              TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="TaharezLook/ProgressBar" />
    40     <FalagardMapping WindowType="Vanilla/ImageButton"              TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="TaharezLook/ImageButton" />
    41     <FalagardMapping WindowType="Vanilla/RadioButton"              TargetType="CEGUI/RadioButton"       Renderer="Falagard/ToggleButton"      LookNFeel="TaharezLook/RadioButton" />
    42     <FalagardMapping WindowType="Vanilla/SystemButton"             TargetType="CEGUI/PushButton"        Renderer="Falagard/SystemButton"      LookNFeel="TaharezLook/Button" />
    43     <FalagardMapping WindowType="Vanilla/ScrollablePane"           TargetType="CEGUI/ScrollablePane"    Renderer="Falagard/ScrollablePane"    LookNFeel="TaharezLook/ScrollablePane" />
    44     <FalagardMapping WindowType="Vanilla/Slider"                   TargetType="CEGUI/Slider"            Renderer="Falagard/Slider"            LookNFeel="TaharezLook/Slider" />
    45     <FalagardMapping WindowType="Vanilla/Spinner"                  TargetType="CEGUI/Spinner"           Renderer="Falagard/Default"           LookNFeel="TaharezLook/Spinner" />
    46     <FalagardMapping WindowType="Vanilla/TabButton"                TargetType="CEGUI/TabButton"         Renderer="Falagard/TabButton"         LookNFeel="TaharezLook/TabButton" />
    47     <FalagardMapping WindowType="Vanilla/TabControl"               TargetType="CEGUI/TabControl"        Renderer="Falagard/TabControl"        LookNFeel="TaharezLook/TabControl" />
    48     <FalagardMapping WindowType="Vanilla/SliderThumb"              TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="TaharezLook/SliderThumb" />
    49     <FalagardMapping WindowType="Vanilla/Tooltip"                  TargetType="CEGUI/Tooltip"           Renderer="Falagard/Tooltip"           LookNFeel="TaharezLook/Tooltip" />
    50     <FalagardMapping WindowType="Vanilla/Tree"                     TargetType="CEGUI/Tree"              Renderer="Falagard/Tree"              LookNFeel="TaharezLook/Tree" />
    51    
    52     <!-- Additional widgets -->
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="VanillaLook" version="5">
     3    <Imageset filename="Vanilla.imageset" name="Vanilla-Images" />
     4    <Imageset filename="TaharezLook.imageset" name="TaharezLook" />
     5    <LookNFeel filename="Vanilla.looknfeel" />
     6    <LookNFeel filename="TaharezLook.looknfeel" />
     7    <WindowRendererSet filename="CEGUICoreWindowRendererSet" />
     8    <FalagardMapping lookNFeel="Vanilla/StaticImage" renderer="Core/StaticImage" targetType="DefaultWindow" windowType="Vanilla/StaticImage" />
     9    <FalagardMapping lookNFeel="Vanilla/StaticText" renderer="Core/StaticText" targetType="DefaultWindow" windowType="Vanilla/StaticText" />
     10    <FalagardMapping lookNFeel="Vanilla/Editbox" renderer="Core/Editbox" targetType="CEGUI/Editbox" windowType="Vanilla/Editbox" />
     11    <FalagardMapping lookNFeel="Vanilla/FrameWindow" renderer="Core/FrameWindow" targetType="CEGUI/FrameWindow" windowType="Vanilla/FrameWindow" />
     12    <FalagardMapping lookNFeel="Vanilla/Listbox" renderer="Core/Listbox" targetType="CEGUI/Listbox" windowType="Vanilla/Listbox" />
     13    <FalagardMapping lookNFeel="Vanilla/MultiLineEditbox" renderer="Core/MultiLineEditbox" targetType="CEGUI/MultiLineEditbox" windowType="Vanilla/MultiLineEditbox" />
     14    <FalagardMapping lookNFeel="Vanilla/Button" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="Vanilla/Button" />
     15    <FalagardMapping lookNFeel="Vanilla/HorizontalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="Vanilla/HorizontalScrollbar" />
     16    <FalagardMapping lookNFeel="Vanilla/VerticalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="Vanilla/VerticalScrollbar" />
     17    <FalagardMapping lookNFeel="Vanilla/HorizontalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="Vanilla/HorizontalScrollbarThumb" />
     18    <FalagardMapping lookNFeel="Vanilla/VerticalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="Vanilla/VerticalScrollbarThumb" />
     19    <FalagardMapping lookNFeel="Vanilla/Titlebar" renderer="Core/Titlebar" targetType="CEGUI/Titlebar" windowType="Vanilla/Titlebar" />
     20    <FalagardMapping lookNFeel="TaharezLook/TabButtonPane" renderer="Core/Default" targetType="DefaultWindow" windowType="Vanilla/TabButtonPane" />
     21    <FalagardMapping lookNFeel="TaharezLook/TabContentPane" renderer="Core/Default" targetType="DefaultWindow" windowType="Vanilla/TabContentPane" />
     22    <FalagardMapping lookNFeel="TaharezLook/Checkbox" renderer="Core/ToggleButton" targetType="CEGUI/ToggleButton" windowType="Vanilla/Checkbox" />
     23    <FalagardMapping lookNFeel="TaharezLook/Combobox" renderer="Core/Default" targetType="CEGUI/Combobox" windowType="Vanilla/Combobox" />
     24    <FalagardMapping lookNFeel="TaharezLook/ComboDropList" renderer="Core/Listbox" targetType="CEGUI/ComboDropList" windowType="Vanilla/ComboDropList" />
     25    <FalagardMapping lookNFeel="TaharezLook/ComboEditbox" renderer="Core/Editbox" targetType="CEGUI/Editbox" windowType="Vanilla/ComboEditbox" />
     26    <FalagardMapping lookNFeel="TaharezLook/GroupBox" renderer="Core/Default" targetType="CEGUI/GroupBox" windowType="Vanilla/GroupBox" />
     27    <FalagardMapping lookNFeel="TaharezLook/ItemListbox" renderer="Core/ItemListbox" targetType="CEGUI/ItemListbox" windowType="Vanilla/ItemListbox" />
     28    <FalagardMapping lookNFeel="TaharezLook/ListboxItem" renderer="Core/ItemEntry" targetType="CEGUI/ItemEntry" windowType="Vanilla/ListboxItem" />
     29    <FalagardMapping lookNFeel="TaharezLook/ListHeader" renderer="Core/ListHeader" targetType="CEGUI/ListHeader" windowType="Vanilla/ListHeader" />
     30    <FalagardMapping lookNFeel="TaharezLook/ListHeaderSegment" renderer="Core/ListHeaderSegment" targetType="CEGUI/ListHeaderSegment" windowType="Vanilla/ListHeaderSegment" />
     31    <FalagardMapping lookNFeel="TaharezLook/Menubar" renderer="Core/Menubar" targetType="CEGUI/Menubar" windowType="Vanilla/Menubar" />
     32    <FalagardMapping lookNFeel="TaharezLook/MenuItem" renderer="Core/MenuItem" targetType="CEGUI/MenuItem" windowType="Vanilla/MenuItem" />
     33    <FalagardMapping lookNFeel="TaharezLook/MultiColumnList" renderer="Core/MultiColumnList" targetType="CEGUI/MultiColumnList" windowType="Vanilla/MultiColumnList" />
     34    <FalagardMapping lookNFeel="TaharezLook/PopupMenu" renderer="Core/PopupMenu" targetType="CEGUI/PopupMenu" windowType="Vanilla/PopupMenu" />
     35    <FalagardMapping lookNFeel="TaharezLook/ProgressBar" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="Vanilla/ProgressBar" />
     36    <FalagardMapping lookNFeel="TaharezLook/ImageButton" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="Vanilla/ImageButton" />
     37    <FalagardMapping lookNFeel="TaharezLook/RadioButton" renderer="Core/ToggleButton" targetType="CEGUI/RadioButton" windowType="Vanilla/RadioButton" />
     38    <FalagardMapping lookNFeel="TaharezLook/Button" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="Vanilla/SystemButton" />
     39    <FalagardMapping lookNFeel="TaharezLook/ScrollablePane" renderer="Core/ScrollablePane" targetType="CEGUI/ScrollablePane" windowType="Vanilla/ScrollablePane" />
     40    <FalagardMapping lookNFeel="TaharezLook/Slider" renderer="Core/Slider" targetType="CEGUI/Slider" windowType="Vanilla/Slider" />
     41    <FalagardMapping lookNFeel="TaharezLook/Spinner" renderer="Core/Default" targetType="CEGUI/Spinner" windowType="Vanilla/Spinner" />
     42    <FalagardMapping lookNFeel="TaharezLook/TabButton" renderer="Core/TabButton" targetType="CEGUI/TabButton" windowType="Vanilla/TabButton" />
     43    <FalagardMapping lookNFeel="TaharezLook/TabControl" renderer="Core/TabControl" targetType="CEGUI/TabControl" windowType="Vanilla/TabControl" />
     44    <FalagardMapping lookNFeel="TaharezLook/SliderThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="Vanilla/SliderThumb" />
     45    <FalagardMapping lookNFeel="TaharezLook/Tooltip" renderer="Core/Tooltip" targetType="CEGUI/Tooltip" windowType="Vanilla/Tooltip" />
     46    <FalagardMapping lookNFeel="TaharezLook/Tree" renderer="Core/Tree" targetType="CEGUI/Tree" windowType="Vanilla/Tree" />
    5347</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/VanillaMenuWidgets.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="VanillaMenuWidgets">
    3     <WindowAlias Alias="MenuWidgets/StaticImage"              Target="Vanilla/StaticImage" />
    4     <WindowAlias Alias="MenuWidgets/StaticText"               Target="Vanilla/StaticText" />
    5     <WindowAlias Alias="MenuWidgets/TabButtonPane"            Target="Vanilla/TabButtonPane" />
    6     <WindowAlias Alias="MenuWidgets/TabContentPane"           Target="Vanilla/TabContentPane" />
    7     <WindowAlias Alias="MenuWidgets/Checkbox"                 Target="Vanilla/Checkbox" />
    8     <WindowAlias Alias="MenuWidgets/Combobox"                 Target="Vanilla/Combobox" />
    9     <WindowAlias Alias="MenuWidgets/ComboDropList"            Target="Vanilla/ComboDropList" />
    10     <WindowAlias Alias="MenuWidgets/ComboEditbox"             Target="Vanilla/ComboEditbox" />
    11     <WindowAlias Alias="MenuWidgets/Editbox"                  Target="Vanilla/Editbox" />
    12     <WindowAlias Alias="MenuWidgets/FrameWindow"              Target="Vanilla/FrameWindow" />
    13     <WindowAlias Alias="MenuWidgets/GroupBox"                 Target="Vanilla/GroupBox" />
    14     <WindowAlias Alias="MenuWidgets/ItemListbox"              Target="Vanilla/ItemListbox" />
    15     <WindowAlias Alias="MenuWidgets/ListboxItem"              Target="Vanilla/ListboxItem" />
    16     <WindowAlias Alias="MenuWidgets/Listbox"                  Target="Vanilla/Listbox" />
    17     <WindowAlias Alias="MenuWidgets/ListHeader"               Target="Vanilla/ListHeader" />
    18     <WindowAlias Alias="MenuWidgets/ListHeaderSegment"        Target="Vanilla/ListHeaderSegment" />
    19     <WindowAlias Alias="MenuWidgets/MultiLineEditbox"         Target="Vanilla/MultiLineEditbox" />
    20     <WindowAlias Alias="MenuWidgets/Menubar"                  Target="Vanilla/Menubar" />
    21     <WindowAlias Alias="MenuWidgets/MenuItem"                 Target="Vanilla/MenuItem" />
    22     <WindowAlias Alias="MenuWidgets/MultiColumnList"          Target="Vanilla/MultiColumnList" />
    23     <WindowAlias Alias="MenuWidgets/PopupMenu"                Target="Vanilla/PopupMenu" />
    24     <WindowAlias Alias="MenuWidgets/ProgressBar"              Target="Vanilla/ProgressBar" />
    25     <WindowAlias Alias="MenuWidgets/Button"                   Target="Vanilla/Button" />
    26     <WindowAlias Alias="MenuWidgets/ImageButton"              Target="Vanilla/ImageButton" />
    27     <WindowAlias Alias="MenuWidgets/RadioButton"              Target="Vanilla/RadioButton" />
    28     <WindowAlias Alias="MenuWidgets/SystemButton"             Target="Vanilla/SystemButton" />
    29     <WindowAlias Alias="MenuWidgets/ScrollablePane"           Target="Vanilla/ScrollablePane" />
    30     <WindowAlias Alias="MenuWidgets/HorizontalScrollbar"      Target="Vanilla/HorizontalScrollbar" />
    31     <WindowAlias Alias="MenuWidgets/VerticalScrollbar"        Target="Vanilla/VerticalScrollbar" />
    32     <WindowAlias Alias="MenuWidgets/Slider"                   Target="Vanilla/Slider" />
    33     <WindowAlias Alias="MenuWidgets/Spinner"                  Target="Vanilla/Spinner" />
    34     <WindowAlias Alias="MenuWidgets/TabButton"                Target="Vanilla/TabButton" />
    35     <WindowAlias Alias="MenuWidgets/TabControl"               Target="Vanilla/TabControl" />
    36     <WindowAlias Alias="MenuWidgets/HorizontalScrollbarThumb" Target="Vanilla/HorizontalScrollbarThumb" />
    37     <WindowAlias Alias="MenuWidgets/SliderThumb"              Target="Vanilla/SliderThumb" />
    38     <WindowAlias Alias="MenuWidgets/VerticalScrollbarThumb"   Target="Vanilla/VerticalScrollbarThumb" />
    39     <WindowAlias Alias="MenuWidgets/Titlebar"                 Target="Vanilla/Titlebar" />
    40     <WindowAlias Alias="MenuWidgets/Tooltip"                  Target="Vanilla/Tooltip" />
    41     <WindowAlias Alias="MenuWidgets/Tree"                     Target="Vanilla/Tree" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="VanillaMenuWidgets" version="5">
     3    <WindowAlias alias="MenuWidgets/StaticImage" target="Vanilla/StaticImage" />
     4    <WindowAlias alias="MenuWidgets/StaticText" target="Vanilla/StaticText" />
     5    <WindowAlias alias="MenuWidgets/TabButtonPane" target="Vanilla/TabButtonPane" />
     6    <WindowAlias alias="MenuWidgets/TabContentPane" target="Vanilla/TabContentPane" />
     7    <WindowAlias alias="MenuWidgets/Checkbox" target="Vanilla/Checkbox" />
     8    <WindowAlias alias="MenuWidgets/Combobox" target="Vanilla/Combobox" />
     9    <WindowAlias alias="MenuWidgets/ComboDropList" target="Vanilla/ComboDropList" />
     10    <WindowAlias alias="MenuWidgets/ComboEditbox" target="Vanilla/ComboEditbox" />
     11    <WindowAlias alias="MenuWidgets/Editbox" target="Vanilla/Editbox" />
     12    <WindowAlias alias="MenuWidgets/FrameWindow" target="Vanilla/FrameWindow" />
     13    <WindowAlias alias="MenuWidgets/GroupBox" target="Vanilla/GroupBox" />
     14    <WindowAlias alias="MenuWidgets/ItemListbox" target="Vanilla/ItemListbox" />
     15    <WindowAlias alias="MenuWidgets/ListboxItem" target="Vanilla/ListboxItem" />
     16    <WindowAlias alias="MenuWidgets/Listbox" target="Vanilla/Listbox" />
     17    <WindowAlias alias="MenuWidgets/ListHeader" target="Vanilla/ListHeader" />
     18    <WindowAlias alias="MenuWidgets/ListHeaderSegment" target="Vanilla/ListHeaderSegment" />
     19    <WindowAlias alias="MenuWidgets/MultiLineEditbox" target="Vanilla/MultiLineEditbox" />
     20    <WindowAlias alias="MenuWidgets/Menubar" target="Vanilla/Menubar" />
     21    <WindowAlias alias="MenuWidgets/MenuItem" target="Vanilla/MenuItem" />
     22    <WindowAlias alias="MenuWidgets/MultiColumnList" target="Vanilla/MultiColumnList" />
     23    <WindowAlias alias="MenuWidgets/PopupMenu" target="Vanilla/PopupMenu" />
     24    <WindowAlias alias="MenuWidgets/ProgressBar" target="Vanilla/ProgressBar" />
     25    <WindowAlias alias="MenuWidgets/Button" target="Vanilla/Button" />
     26    <WindowAlias alias="MenuWidgets/ImageButton" target="Vanilla/ImageButton" />
     27    <WindowAlias alias="MenuWidgets/RadioButton" target="Vanilla/RadioButton" />
     28    <WindowAlias alias="MenuWidgets/SystemButton" target="Vanilla/SystemButton" />
     29    <WindowAlias alias="MenuWidgets/ScrollablePane" target="Vanilla/ScrollablePane" />
     30    <WindowAlias alias="MenuWidgets/HorizontalScrollbar" target="Vanilla/HorizontalScrollbar" />
     31    <WindowAlias alias="MenuWidgets/VerticalScrollbar" target="Vanilla/VerticalScrollbar" />
     32    <WindowAlias alias="MenuWidgets/Slider" target="Vanilla/Slider" />
     33    <WindowAlias alias="MenuWidgets/Spinner" target="Vanilla/Spinner" />
     34    <WindowAlias alias="MenuWidgets/TabButton" target="Vanilla/TabButton" />
     35    <WindowAlias alias="MenuWidgets/TabControl" target="Vanilla/TabControl" />
     36    <WindowAlias alias="MenuWidgets/HorizontalScrollbarThumb" target="Vanilla/HorizontalScrollbarThumb" />
     37    <WindowAlias alias="MenuWidgets/SliderThumb" target="Vanilla/SliderThumb" />
     38    <WindowAlias alias="MenuWidgets/VerticalScrollbarThumb" target="Vanilla/VerticalScrollbarThumb" />
     39    <WindowAlias alias="MenuWidgets/Titlebar" target="Vanilla/Titlebar" />
     40    <WindowAlias alias="MenuWidgets/Tooltip" target="Vanilla/Tooltip" />
     41    <WindowAlias alias="MenuWidgets/Tree" target="Vanilla/Tree" />
    4242</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/WindowsHUDWidgets.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="WindowsHUDWidgets">
    3     <WindowAlias Alias="HUDWidgets/StaticImage"              Target="WindowsLook/StaticImage" />
    4     <WindowAlias Alias="HUDWidgets/StaticText"               Target="WindowsLook/StaticText" />
    5     <WindowAlias Alias="HUDWidgets/TabButtonPane"            Target="WindowsLook/TabButtonPane" />
    6     <WindowAlias Alias="HUDWidgets/TabContentPane"           Target="WindowsLook/TabContentPane" />
    7     <WindowAlias Alias="HUDWidgets/Checkbox"                 Target="WindowsLook/Checkbox" />
    8     <WindowAlias Alias="HUDWidgets/Combobox"                 Target="WindowsLook/Combobox" />
    9     <WindowAlias Alias="HUDWidgets/ComboDropList"            Target="WindowsLook/ComboDropList" />
    10     <WindowAlias Alias="HUDWidgets/ComboEditbox"             Target="WindowsLook/ComboEditbox" />
    11     <WindowAlias Alias="HUDWidgets/Editbox"                  Target="WindowsLook/Editbox" />
    12     <WindowAlias Alias="HUDWidgets/FrameWindow"              Target="WindowsLook/FrameWindow" />
    13     <WindowAlias Alias="HUDWidgets/GroupBox"                 Target="WindowsLook/GroupBox" />
    14     <WindowAlias Alias="HUDWidgets/ItemListbox"              Target="WindowsLook/ItemListbox" />
    15     <WindowAlias Alias="HUDWidgets/ListboxItem"              Target="WindowsLook/ListboxItem" />
    16     <WindowAlias Alias="HUDWidgets/Listbox"                  Target="WindowsLook/Listbox" />
    17     <WindowAlias Alias="HUDWidgets/ListHeader"               Target="WindowsLook/ListHeader" />
    18     <WindowAlias Alias="HUDWidgets/ListHeaderSegment"        Target="WindowsLook/ListHeaderSegment" />
    19     <WindowAlias Alias="HUDWidgets/MultiLineEditbox"         Target="WindowsLook/MultiLineEditbox" />
    20     <WindowAlias Alias="HUDWidgets/Menubar"                  Target="WindowsLook/Menubar" />
    21     <WindowAlias Alias="HUDWidgets/MenuItem"                 Target="WindowsLook/MenuItem" />
    22     <WindowAlias Alias="HUDWidgets/MultiColumnList"          Target="WindowsLook/MultiColumnList" />
    23     <WindowAlias Alias="HUDWidgets/PopupMenu"                Target="WindowsLook/PopupMenu" />
    24     <WindowAlias Alias="HUDWidgets/ProgressBar"              Target="WindowsLook/ProgressBar" />
    25     <WindowAlias Alias="HUDWidgets/Button"                   Target="WindowsLook/Button" />
    26     <WindowAlias Alias="HUDWidgets/ImageButton"              Target="WindowsLook/ImageButton" />
    27     <WindowAlias Alias="HUDWidgets/RadioButton"              Target="WindowsLook/RadioButton" />
    28     <WindowAlias Alias="HUDWidgets/SystemButton"             Target="WindowsLook/SystemButton" />
    29     <WindowAlias Alias="HUDWidgets/ScrollablePane"           Target="WindowsLook/ScrollablePane" />
    30     <WindowAlias Alias="HUDWidgets/HorizontalScrollbar"      Target="WindowsLook/HorizontalScrollbar" />
    31     <WindowAlias Alias="HUDWidgets/VerticalScrollbar"        Target="WindowsLook/VerticalScrollbar" />
    32     <WindowAlias Alias="HUDWidgets/Slider"                   Target="WindowsLook/Slider" />
    33     <WindowAlias Alias="HUDWidgets/Spinner"                  Target="WindowsLook/Spinner" />
    34     <WindowAlias Alias="HUDWidgets/TabButton"                Target="WindowsLook/TabButton" />
    35     <WindowAlias Alias="HUDWidgets/TabControl"               Target="WindowsLook/TabControl" />
    36     <WindowAlias Alias="HUDWidgets/HorizontalScrollbarThumb" Target="WindowsLook/HorizontalScrollbarThumb" />
    37     <WindowAlias Alias="HUDWidgets/SliderThumb"              Target="WindowsLook/SliderThumb" />
    38     <WindowAlias Alias="HUDWidgets/VerticalScrollbarThumb"   Target="WindowsLook/VerticalScrollbarThumb" />
    39     <WindowAlias Alias="HUDWidgets/Titlebar"                 Target="WindowsLook/Titlebar" />
    40     <WindowAlias Alias="HUDWidgets/Tooltip"                  Target="WindowsLook/Tooltip" />
    41     <WindowAlias Alias="HUDWidgets/Tree"                     Target="WindowsLook/Tree" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="WindowsHUDWidgets" version="5">
     3    <WindowAlias alias="HUDWidgets/StaticImage" target="WindowsLook/StaticImage" />
     4    <WindowAlias alias="HUDWidgets/StaticText" target="WindowsLook/StaticText" />
     5    <WindowAlias alias="HUDWidgets/TabButtonPane" target="WindowsLook/TabButtonPane" />
     6    <WindowAlias alias="HUDWidgets/TabContentPane" target="WindowsLook/TabContentPane" />
     7    <WindowAlias alias="HUDWidgets/Checkbox" target="WindowsLook/Checkbox" />
     8    <WindowAlias alias="HUDWidgets/Combobox" target="WindowsLook/Combobox" />
     9    <WindowAlias alias="HUDWidgets/ComboDropList" target="WindowsLook/ComboDropList" />
     10    <WindowAlias alias="HUDWidgets/ComboEditbox" target="WindowsLook/ComboEditbox" />
     11    <WindowAlias alias="HUDWidgets/Editbox" target="WindowsLook/Editbox" />
     12    <WindowAlias alias="HUDWidgets/FrameWindow" target="WindowsLook/FrameWindow" />
     13    <WindowAlias alias="HUDWidgets/GroupBox" target="WindowsLook/GroupBox" />
     14    <WindowAlias alias="HUDWidgets/ItemListbox" target="WindowsLook/ItemListbox" />
     15    <WindowAlias alias="HUDWidgets/ListboxItem" target="WindowsLook/ListboxItem" />
     16    <WindowAlias alias="HUDWidgets/Listbox" target="WindowsLook/Listbox" />
     17    <WindowAlias alias="HUDWidgets/ListHeader" target="WindowsLook/ListHeader" />
     18    <WindowAlias alias="HUDWidgets/ListHeaderSegment" target="WindowsLook/ListHeaderSegment" />
     19    <WindowAlias alias="HUDWidgets/MultiLineEditbox" target="WindowsLook/MultiLineEditbox" />
     20    <WindowAlias alias="HUDWidgets/Menubar" target="WindowsLook/Menubar" />
     21    <WindowAlias alias="HUDWidgets/MenuItem" target="WindowsLook/MenuItem" />
     22    <WindowAlias alias="HUDWidgets/MultiColumnList" target="WindowsLook/MultiColumnList" />
     23    <WindowAlias alias="HUDWidgets/PopupMenu" target="WindowsLook/PopupMenu" />
     24    <WindowAlias alias="HUDWidgets/ProgressBar" target="WindowsLook/ProgressBar" />
     25    <WindowAlias alias="HUDWidgets/Button" target="WindowsLook/Button" />
     26    <WindowAlias alias="HUDWidgets/ImageButton" target="WindowsLook/ImageButton" />
     27    <WindowAlias alias="HUDWidgets/RadioButton" target="WindowsLook/RadioButton" />
     28    <WindowAlias alias="HUDWidgets/SystemButton" target="WindowsLook/SystemButton" />
     29    <WindowAlias alias="HUDWidgets/ScrollablePane" target="WindowsLook/ScrollablePane" />
     30    <WindowAlias alias="HUDWidgets/HorizontalScrollbar" target="WindowsLook/HorizontalScrollbar" />
     31    <WindowAlias alias="HUDWidgets/VerticalScrollbar" target="WindowsLook/VerticalScrollbar" />
     32    <WindowAlias alias="HUDWidgets/Slider" target="WindowsLook/Slider" />
     33    <WindowAlias alias="HUDWidgets/Spinner" target="WindowsLook/Spinner" />
     34    <WindowAlias alias="HUDWidgets/TabButton" target="WindowsLook/TabButton" />
     35    <WindowAlias alias="HUDWidgets/TabControl" target="WindowsLook/TabControl" />
     36    <WindowAlias alias="HUDWidgets/HorizontalScrollbarThumb" target="WindowsLook/HorizontalScrollbarThumb" />
     37    <WindowAlias alias="HUDWidgets/SliderThumb" target="WindowsLook/SliderThumb" />
     38    <WindowAlias alias="HUDWidgets/VerticalScrollbarThumb" target="WindowsLook/VerticalScrollbarThumb" />
     39    <WindowAlias alias="HUDWidgets/Titlebar" target="WindowsLook/Titlebar" />
     40    <WindowAlias alias="HUDWidgets/Tooltip" target="WindowsLook/Tooltip" />
     41    <WindowAlias alias="HUDWidgets/Tree" target="WindowsLook/Tree" />
    4242</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/WindowsLook.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="WindowsLook">
    3     <Imageset Name="WindowsLook" Filename="WindowsLook.imageset" />
    4     <Imageset Name="TaharezLook" Filename="TaharezLook.imageset" />
    5     <LookNFeel Filename="WindowsLook.looknfeel" />
    6     <LookNFeel Filename="TaharezLook.looknfeel" />
    7     <WindowRendererSet Filename="CEGUIFalagardWRBase" />
    8 
    9     <!-- Standard widgets -->
    10     <FalagardMapping WindowType="WindowsLook/StaticImage"                 TargetType="DefaultWindow"           Renderer="Falagard/StaticImage"       LookNFeel="WindowsLook/StaticImage" />
    11     <FalagardMapping WindowType="WindowsLook/StaticText"                  TargetType="DefaultWindow"           Renderer="Falagard/StaticText"        LookNFeel="WindowsLook/StaticText" />
    12     <FalagardMapping WindowType="WindowsLook/TabButtonPane"               TargetType="DefaultWindow"           Renderer="Falagard/Default"           LookNFeel="WindowsLook/TabButtonPane" />
    13     <FalagardMapping WindowType="WindowsLook/TabContentPane"              TargetType="DefaultWindow"           Renderer="Falagard/Default"           LookNFeel="WindowsLook/TabContentPane" />
    14     <FalagardMapping WindowType="WindowsLook/Checkbox"                    TargetType="CEGUI/Checkbox"          Renderer="Falagard/ToggleButton"      LookNFeel="WindowsLook/Checkbox" />
    15     <FalagardMapping WindowType="WindowsLook/Combobox"                    TargetType="CEGUI/Combobox"          Renderer="Falagard/Default"           LookNFeel="WindowsLook/Combobox" />
    16     <FalagardMapping WindowType="WindowsLook/ComboDropList"               TargetType="CEGUI/ComboDropList"     Renderer="Falagard/Listbox"           LookNFeel="WindowsLook/ComboDropList" />
    17     <FalagardMapping WindowType="WindowsLook/Editbox"                     TargetType="CEGUI/Editbox"           Renderer="Falagard/Editbox"           LookNFeel="WindowsLook/Editbox" />
    18     <FalagardMapping WindowType="WindowsLook/FrameWindow"                 TargetType="CEGUI/FrameWindow"       Renderer="Falagard/FrameWindow"       LookNFeel="WindowsLook/FrameWindow" />
    19     <FalagardMapping WindowType="WindowsLook/GroupBox"                    TargetType="CEGUI/GroupBox"          Renderer="Falagard/Default"           LookNFeel="WindowsLook/GroupBox" />
    20     <FalagardMapping WindowType="WindowsLook/ItemListbox"                 TargetType="CEGUI/ItemListbox"       Renderer="Falagard/ItemListbox"       LookNFeel="WindowsLook/ItemListbox" />
    21     <FalagardMapping WindowType="WindowsLook/ListboxItem"                 TargetType="CEGUI/ItemEntry"         Renderer="Falagard/ItemEntry"         LookNFeel="WindowsLook/ListboxItem" />
    22     <FalagardMapping WindowType="WindowsLook/Listbox"                     TargetType="CEGUI/Listbox"           Renderer="Falagard/Listbox"           LookNFeel="WindowsLook/Listbox" />
    23     <FalagardMapping WindowType="WindowsLook/ListHeader"                  TargetType="CEGUI/ListHeader"        Renderer="Falagard/ListHeader"        LookNFeel="WindowsLook/ListHeader" />
    24     <FalagardMapping WindowType="WindowsLook/ListHeaderSegment"           TargetType="CEGUI/ListHeaderSegment" Renderer="Falagard/ListHeaderSegment" LookNFeel="WindowsLook/ListHeaderSegment" />
    25     <FalagardMapping WindowType="WindowsLook/MultiLineEditbox"            TargetType="CEGUI/MultiLineEditbox"  Renderer="Falagard/MultiLineEditbox"  LookNFeel="WindowsLook/MultiLineEditbox" />
    26     <FalagardMapping WindowType="WindowsLook/Menubar"                     TargetType="CEGUI/Menubar"           Renderer="Falagard/Menubar"           LookNFeel="WindowsLook/Menubar" />
    27     <FalagardMapping WindowType="WindowsLook/MenuItem"                    TargetType="CEGUI/MenuItem"          Renderer="Falagard/MenuItem"          LookNFeel="WindowsLook/MenuItem" />
    28     <FalagardMapping WindowType="WindowsLook/MultiColumnList"             TargetType="CEGUI/MultiColumnList"   Renderer="Falagard/MultiColumnList"   LookNFeel="WindowsLook/MultiColumnList" />
    29     <FalagardMapping WindowType="WindowsLook/PopupMenu"                   TargetType="CEGUI/PopupMenu"         Renderer="Falagard/PopupMenu"         LookNFeel="WindowsLook/PopupMenu" />
    30     <FalagardMapping WindowType="WindowsLook/ProgressBar"                 TargetType="CEGUI/ProgressBar"       Renderer="Falagard/ProgressBar"       LookNFeel="WindowsLook/ProgressBar" />
    31     <FalagardMapping WindowType="WindowsLook/Button"                      TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="WindowsLook/Button" />
    32     <FalagardMapping WindowType="WindowsLook/RadioButton"                 TargetType="CEGUI/RadioButton"       Renderer="Falagard/ToggleButton"      LookNFeel="WindowsLook/RadioButton" />
    33     <FalagardMapping WindowType="WindowsLook/SystemButton"                TargetType="CEGUI/PushButton"        Renderer="Falagard/SystemButton"      LookNFeel="WindowsLook/Button" />
    34     <FalagardMapping WindowType="WindowsLook/ScrollablePane"              TargetType="CEGUI/ScrollablePane"    Renderer="Falagard/ScrollablePane"    LookNFeel="WindowsLook/ScrollablePane" />
    35     <FalagardMapping WindowType="WindowsLook/HorizontalScrollbar"         TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="WindowsLook/HorizontalScrollbar" />
    36     <FalagardMapping WindowType="WindowsLook/VerticalScrollbar"           TargetType="CEGUI/Scrollbar"         Renderer="Falagard/Scrollbar"         LookNFeel="WindowsLook/VerticalScrollbar" />
    37     <FalagardMapping WindowType="WindowsLook/Slider"                      TargetType="CEGUI/Slider"            Renderer="Falagard/Slider"            LookNFeel="WindowsLook/Slider" />
    38     <FalagardMapping WindowType="WindowsLook/Spinner"                     TargetType="CEGUI/Spinner"           Renderer="Falagard/Default"           LookNFeel="WindowsLook/Spinner" />
    39     <FalagardMapping WindowType="WindowsLook/TabButton"                   TargetType="CEGUI/TabButton"         Renderer="Falagard/TabButton"         LookNFeel="WindowsLook/TabButton" />
    40     <FalagardMapping WindowType="WindowsLook/TabControl"                  TargetType="CEGUI/TabControl"        Renderer="Falagard/TabControl"        LookNFeel="WindowsLook/TabControl" />
    41     <FalagardMapping WindowType="WindowsLook/HorizontalScrollbarThumb"    TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="WindowsLook/HorizontalScrollbarThumb" />
    42     <FalagardMapping WindowType="WindowsLook/SliderThumb"                 TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="WindowsLook/SliderThumb" />
    43     <FalagardMapping WindowType="WindowsLook/VerticalScrollbarThumb"      TargetType="CEGUI/Thumb"             Renderer="Falagard/Button"            LookNFeel="WindowsLook/VerticalScrollbarThumb" />
    44     <FalagardMapping WindowType="WindowsLook/Titlebar"                    TargetType="CEGUI/Titlebar"          Renderer="Falagard/Titlebar"          LookNFeel="WindowsLook/Titlebar" />
    45     <FalagardMapping WindowType="WindowsLook/Tooltip"                     TargetType="CEGUI/Tooltip"           Renderer="Falagard/Tooltip"           LookNFeel="WindowsLook/Tooltip" />
    46    
    47     <!-- Missing widgets (using Taharez LookNFeel) -->
    48     <FalagardMapping WindowType="WindowsLook/ComboEditbox"                TargetType="CEGUI/Editbox"           Renderer="Falagard/Editbox"           LookNFeel="TaharezLook/ComboEditbox" />
    49     <FalagardMapping WindowType="WindowsLook/ImageButton"                 TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="TaharezLook/ImageButton" />
    50     <FalagardMapping WindowType="WindowsLook/Tree"                        TargetType="CEGUI/Tree"              Renderer="Falagard/Tree"              LookNFeel="TaharezLook/Tree" />
    51 
    52     <!-- Additional widgets -->
    53     <FalagardMapping WindowType="WindowsLook/IconButton"                  TargetType="CEGUI/PushButton"        Renderer="Falagard/Button"            LookNFeel="WindowsLook/IconButton" />
    54     <FalagardMapping WindowType="WindowsLook/Static"                      TargetType="DefaultWindow"           Renderer="Falagard/Static"            LookNFeel="WindowsLook/Static" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="WindowsLook" version="5">
     3    <Imageset filename="WindowsLook.imageset" name="WindowsLook" />
     4    <Imageset filename="TaharezLook.imageset" name="TaharezLook" />
     5    <LookNFeel filename="WindowsLook.looknfeel" />
     6    <LookNFeel filename="TaharezLook.looknfeel" />
     7    <WindowRendererSet filename="CEGUICoreWindowRendererSet" />
     8    <FalagardMapping lookNFeel="WindowsLook/StaticImage" renderer="Core/StaticImage" targetType="DefaultWindow" windowType="WindowsLook/StaticImage" />
     9    <FalagardMapping lookNFeel="WindowsLook/StaticText" renderer="Core/StaticText" targetType="DefaultWindow" windowType="WindowsLook/StaticText" />
     10    <FalagardMapping lookNFeel="WindowsLook/TabButtonPane" renderer="Core/Default" targetType="DefaultWindow" windowType="WindowsLook/TabButtonPane" />
     11    <FalagardMapping lookNFeel="WindowsLook/TabContentPane" renderer="Core/Default" targetType="DefaultWindow" windowType="WindowsLook/TabContentPane" />
     12    <FalagardMapping lookNFeel="WindowsLook/Checkbox" renderer="Core/ToggleButton" targetType="CEGUI/ToggleButton" windowType="WindowsLook/Checkbox" />
     13    <FalagardMapping lookNFeel="WindowsLook/Combobox" renderer="Core/Default" targetType="CEGUI/Combobox" windowType="WindowsLook/Combobox" />
     14    <FalagardMapping lookNFeel="WindowsLook/ComboDropList" renderer="Core/Listbox" targetType="CEGUI/ComboDropList" windowType="WindowsLook/ComboDropList" />
     15    <FalagardMapping lookNFeel="WindowsLook/Editbox" renderer="Core/Editbox" targetType="CEGUI/Editbox" windowType="WindowsLook/Editbox" />
     16    <FalagardMapping lookNFeel="WindowsLook/FrameWindow" renderer="Core/FrameWindow" targetType="CEGUI/FrameWindow" windowType="WindowsLook/FrameWindow" />
     17    <FalagardMapping lookNFeel="WindowsLook/GroupBox" renderer="Core/Default" targetType="CEGUI/GroupBox" windowType="WindowsLook/GroupBox" />
     18    <FalagardMapping lookNFeel="WindowsLook/ItemListbox" renderer="Core/ItemListbox" targetType="CEGUI/ItemListbox" windowType="WindowsLook/ItemListbox" />
     19    <FalagardMapping lookNFeel="WindowsLook/ListboxItem" renderer="Core/ItemEntry" targetType="CEGUI/ItemEntry" windowType="WindowsLook/ListboxItem" />
     20    <FalagardMapping lookNFeel="WindowsLook/Listbox" renderer="Core/Listbox" targetType="CEGUI/Listbox" windowType="WindowsLook/Listbox" />
     21    <FalagardMapping lookNFeel="WindowsLook/ListHeader" renderer="Core/ListHeader" targetType="CEGUI/ListHeader" windowType="WindowsLook/ListHeader" />
     22    <FalagardMapping lookNFeel="WindowsLook/ListHeaderSegment" renderer="Core/ListHeaderSegment" targetType="CEGUI/ListHeaderSegment" windowType="WindowsLook/ListHeaderSegment" />
     23    <FalagardMapping lookNFeel="WindowsLook/MultiLineEditbox" renderer="Core/MultiLineEditbox" targetType="CEGUI/MultiLineEditbox" windowType="WindowsLook/MultiLineEditbox" />
     24    <FalagardMapping lookNFeel="WindowsLook/Menubar" renderer="Core/Menubar" targetType="CEGUI/Menubar" windowType="WindowsLook/Menubar" />
     25    <FalagardMapping lookNFeel="WindowsLook/MenuItem" renderer="Core/MenuItem" targetType="CEGUI/MenuItem" windowType="WindowsLook/MenuItem" />
     26    <FalagardMapping lookNFeel="WindowsLook/MultiColumnList" renderer="Core/MultiColumnList" targetType="CEGUI/MultiColumnList" windowType="WindowsLook/MultiColumnList" />
     27    <FalagardMapping lookNFeel="WindowsLook/PopupMenu" renderer="Core/PopupMenu" targetType="CEGUI/PopupMenu" windowType="WindowsLook/PopupMenu" />
     28    <FalagardMapping lookNFeel="WindowsLook/ProgressBar" renderer="Core/ProgressBar" targetType="CEGUI/ProgressBar" windowType="WindowsLook/ProgressBar" />
     29    <FalagardMapping lookNFeel="WindowsLook/Button" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="WindowsLook/Button" />
     30    <FalagardMapping lookNFeel="WindowsLook/RadioButton" renderer="Core/ToggleButton" targetType="CEGUI/RadioButton" windowType="WindowsLook/RadioButton" />
     31    <FalagardMapping lookNFeel="WindowsLook/Button" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="WindowsLook/SystemButton" />
     32    <FalagardMapping lookNFeel="WindowsLook/ScrollablePane" renderer="Core/ScrollablePane" targetType="CEGUI/ScrollablePane" windowType="WindowsLook/ScrollablePane" />
     33    <FalagardMapping lookNFeel="WindowsLook/HorizontalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="WindowsLook/HorizontalScrollbar" />
     34    <FalagardMapping lookNFeel="WindowsLook/VerticalScrollbar" renderer="Core/Scrollbar" targetType="CEGUI/Scrollbar" windowType="WindowsLook/VerticalScrollbar" />
     35    <FalagardMapping lookNFeel="WindowsLook/Slider" renderer="Core/Slider" targetType="CEGUI/Slider" windowType="WindowsLook/Slider" />
     36    <FalagardMapping lookNFeel="WindowsLook/Spinner" renderer="Core/Default" targetType="CEGUI/Spinner" windowType="WindowsLook/Spinner" />
     37    <FalagardMapping lookNFeel="WindowsLook/TabButton" renderer="Core/TabButton" targetType="CEGUI/TabButton" windowType="WindowsLook/TabButton" />
     38    <FalagardMapping lookNFeel="WindowsLook/TabControl" renderer="Core/TabControl" targetType="CEGUI/TabControl" windowType="WindowsLook/TabControl" />
     39    <FalagardMapping lookNFeel="WindowsLook/HorizontalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="WindowsLook/HorizontalScrollbarThumb" />
     40    <FalagardMapping lookNFeel="WindowsLook/SliderThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="WindowsLook/SliderThumb" />
     41    <FalagardMapping lookNFeel="WindowsLook/VerticalScrollbarThumb" renderer="Core/Button" targetType="CEGUI/Thumb" windowType="WindowsLook/VerticalScrollbarThumb" />
     42    <FalagardMapping lookNFeel="WindowsLook/Titlebar" renderer="Core/Titlebar" targetType="CEGUI/Titlebar" windowType="WindowsLook/Titlebar" />
     43    <FalagardMapping lookNFeel="WindowsLook/Tooltip" renderer="Core/Tooltip" targetType="CEGUI/Tooltip" windowType="WindowsLook/Tooltip" />
     44    <FalagardMapping lookNFeel="TaharezLook/ComboEditbox" renderer="Core/Editbox" targetType="CEGUI/Editbox" windowType="WindowsLook/ComboEditbox" />
     45    <FalagardMapping lookNFeel="TaharezLook/ImageButton" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="WindowsLook/ImageButton" />
     46    <FalagardMapping lookNFeel="TaharezLook/Tree" renderer="Core/Tree" targetType="CEGUI/Tree" windowType="WindowsLook/Tree" />
     47    <FalagardMapping lookNFeel="WindowsLook/IconButton" renderer="Core/Button" targetType="CEGUI/PushButton" windowType="WindowsLook/IconButton" />
     48    <FalagardMapping lookNFeel="WindowsLook/Static" renderer="Core/Static" targetType="DefaultWindow" windowType="WindowsLook/Static" />
    5549</GUIScheme>
  • code/branches/ogre1.9/data/gui/schemes/WindowsMenuWidgets.scheme

    r6746 r11211  
    1 <?xml version="1.0" ?>
    2 <GUIScheme Name="WindowsMenuWidgets">
    3     <WindowAlias Alias="MenuWidgets/StaticImage"              Target="WindowsLook/StaticImage" />
    4     <WindowAlias Alias="MenuWidgets/StaticText"               Target="WindowsLook/StaticText" />
    5     <WindowAlias Alias="MenuWidgets/TabButtonPane"            Target="WindowsLook/TabButtonPane" />
    6     <WindowAlias Alias="MenuWidgets/TabContentPane"           Target="WindowsLook/TabContentPane" />
    7     <WindowAlias Alias="MenuWidgets/Checkbox"                 Target="WindowsLook/Checkbox" />
    8     <WindowAlias Alias="MenuWidgets/Combobox"                 Target="WindowsLook/Combobox" />
    9     <WindowAlias Alias="MenuWidgets/ComboDropList"            Target="WindowsLook/ComboDropList" />
    10     <WindowAlias Alias="MenuWidgets/ComboEditbox"             Target="WindowsLook/ComboEditbox" />
    11     <WindowAlias Alias="MenuWidgets/Editbox"                  Target="WindowsLook/Editbox" />
    12     <WindowAlias Alias="MenuWidgets/FrameWindow"              Target="WindowsLook/FrameWindow" />
    13     <WindowAlias Alias="MenuWidgets/GroupBox"                 Target="WindowsLook/GroupBox" />
    14     <WindowAlias Alias="MenuWidgets/ItemListbox"              Target="WindowsLook/ItemListbox" />
    15     <WindowAlias Alias="MenuWidgets/ListboxItem"              Target="WindowsLook/ListboxItem" />
    16     <WindowAlias Alias="MenuWidgets/Listbox"                  Target="WindowsLook/Listbox" />
    17     <WindowAlias Alias="MenuWidgets/ListHeader"               Target="WindowsLook/ListHeader" />
    18     <WindowAlias Alias="MenuWidgets/ListHeaderSegment"        Target="WindowsLook/ListHeaderSegment" />
    19     <WindowAlias Alias="MenuWidgets/MultiLineEditbox"         Target="WindowsLook/MultiLineEditbox" />
    20     <WindowAlias Alias="MenuWidgets/Menubar"                  Target="WindowsLook/Menubar" />
    21     <WindowAlias Alias="MenuWidgets/MenuItem"                 Target="WindowsLook/MenuItem" />
    22     <WindowAlias Alias="MenuWidgets/MultiColumnList"          Target="WindowsLook/MultiColumnList" />
    23     <WindowAlias Alias="MenuWidgets/PopupMenu"                Target="WindowsLook/PopupMenu" />
    24     <WindowAlias Alias="MenuWidgets/ProgressBar"              Target="WindowsLook/ProgressBar" />
    25     <WindowAlias Alias="MenuWidgets/Button"                   Target="WindowsLook/Button" />
    26     <WindowAlias Alias="MenuWidgets/ImageButton"              Target="WindowsLook/ImageButton" />
    27     <WindowAlias Alias="MenuWidgets/RadioButton"              Target="WindowsLook/RadioButton" />
    28     <WindowAlias Alias="MenuWidgets/SystemButton"             Target="WindowsLook/SystemButton" />
    29     <WindowAlias Alias="MenuWidgets/ScrollablePane"           Target="WindowsLook/ScrollablePane" />
    30     <WindowAlias Alias="MenuWidgets/HorizontalScrollbar"      Target="WindowsLook/HorizontalScrollbar" />
    31     <WindowAlias Alias="MenuWidgets/VerticalScrollbar"        Target="WindowsLook/VerticalScrollbar" />
    32     <WindowAlias Alias="MenuWidgets/Slider"                   Target="WindowsLook/Slider" />
    33     <WindowAlias Alias="MenuWidgets/Spinner"                  Target="WindowsLook/Spinner" />
    34     <WindowAlias Alias="MenuWidgets/TabButton"                Target="WindowsLook/TabButton" />
    35     <WindowAlias Alias="MenuWidgets/TabControl"               Target="WindowsLook/TabControl" />
    36     <WindowAlias Alias="MenuWidgets/HorizontalScrollbarThumb" Target="WindowsLook/HorizontalScrollbarThumb" />
    37     <WindowAlias Alias="MenuWidgets/SliderThumb"              Target="WindowsLook/SliderThumb" />
    38     <WindowAlias Alias="MenuWidgets/VerticalScrollbarThumb"   Target="WindowsLook/VerticalScrollbarThumb" />
    39     <WindowAlias Alias="MenuWidgets/Titlebar"                 Target="WindowsLook/Titlebar" />
    40     <WindowAlias Alias="MenuWidgets/Tooltip"                  Target="WindowsLook/Tooltip" />
    41     <WindowAlias Alias="MenuWidgets/Tree"                     Target="WindowsLook/Tree" />
     1<?xml version='1.0' encoding='utf-8'?>
     2<GUIScheme name="WindowsMenuWidgets" version="5">
     3    <WindowAlias alias="MenuWidgets/StaticImage" target="WindowsLook/StaticImage" />
     4    <WindowAlias alias="MenuWidgets/StaticText" target="WindowsLook/StaticText" />
     5    <WindowAlias alias="MenuWidgets/TabButtonPane" target="WindowsLook/TabButtonPane" />
     6    <WindowAlias alias="MenuWidgets/TabContentPane" target="WindowsLook/TabContentPane" />
     7    <WindowAlias alias="MenuWidgets/Checkbox" target="WindowsLook/Checkbox" />
     8    <WindowAlias alias="MenuWidgets/Combobox" target="WindowsLook/Combobox" />
     9    <WindowAlias alias="MenuWidgets/ComboDropList" target="WindowsLook/ComboDropList" />
     10    <WindowAlias alias="MenuWidgets/ComboEditbox" target="WindowsLook/ComboEditbox" />
     11    <WindowAlias alias="MenuWidgets/Editbox" target="WindowsLook/Editbox" />
     12    <WindowAlias alias="MenuWidgets/FrameWindow" target="WindowsLook/FrameWindow" />
     13    <WindowAlias alias="MenuWidgets/GroupBox" target="WindowsLook/GroupBox" />
     14    <WindowAlias alias="MenuWidgets/ItemListbox" target="WindowsLook/ItemListbox" />
     15    <WindowAlias alias="MenuWidgets/ListboxItem" target="WindowsLook/ListboxItem" />
     16    <WindowAlias alias="MenuWidgets/Listbox" target="WindowsLook/Listbox" />
     17    <WindowAlias alias="MenuWidgets/ListHeader" target="WindowsLook/ListHeader" />
     18    <WindowAlias alias="MenuWidgets/ListHeaderSegment" target="WindowsLook/ListHeaderSegment" />
     19    <WindowAlias alias="MenuWidgets/MultiLineEditbox" target="WindowsLook/MultiLineEditbox" />
     20    <WindowAlias alias="MenuWidgets/Menubar" target="WindowsLook/Menubar" />
     21    <WindowAlias alias="MenuWidgets/MenuItem" target="WindowsLook/MenuItem" />
     22    <WindowAlias alias="MenuWidgets/MultiColumnList" target="WindowsLook/MultiColumnList" />
     23    <WindowAlias alias="MenuWidgets/PopupMenu" target="WindowsLook/PopupMenu" />
     24    <WindowAlias alias="MenuWidgets/ProgressBar" target="WindowsLook/ProgressBar" />
     25    <WindowAlias alias="MenuWidgets/Button" target="WindowsLook/Button" />
     26    <WindowAlias alias="MenuWidgets/ImageButton" target="WindowsLook/ImageButton" />
     27    <WindowAlias alias="MenuWidgets/RadioButton" target="WindowsLook/RadioButton" />
     28    <WindowAlias alias="MenuWidgets/SystemButton" target="WindowsLook/SystemButton" />
     29    <WindowAlias alias="MenuWidgets/ScrollablePane" target="WindowsLook/ScrollablePane" />
     30    <WindowAlias alias="MenuWidgets/HorizontalScrollbar" target="WindowsLook/HorizontalScrollbar" />
     31    <WindowAlias alias="MenuWidgets/VerticalScrollbar" target="WindowsLook/VerticalScrollbar" />
     32    <WindowAlias alias="MenuWidgets/Slider" target="WindowsLook/Slider" />
     33    <WindowAlias alias="MenuWidgets/Spinner" target="WindowsLook/Spinner" />
     34    <WindowAlias alias="MenuWidgets/TabButton" target="WindowsLook/TabButton" />
     35    <WindowAlias alias="MenuWidgets/TabControl" target="WindowsLook/TabControl" />
     36    <WindowAlias alias="MenuWidgets/HorizontalScrollbarThumb" target="WindowsLook/HorizontalScrollbarThumb" />
     37    <WindowAlias alias="MenuWidgets/SliderThumb" target="WindowsLook/SliderThumb" />
     38    <WindowAlias alias="MenuWidgets/VerticalScrollbarThumb" target="WindowsLook/VerticalScrollbarThumb" />
     39    <WindowAlias alias="MenuWidgets/Titlebar" target="WindowsLook/Titlebar" />
     40    <WindowAlias alias="MenuWidgets/Tooltip" target="WindowsLook/Tooltip" />
     41    <WindowAlias alias="MenuWidgets/Tree" target="WindowsLook/Tree" />
    4242</GUIScheme>
  • code/branches/ogre1.9/data/gui/scripts/AudioMenu.lua

    r9348 r11211  
    3737    for k,v in pairs(themeList) do
    3838        item = CEGUI.createListboxTextItem(v)
    39         item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     39        item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    4040        CEGUI.toListbox(listboxwindow):addItem(item)
    4141    end
  • code/branches/ogre1.9/data/gui/scripts/DockingDialog.lua

    r8706 r11211  
    4242    for k in pairs(P.docks) do
    4343        local item = CEGUI.createListboxTextItem("Dock " .. k)
    44         item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     44        item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    4545        listbox:addItem(item)
    4646        if k == 1 then
  • code/branches/ogre1.9/data/gui/scripts/GUISheet.lua

    r8862 r11211  
    6666function P:load()
    6767    -- Load the layout that describes the sheet
    68     self.window = winMgr:loadWindowLayout(self.name .. ".layout")
     68    self.window = winMgr:loadLayoutFromFile(self.name .. ".layout")
    6969    if self.window == nil then
    7070        error("Could not load layout file for GUI sheet '"..self.name.."'")
  • code/branches/ogre1.9/data/gui/scripts/GameplayMenu.lua

    r8858 r11211  
    1111    for k,v in pairs(themeList) do
    1212        item = CEGUI.createListboxTextItem(v)
    13         item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     13        item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    1414        CEGUI.toCombobox(dropdown):addItem(item)
    1515    end
  • code/branches/ogre1.9/data/gui/scripts/GraphicsMenu.lua

    r9051 r11211  
    3939    for k,v in pairs(P.resolutionList) do
    4040        local item = CEGUI.createListboxTextItem(v)
    41         item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     41        item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    4242        resolutionCombobox:addItem(item)
    4343    end
     
    4949    for k,v in pairs(P.schemeList) do
    5050        local item = CEGUI.createListboxTextItem(v)
    51         item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     51        item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    5252        themeCombobox:addItem(item)
    5353    end
     
    5959    for k,v in pairs(P.fsaaList) do
    6060        local item = CEGUI.createListboxTextItem(v)
    61         item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     61        item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    6262        fsaaCombobox:addItem(item)
    6363    end
     
    6969    for k,v in pairs(P.particleLodList) do
    7070        local item = CEGUI.createListboxTextItem(v)
    71         item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     71        item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    7272        particleLodCombobox:addItem(item)
    7373    end
  • code/branches/ogre1.9/data/gui/scripts/HostMenu.lua

    r8079 r11211  
    7373    for k,v in pairs(P.levelList) do
    7474        local item = CEGUI.createListboxTextItem(v:getName())
    75         item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     75        item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    7676        listbox:addItem(item)
    7777        if v:getXMLFilename() == preselect then
  • code/branches/ogre1.9/data/gui/scripts/InitialiseGUI.lua

    r8351 r11211  
    88-- Load all required skins
    99--schemeMgr:create("TaharezGreenLook.scheme")
    10 schemeMgr:create(scheme .. "Look.scheme")
     10schemeMgr:createFromFile(scheme .. "Look.scheme")
    1111--schemeMgr:create("TaharezLook.scheme")
    1212--schemeMgr:create("WindowsLook.scheme")
     
    2121--schemeMgr:create("TaharezGreenHUDWidgets.scheme")
    2222--hudImageSet = "TaharezGreenLook"
    23 schemeMgr:create(scheme .. "MenuWidgets.scheme")
     23schemeMgr:createFromFile(scheme .. "MenuWidgets.scheme")
    2424menuImageSet = scheme .. "Look"
    25 schemeMgr:create(scheme .. "HUDWidgets.scheme")
     25schemeMgr:createFromFile(scheme .. "HUDWidgets.scheme")
    2626hudImageSet = scheme .. "Look"
    2727
    2828-- Just a remaining test hack
    29 schemeMgr:create("OrxonoxGUIScheme.scheme")
     29schemeMgr:createFromFile("OrxonoxGUIScheme.scheme")
    3030
    31 local system = CEGUI.System:getSingleton()
    32 system:setDefaultMouseCursor(menuImageSet, "MouseArrow")
     31local system = CEGUI.System:getSingleton():getDefaultGUIContext()
     32system:getMouseCursor():setDefaultImage(menuImageSet .. "/MouseArrow")
    3333system:setDefaultFont("BlueHighway-12")
    34 system:setDefaultTooltip("MenuWidgets/Tooltip")
     34system:setDefaultTooltipType("MenuWidgets/Tooltip")
    3535
    3636-- Convenience function and additional tools
  • code/branches/ogre1.9/data/gui/scripts/MainMenu.lua

    r8079 r11211  
    77    --buttons are arranged in a 6x1 Matrix (list)
    88    P:setButton(1, 1, {
    9             ["button"] = winMgr:getWindow("orxonox/QuickGameTestButton"),
     9            ["button"] = P.window:getChild("QuickGameTestButton"),
    1010            ["callback"]  = P.QuickGameTestButton_clicked
    1111    })
    1212
    1313    P:setButton(2, 1, {
    14             ["button"] = winMgr:getWindow("orxonox/SingleplayerButton"),
     14            ["button"] = P.window:getChild("SingleplayerButton"),
    1515            ["callback"]  = P.SingleplayerButton_clicked
    1616    })
    1717
    1818    P:setButton(3, 1, {
    19             ["button"] = winMgr:getWindow("orxonox/MultiplayerButton"),
     19            ["button"] = P.window:getChild("MultiplayerButton"),
    2020            ["callback"]  = P.MultiplayerButton_clicked
    2121    })
    2222
    2323    P:setButton(4, 1, {
    24             ["button"] = winMgr:getWindow("orxonox/SettingsButton"),
     24            ["button"] = P.window:getChild("SettingsButton"),
    2525            ["callback"]  = P.SettingsButton_clicked
    2626    })
    2727
    2828    P:setButton(5, 1, {
    29             ["button"] = winMgr:getWindow("orxonox/CreditsButton"),
     29            ["button"] = P.window:getChild("CreditsButton"),
    3030            ["callback"]  = P.CreditsButton_clicked
    3131    })
    3232
    3333    P:setButton(6, 1, {
    34             ["button"] = winMgr:getWindow("orxonox/ExitButton"),
     34            ["button"] = P.window:getChild("ExitButton"),
    3535            ["callback"]  = P.ExitButton_clicked
    3636    })
  • code/branches/ogre1.9/data/gui/scripts/MultiplayerMenu.lua

    r10622 r11211  
    115115            item:setID(index)
    116116            index = index + 1
    117             item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     117            item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    118118            CEGUI.toListbox(listbox):addItem(item)
    119119        end
     
    152152            item:setID(index)
    153153            index = index + 1
    154             item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     154            item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    155155            CEGUI.toListbox(listbox):addItem(item)
    156156        end
  • code/branches/ogre1.9/data/gui/scripts/PickupInventory.lua

    r9348 r11211  
    117117
    118118    local image = winMgr:createWindow("MenuWidgets/StaticImage", name .. "/Image")
    119     image:setProperty("Image", "set:PickupInventory image:" .. representation:getInventoryRepresentation())
     119    image:setProperty("Image", "PickupInventory/" .. representation:getInventoryRepresentation())
    120120    image:setProperty("BackgroundEnabled", "set:False")
    121121    image:setProperty("FrameEnabled", "set:True")
     
    218218   
    219219    local image = winMgr:createWindow("MenuWidgets/StaticImage", name .. "/Image")
    220     image:setProperty("Image", "set:PickupInventory image:" .. representation:getInventoryRepresentation())
     220    image:setProperty("Image", "PickupInventory/" .. representation:getInventoryRepresentation())
    221221    image:setProperty("BackgroundEnabled", "set:False")
    222222    image:setProperty("FrameEnabled", "set:True")
  • code/branches/ogre1.9/data/gui/scripts/QuestGUI.lua

    r8891 r11211  
    104104    if P.showActive == quest:isActive(P.player) then
    105105        local item = CEGUI.createListboxTextItem(P.questManager:getDescription(quest):getTitle())
    106         item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     106        item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    107107        list:addItem(item)
    108108        table.insert(P.quests, quest)
     
    141141            local quest = P.questManager:getSubQuest(quest, P.player, i)
    142142            local item = CEGUI.createListboxTextItem(P.questManager:getDescription(quest):getTitle())
    143             item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     143            item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    144144            list:addItem(item)
    145145            table.insert(P.subquests, quest)
  • code/branches/ogre1.9/data/gui/scripts/SheetManager.lua

    r11052 r11211  
    11-- SheetManager.lua
    22
    3 local cursor = CEGUI.MouseCursor:getSingleton()
     3local cursor = CEGUI.System:getSingleton():getDefaultGUIContext():getMouseCursor()
     4--local cursor = CEGUI.MouseCursor:getSingleton()
    45local loadedSheets = {}
    56local activeMenuSheets = {size = 0, topSheetTuple = nil}
     
    107108
    108109    -- Add sheet to the root window
    109     menuSheetsRoot:addChildWindow(menuSheet.window)
     110    menuSheetsRoot:addChild(menuSheet.window)
    110111
    111112    -- If sheet is the MainMenu
     
    177178
    178179    -- Remove sheet with its tuple from the table
    179     menuSheetsRoot:removeChildWindow(sheetTuple.sheet.window)
     180    menuSheetsRoot:removeChild(sheetTuple.sheet.window)
    180181    table.remove(activeMenuSheets, table.findIndex(activeMenuSheets, sheetTuple))
    181182    activeMenuSheets[name] = nil
  • code/branches/ogre1.9/data/gui/scripts/ShipSelectionMenu.lua

    r9348 r11211  
    3434        --if tag == nil or v:hasStartingShip(tag) then
    3535            local item = CEGUI.createListboxTextItem(v)
    36             item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     36            item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    3737            listbox:addItem(item)
    3838            table.insert(tabIndexes, k)
     
    8888        --local imageName = selectedlevel:getScreenshot()
    8989        -- set the screenshot and the description for the selected level
    90         --levelImage:setProperty("Image", "set:"..levelXMLFilename..imageName.." image:full_image")
     90        --levelImage:setProperty("Image", levelXMLFilename..imageName.."/full_image")
    9191        --levelDescription:setText(level:getDescription())
    9292        -- only enable config button for "gametype" levels
  • code/branches/ogre1.9/data/gui/scripts/SingleplayerMenu.lua

    r10258 r11211  
    8787        if tag == nil or v:hasTag(tag) then
    8888            local item = CEGUI.createListboxTextItem(v:getName())
    89             item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     89            item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    9090            listbox:addItem(item)
    9191            table.insert(tabIndexes, k)
     
    130130        local imageName = level:getScreenshot()
    131131        -- set the screenshot and the description for the selected level
    132         levelImage:setProperty("Image", "set:"..levelXMLFilename..imageName.." image:full_image")
     132        levelImage:setProperty("Image", levelXMLFilename..imageName.."/full_image")
    133133        levelDescription:setText(level:getDescription())
    134134        -- only enable config button for "gametype" levels
  • code/branches/ogre1.9/data/gui/scripts/UndockingDialog.lua

    r9943 r11211  
    4242    for k in pairs(P.docks) do
    4343        local item = CEGUI.createListboxTextItem("Dock " .. k)
    44         item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
     44        item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
    4545        listbox:addItem(item)
    4646        if k == 1 then
  • code/branches/ogre1.9/src/libraries/core/GUIManager.cc

    r11117 r11211  
    664664            this->setBackgroundImage("");
    665665        else
    666             this->setBackgroundImage("set: " + imageSet + " image: " + imageName);
     666            this->setBackgroundImage(imageSet + "/" + imageName);
    667667    }
    668668
     
    907907#if CEGUI_VERSION >= 0x000800
    908908        this->guiRenderer_->setDisplaySize(CEGUI::Sizef((float)newWidth, (float)newHeight));
    909         this->rootWindow_->setSize(CEGUI::USize(CEGUI::UDim(1, (float)newWidth), CEGUI::UDim(1, (float)newHeight)));
     909        this->rootWindow_->setSize(CEGUI::Size<CEGUI::UDim>(CEGUI::UDim(1, (float)newWidth), CEGUI::UDim(1, (float)newHeight)));
    910910#else
    911911        this->guiRenderer_->setDisplaySize(CEGUI::Size((float)newWidth, (float)newHeight));
  • code/branches/ogre1.9/src/orxonox/chat/ChatInputHandler.cc

    r11083 r11211  
    131131    /* GET WINDOW POINTERS */
    132132#if CEGUI_VERSION >= 0x000800
    133     input = CEGUI::System::getSingleton().getDefaultGUIContext().getRootWindow()->getChild( "orxonox/ChatBox/input" );
    134     inputonly = CEGUI::System::getSingleton().getDefaultGUIContext().getRootWindow()->getChild( "orxonox/ChatBox-inputonly/input" );
    135     CEGUI::Window *history = CEGUI::System::getSingleton().getDefaultGUIContext().getRootWindow()->getChild( "orxonox/ChatBox/history" );
     133    //input = CEGUI::System::getSingleton().getDefaultGUIContext().getRootWindow()->getChild( "ChatBox/input" );
     134    //const CEGUI::Window* root = CEGUI::System::getSingleton().getDefaultGUIContext().getRootWindow()->getChild("MenuRootWindow");
     135    //std::cout << "Count: " << root->getChildCount() << std::endl;
     136    //for (int i = 0; i < root->getChildCount(); ++i) {
     137    //  std::cout << "Child: " << root->getChildAtIdx(i)->getName() << std::endl;
     138    //}
     139    for (auto iterator = CEGUI::WindowManager::getSingleton().getIterator(); !iterator.isAtEnd(); iterator++) {
     140        CEGUI::Window* currentWindow = iterator.getCurrentValue();
     141        if (currentWindow->getName().compare("ChatBox") == 0) {
     142                input = currentWindow->getChild("frame")->getChild("input");
     143                CEGUI::Window* history = currentWindow->getChild("frame")->getChild("history");
     144                lb_history = dynamic_cast<CEGUI::Listbox*>(history);
     145        } else if (currentWindow->getName().compare("ChatBox-inputonly") == 0) {
     146                inputonly = currentWindow->getChild("input");
     147        }
     148    }
     149
     150    //input = CEGUI::System::getSingleton().getDefaultGUIContext().getRootWindow()->getChild( "ChatBox" )->getChild("frame")->getChild("input");
     151    //inputonly = CEGUI::System::getSingleton().getDefaultGUIContext().getRootWindow()->getChild( "orxonox/ChatBox-inputonly/input" );
     152    //CEGUI::Window *history = CEGUI::System::getSingleton().getDefaultGUIContext().getRootWindow()->getChild( "orxonox/ChatBox/history" );
    136153#else
    137154    input = CEGUI::WindowManager::getSingleton().getWindow( "orxonox/ChatBox/input" );
    138155    inputonly = CEGUI::WindowManager::getSingleton().getWindow( "orxonox/ChatBox-inputonly/input" );
    139156    CEGUI::Window *history = CEGUI::WindowManager::getSingleton().getWindow( "orxonox/ChatBox/history" );
    140 #endif
    141157
    142158    /* cast it to a listbox */
    143159    lb_history = dynamic_cast<CEGUI::Listbox*>(history);
     160#endif
    144161
    145162    /* assert wee */
Note: See TracChangeset for help on using the changeset viewer.