Page 1 of 1

[solved] HorizontalLayoutContainer and its usage

Posted: Thu Jul 07, 2011 12:56
by amireh
Hi! I've been using CEGUI for quite a while and it's my first post here, I want to thank you so much for this incredible library!!

Now on to my questions: I'm trying to achieve a list-like behaviour of ImageButtons, ie I have a panel which will have images (icons) added and removed from it dynamically. The first thing I tried was to create a Listbox and add ListboxItem windows that contain ImageButton windows, but the list grows vertically and I need it to grow horizontally. Then I found the HorizontalLayoutContainer (HLC from now) which perfectly fits my needs, however I have two problems:

    1. My HLC window is contained within a ScrollablePane which is supposed to make it scroll horizontally in case of an overflow, however this does not seem to work, the HLC content is being clipped
    2. I would like to add spacing between the images in the HLC, so I thought I'd subclass the container and override the AddChild method to implement some padding. Is this the way to do it? Is there any different way (that preferably doesn't require me to subclass)?

Below is the respective part of the layout script:

Code: Select all

   
<!-- player Spell panel -->
   <Window Type="TaharezLook/ScrollablePane" Name="Elementum/Scenes/Combat/SpellPanel/Player">
     <Property Name="Visible" Value="True" />
      <Property Name="AlwaysOnTop" Value="True" />
      <Property Name="ForceHorzScrollbar" Value="True" />
      <Property Name="Alpha" Value="1" />
    <Property Name="HorizontalAlignment" Value="Centre" />
    <Property Name="VerticalAlignment" Value="Middle" />
    <Property Name="UnifiedAreaRect" Value="{{0,0},{1,-208},{0,848},{1,0}}" />

    <Window Type="TaharezLook/StaticImage" Name="Elementum/Scenes/Combat/SpellPanel/Player/BG">
      <Property Name="AlwaysOnTop" Value="False" />
      <Property Name="BackgroundEnabled" Value="False" />
      <Property Name="FrameEnabled" Value="false" />
      <Property Name="UnifiedAreaRect" Value="{{0,0},{0,0},{1,0},{1,0}}" />
      <Property Name="Image" Value="set:HUDs image:Hand2" />
    </Window>
    <Window Type="HorizontalLayoutContainer" Name="Elementum/Scenes/Combat/SpellPanel/Player/Hand">
      <Property Name="Visible" Value="True" />
      <Property Name="AlwaysOnTop" Value="True" />
      <Property Name="HorizontalAlignment" Value="Centre" />
      <Property Name="VerticalAlignment" Value="Centre" />
    </Window>


There's nothing special about the creation of the image buttons, they're created in Lua and only specify the Size property (not the position).

And finally, here's the CEGUI log dump:

Code: Select all

07/07/2011 15:49:41 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
07/07/2011 15:49:41 (Std)    +                     Crazy Eddie's GUI System - Event log                    +
07/07/2011 15:49:41 (Std)    +                          (http://www.cegui.org.uk/)                         +
07/07/2011 15:49:41 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

07/07/2011 15:49:41 (Std)    CEGUI::Logger singleton created. (0x9c89448)
07/07/2011 15:49:41 (Std)    
07/07/2011 15:49:41 (Std)    ********************************************************************************
07/07/2011 15:49:41 (Std)    * Important:                                                                   *
07/07/2011 15:49:41 (Std)    *     To get support at the CEGUI forums, you must post _at least_ the section *
07/07/2011 15:49:41 (Std)    *     of this log file indicated below.  Failure to do this will result in no  *
07/07/2011 15:49:41 (Std)    *     support being given; please do not waste our time.                       *
07/07/2011 15:49:41 (Std)    ********************************************************************************
07/07/2011 15:49:41 (Std)    ********************************************************************************
07/07/2011 15:49:41 (Std)    * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM       -------- *
07/07/2011 15:49:41 (Std)    ********************************************************************************
07/07/2011 15:49:41 (Std)    ---- Version 0.7.5 (Build: Jun 16 2011 GNU/Linux g++ 4.6.0 20110603 (prerelease) 32 bit) ----
07/07/2011 15:49:41 (Std)    ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ----
07/07/2011 15:49:41 (Std)    ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
07/07/2011 15:49:41 (Std)    ---- Image Codec module is: OgreImageCodec - Integrated ImageCodec using the Ogre engine. ----
07/07/2011 15:49:41 (Std)    ---- Scripting module is: None ----
07/07/2011 15:49:41 (Std)    ********************************************************************************
07/07/2011 15:49:41 (Std)    * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM         -------- *
07/07/2011 15:49:41 (Std)    ********************************************************************************
07/07/2011 15:49:41 (Std)    
07/07/2011 15:49:41 (Std)    ---- Begining CEGUI System initialisation ----
07/07/2011 15:49:41 (Std)    CEGUI::ImagesetManager singleton created (0x9c8a728)
07/07/2011 15:49:41 (Std)    CEGUI::FontManager singleton created. (0x9c8d390)
07/07/2011 15:49:41 (Std)    CEGUI::WindowFactoryManager singleton created
07/07/2011 15:49:41 (Std)    CEGUI::WindowManager singleton created (0x9c8d4b8)
07/07/2011 15:49:41 (Std)    CEGUI::SchemeManager singleton created. (0x9c8d6d8)
07/07/2011 15:49:41 (Std)    CEGUI::MouseCursor singleton created. (0x9c8d7b0)
07/07/2011 15:49:41 (Std)    CEGUI::GlobalEventSet singleton created. (0xb03d8068)
07/07/2011 15:49:41 (Std)    CEGUI::AnimationManager singleton created (0xb03dc788)
07/07/2011 15:49:41 (Std)    CEGUI::WidgetLookManager singleton created. (0xb03cb820)
07/07/2011 15:49:41 (Std)    CEGUI::WindowRendererManager singleton created (0xb03cb840)
07/07/2011 15:49:41 (Std)    CEGUI::RenderEffectManager singleton created (0xb03f47a0)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'DefaultWindow' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'DefaultWindow' windows added. (0xb03f0480)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'DragContainer' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'DragContainer' windows added. (0xb03cb6c8)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'ScrolledContainer' windows added. (0xb03f6df0)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'ClippedContainer' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'ClippedContainer' windows added. (0xb03ccbb8)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/Checkbox' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/Checkbox' windows added. (0xb03f59f8)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (0xb03f3218)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (0xb03da7b8)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (0xb03f4840)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (0xb03f6bb0)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (0xb03f5c38)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (0xb03fe850)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (0xb03cb888)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (0xb03dbcb0)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (0xb03c7f28)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (0xb03e2798)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (0xb03e5670)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (0xb03dbe58)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (0xb03e1ca8)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (0xb03d6bc0)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (0xb03d6c60)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (0xb03efee8)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (0xb03e1a60)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (0xb03da060)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (0xb03d78f8)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (0xb03c8890)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (0xb03f0330)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (0xb03ccd58)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (0xb03d0b08)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (0xb03d7ab8)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (0xb03d3798)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (0xb03f4b30)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (0xb03e0948)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (0xb03e5e70)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'HorizontalLayoutContainer' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows added. (0xb03e1e48)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'VerticalLayoutContainer' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'VerticalLayoutContainer' windows added. (0xb03d0560)
07/07/2011 15:49:41 (Std)    Created WindowFactory for 'GridLayoutContainer' windows.
07/07/2011 15:49:41 (Std)    WindowFactory for 'GridLayoutContainer' windows added. (0xb03cacd0)
07/07/2011 15:49:41 (Std)    Window type alias named 'DefaultGUISheet' added for window type 'DefaultWindow'.
07/07/2011 15:49:41 (Std)    CEGUI::System singleton created. (0x9c89d30)
07/07/2011 15:49:41 (Std)    ---- CEGUI System initialisation completed ----
07/07/2011 15:49:41 (Std)    
07/07/2011 15:49:41 (Std)    Started creation of Scheme from XML specification:
07/07/2011 15:49:41 (Std)    ---- CEGUI GUIScheme name: TaharezLook
07/07/2011 15:49:41 (Std)    Started creation of Imageset from XML specification:
07/07/2011 15:49:41 (Std)    ---- CEGUI Imageset name: TaharezLook
07/07/2011 15:49:41 (Std)    ---- Source texture file: ../../../../../../Workspace/Projects/Elementum/Client/resources/ui/assets/invader.tga in resource group: (Default)
07/07/2011 15:49:41 (Std)    Started creation of Font from XML specification:
07/07/2011 15:49:41 (Std)    ---- CEGUI font name: DejaVuSans-10
07/07/2011 15:49:41 (Std)    ----       Font type: FreeType
07/07/2011 15:49:41 (Std)    ----     Source file: Delicious-Bold.otf in resource group: (Default)
07/07/2011 15:49:41 (Std)    ---- Real point size: 10
07/07/2011 15:49:41 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
07/07/2011 15:49:41 (Std)    ===== Look and feel parsing completed =====
07/07/2011 15:49:41 (Std)    No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/Button' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/Button' added. (0x9c8dfd0)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/Default' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/Default' added. (0x9dcc7b8)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/Editbox' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/Editbox' added. (0x9ca58f0)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/FrameWindow' added. (0x9dcdfe0)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/ItemEntry' added. (0x9dddf70)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/ListHeader' added. (0x9dde010)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/ListHeaderSegment' added. (0x9db6ca8)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/Listbox' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/Listbox' added. (0x9ddc680)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/Menubar' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/Menubar' added. (0x9de19f0)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/MenuItem' added. (0x9cb0338)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/MultiColumnList' added. (0x9ca44c0)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/MultiLineEditbox' added. (0x9ca4610)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/PopupMenu' added. (0x9ca4760)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/ProgressBar' added. (0x9ca48b0)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/ScrollablePane' added. (0x9ca4a00)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/Scrollbar' added. (0x9ca4b50)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/Slider' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/Slider' added. (0x9de8930)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/Static' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/Static' added. (0x9de8a80)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/StaticImage' added. (0x9de8bd0)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/StaticText' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/StaticText' added. (0x9de8d20)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/SystemButton' added. (0x9de8e70)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/TabButton' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/TabButton' added. (0x9de8fc0)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/TabControl' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/TabControl' added. (0x9de9110)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/Titlebar' added. (0x9de9260)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/ToggleButton' added. (0x9de93b0)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/Tooltip' added. (0x9de9500)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/ItemListbox' added. (0x9de9650)
07/07/2011 15:49:41 (Std)    Created WindowRendererFactory for 'Falagard/Tree' WindowRenderers.
07/07/2011 15:49:41 (Std)    WindowRendererFactory 'Falagard/Tree' added. (0x9de97a0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'TaharezLook/Checkbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/ImageButton' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'TaharezLook/RadioButton' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'TaharezLook/FrameWindow' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'TaharezLook/Titlebar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'TaharezLook/Editbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' Look'N'Feel 'TaharezLook/MultiLineEditbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Falagard/Menubar' Look'N'Feel 'TaharezLook/Menubar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Falagard/PopupMenu' Look'N'Feel 'TaharezLook/PopupMenu' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Falagard/MenuItem' Look'N'Feel 'TaharezLook/MenuItem' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/AltProgressBar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/ProgressBar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/VUMeter' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/VerticalScrollbar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/HorizontalScrollbar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/VerticalScrollbarThumb' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/HorizontalScrollbarThumb' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/LargeVerticalScrollbar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/LargeVerticalScrollbarThumb' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' Look'N'Feel 'TaharezLook/TabButton' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' Look'N'Feel 'TaharezLook/TabControl' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/TabContentPane' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/TabButtonPane' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'TaharezLook/ComboDropList' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'TaharezLook/ComboEditbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/Combobox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' Look'N'Feel 'TaharezLook/Listbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Falagard/ListHeader' Look'N'Feel 'TaharezLook/ListHeader' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Falagard/ListHeaderSegment' Look'N'Feel 'TaharezLook/ListHeaderSegment' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' Look'N'Feel 'TaharezLook/MultiColumnList' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'TaharezLook/Slider' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/SliderThumb' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' Look'N'Feel 'TaharezLook/ScrollablePane' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/Spinner' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' Look'N'Feel 'TaharezLook/Tooltip' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'TaharezLook/StaticImage' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' Look'N'Feel 'TaharezLook/StaticText' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Falagard/ItemListbox' Look'N'Feel 'TaharezLook/ItemListbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Falagard/ItemEntry' Look'N'Feel 'TaharezLook/ListboxItem' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/GroupBox' using base type 'CEGUI/GroupBox', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/GroupBox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'TaharezLook/Tree' using base type 'CEGUI/Tree', window renderer 'Falagard/Tree' Look'N'Feel 'TaharezLook/Tree' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Started creation of Scheme from XML specification:
07/07/2011 15:49:41 (Std)    ---- CEGUI GUIScheme name: VanillaSkin
07/07/2011 15:49:41 (Std)    Started creation of Imageset from XML specification:
07/07/2011 15:49:41 (Std)    ---- CEGUI Imageset name: Vanilla-Images
07/07/2011 15:49:41 (Std)    ---- Source texture file: vanilla.tga in resource group: (Default)
07/07/2011 15:49:41 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
07/07/2011 15:49:41 (Std)    ===== Look and feel parsing completed =====
07/07/2011 15:49:41 (Std)    No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'Vanilla/Titlebar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'Vanilla/Button' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'Vanilla/FrameWindow' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'Vanilla/Editbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'Vanilla/VerticalScrollbarThumb' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'Vanilla/VerticalScrollbar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'Vanilla/HorizontalScrollbarThumb' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'Vanilla/HorizontalScrollbar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'Vanilla/StaticImage' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' Look'N'Feel 'Vanilla/StaticText' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' Look'N'Feel 'Vanilla/Listbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' Look'N'Feel 'Vanilla/MultiLineEditbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'Vanilla/ComboDropList' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'Vanilla/Combobox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'Vanilla/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'Vanilla/ProgressBar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Started creation of Scheme from XML specification:
07/07/2011 15:49:41 (Std)    ---- CEGUI GUIScheme name: WindowsLookSkin
07/07/2011 15:49:41 (Std)    Started creation of Imageset from XML specification:
07/07/2011 15:49:41 (Std)    ---- CEGUI Imageset name: WindowsLook
07/07/2011 15:49:41 (Std)    ---- Source texture file: WindowsLook.tga in resource group: (Default)
07/07/2011 15:49:41 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
07/07/2011 15:49:41 (Std)    ===== Look and feel parsing completed =====
07/07/2011 15:49:41 (Std)    No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/Button' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WindowsLook/Checkbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/IconButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/IconButton' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WindowsLook/RadioButton' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'WindowsLook/FrameWindow' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'WindowsLook/Titlebar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/SystemButton' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'WindowsLook/Editbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' Look'N'Feel 'WindowsLook/MultiLineEditbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Falagard/Menubar' Look'N'Feel 'WindowsLook/Menubar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Falagard/PopupMenu' Look'N'Feel 'WindowsLook/PopupMenu' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Falagard/MenuItem' Look'N'Feel 'WindowsLook/MenuItem' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'WindowsLook/ProgressBar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'WindowsLook/VerticalScrollbar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'WindowsLook/HorizontalScrollbar' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/VerticalScrollbarThumb' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/HorizontalScrollbarThumb' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' Look'N'Feel 'WindowsLook/TabButton' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' Look'N'Feel 'WindowsLook/TabControl' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/TabContentPane' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/TabButtonPane' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'WindowsLook/ComboDropList' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/Combobox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' Look'N'Feel 'WindowsLook/Listbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Falagard/ListHeader' Look'N'Feel 'WindowsLook/ListHeader' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Falagard/ListHeaderSegment' Look'N'Feel 'WindowsLook/ListHeaderSegment' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' Look'N'Feel 'WindowsLook/MultiColumnList' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'WindowsLook/Slider' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/SliderThumb' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' Look'N'Feel 'WindowsLook/ScrollablePane' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/Spinner' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' Look'N'Feel 'WindowsLook/Tooltip' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/Static' using base type 'DefaultWindow', window renderer 'Falagard/Static' Look'N'Feel 'WindowsLook/Static' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'WindowsLook/StaticImage' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' Look'N'Feel 'WindowsLook/StaticText' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Falagard/ItemListbox' Look'N'Feel 'WindowsLook/ItemListbox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Falagard/ItemEntry' Look'N'Feel 'WindowsLook/ListboxItem' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    Creating falagard mapping for type 'WindowsLook/GroupBox' using base type 'CEGUI/GroupBox', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/GroupBox' and RenderEffect ''. (0xbfda05c0)
07/07/2011 15:49:41 (Std)    ---- Scripting module is now: CEGUI::LuaScriptModule - Official Lua based scripting module for CEGUI ----
07/07/2011 15:49:41 (Std)    ---- Creating Lua bindings ----
07/07/2011 15:49:41 (Std)    >>> Pixy LUA scripts engaging
07/07/2011 15:49:41 (Std)    Started creation of Scheme from XML specification:
07/07/2011 15:49:41 (Std)    ---- CEGUI GUIScheme name: TaharezLook
07/07/2011 15:49:41 (Std)    ---- Returning existing instance of Scheme named 'TaharezLook'.
07/07/2011 15:49:41 (Std)    Started creation of Scheme from XML specification:
07/07/2011 15:49:41 (Std)    ---- CEGUI GUIScheme name: WindowsLookSkin
07/07/2011 15:49:41 (Std)    ---- Returning existing instance of Scheme named 'WindowsLookSkin'.
07/07/2011 15:49:41 (Std)    Started creation of Scheme from XML specification:
07/07/2011 15:49:41 (Std)    ---- CEGUI GUIScheme name: VanillaSkin
07/07/2011 15:49:41 (Std)    ---- Returning existing instance of Scheme named 'VanillaSkin'.
07/07/2011 15:49:41 (Error)   CEGUI::UnknownObjectException in file CEGUIPropertySet.cpp(124) : There is no Property named 'BackgroundEnabled' available in the set.
07/07/2011 15:49:41 (Std)    ---- Successfully completed loading of GUI layout from 'overlays/progress_box.layout' ----
07/07/2011 15:49:41 (Std)    Started creation of Imageset from XML specification:
07/07/2011 15:49:41 (Std)    ---- CEGUI Imageset name: Spells_Earth
07/07/2011 15:49:41 (Std)    ---- Source texture file: spells_earth3.tga in resource group: (Default)
07/07/2011 15:49:41 (Std)    Started creation of Imageset from XML specification:
07/07/2011 15:49:41 (Std)    ---- CEGUI Imageset name: HUDs
07/07/2011 15:49:41 (Std)    ---- Source texture file: huds.tga in resource group: (Default)
07/07/2011 15:49:41 (Std)    Attempting to create Imageset 'DejaVuSans-10_auto_glyph_images_ ' with texture only.
07/07/2011 15:49:41 (Error)   CEGUI::UnknownObjectException in file CEGUIPropertySet.cpp(124) : There is no Property named 'ItemSpacing' available in the set.
07/07/2011 15:49:42 (Std)    ---- Successfully completed loading of GUI layout from 'combat/ui.layout' ----
07/07/2011 15:49:42 (Error)   CEGUI::UnknownObjectException in file CEGUIPropertySet.cpp(109) : There is no Property named 'ClientAreaColour' available in the set.
07/07/2011 15:49:48 (Std)    ---- Begining CEGUI System destruction ----
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/Tree' windows removed. (0xb03e5e70)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/Tree' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/Thumb' windows removed. (0xb03d0b08)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/Thumb' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/Slider' windows removed. (0xb03d78f8)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/Slider' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/Editbox' windows removed. (0xb03f5c38)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/Editbox' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/Listbox' windows removed. (0xb03dbcb0)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/Listbox' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/Menubar' windows removed. (0xb03e5670)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/Menubar' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/Spinner' windows removed. (0xb03c8890)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/Spinner' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/Tooltip' windows removed. (0xb03d3798)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/Tooltip' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'DefaultWindow' windows removed. (0xb03f0480)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'DefaultWindow' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'DragContainer' windows removed. (0xb03cb6c8)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'DragContainer' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/Checkbox' windows removed. (0xb03f59f8)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/Checkbox' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/Combobox' windows removed. (0xb03f4840)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/Combobox' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/GroupBox' windows removed. (0xb03e0948)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/GroupBox' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/MenuItem' windows removed. (0xb03e1ca8)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/MenuItem' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/Titlebar' windows removed. (0xb03d7ab8)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/Titlebar' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows removed. (0xb03cb888)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/ItemEntry' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows removed. (0xb03dbe58)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/PopupMenu' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows removed. (0xb03da060)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/Scrollbar' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/TabButton' windows removed. (0xb03f0330)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/TabButton' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/ListHeader' windows removed. (0xb03c7f28)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/ListHeader' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/PushButton' windows removed. (0xb03f3218)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/PushButton' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/TabControl' windows removed. (0xb03ccd58)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/TabControl' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'ClippedContainer' windows removed. (0xb03ccbb8)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'ClippedContainer' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows removed. (0xb03fe850)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/FrameWindow' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows removed. (0xb03f4b30)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/ItemListbox' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows removed. (0xb03efee8)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/ProgressBar' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/RadioButton' windows removed. (0xb03da7b8)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/RadioButton' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'ScrolledContainer' windows removed. (0xb03f6df0)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'ScrolledContainer' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows removed. (0xb03f6bb0)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/ComboDropList' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'GridLayoutContainer' windows removed. (0xb03cacd0)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'GridLayoutContainer' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows removed. (0xb03e1a60)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/ScrollablePane' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows removed. (0xb03d6bc0)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/MultiColumnList' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows removed. (0xb03d6c60)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/MultiLineEditbox' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows removed. (0xb03e2798)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'CEGUI/ListHeaderSegment' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'VerticalLayoutContainer' windows removed. (0xb03d0560)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'VerticalLayoutContainer' windows.
07/07/2011 15:49:48 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows removed. (0xb03e1e48)
07/07/2011 15:49:48 (Std)    Deleted WindowFactory for 'HorizontalLayoutContainer' windows.
07/07/2011 15:49:48 (Std)    ---- Destroying Lua bindings ----
07/07/2011 15:49:48 (Std)    ---- Begining cleanup of GUI Scheme system ----
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/Button' WindowRenderers removed. (0x9c8dfd0)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/Button' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/Default' WindowRenderers removed. (0x9dcc7b8)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/Default' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/Editbox' WindowRenderers removed. (0x9ca58f0)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/Editbox' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers removed. (0x9dcdfe0)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers removed. (0x9dddf70)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers removed. (0x9dde010)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers removed. (0x9db6ca8)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/Listbox' WindowRenderers removed. (0x9ddc680)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/Listbox' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/Menubar' WindowRenderers removed. (0x9de19f0)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/Menubar' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers removed. (0x9cb0338)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers removed. (0x9ca44c0)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers removed. (0x9ca4610)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers removed. (0x9ca4760)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers removed. (0x9ca48b0)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers removed. (0x9ca4a00)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers removed. (0x9ca4b50)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/Slider' WindowRenderers removed. (0x9de8930)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/Slider' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/Static' WindowRenderers removed. (0x9de8a80)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/Static' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers removed. (0x9de8bd0)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/StaticText' WindowRenderers removed. (0x9de8d20)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/StaticText' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers removed. (0x9de8e70)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/TabButton' WindowRenderers removed. (0x9de8fc0)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/TabButton' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/TabControl' WindowRenderers removed. (0x9de9110)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/TabControl' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers removed. (0x9de9260)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers removed. (0x9de93b0)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers removed. (0x9de9500)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers removed. (0x9de9650)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers.
07/07/2011 15:49:48 (Std)    WindowRendererFactory for 'Falagard/Tree' WindowRenderers removed. (0x9de97a0)
07/07/2011 15:49:48 (Std)    Deleted WindowRendererFactory for 'Falagard/Tree' WindowRenderers.
07/07/2011 15:49:48 (Std)    CEGUI::SchemeManager singleton destroyed. (0x9c8d6d8)
07/07/2011 15:49:48 (Std)    CEGUI::WindowManager singleton destroyed (0x9c8d4b8)
07/07/2011 15:49:48 (Std)    CEGUI::WindowFactoryManager singleton destroyed
07/07/2011 15:49:48 (Std)    CEGUI::WidgetLookManager singleton destroyed. (0xb03cb820)
07/07/2011 15:49:48 (Std)    CEGUI::WindowRendererManager singleton destroyed (0xb03cb840)
07/07/2011 15:49:48 (Std)    CEGUI::AnimationManager singleton destroyed (0xb03dc788)
07/07/2011 15:49:48 (Std)    CEGUI::RenderEffectManager singleton destroyed (0xb03f47a0)
07/07/2011 15:49:48 (Std)    ---- Begining cleanup of Font system ----
07/07/2011 15:49:48 (Std)    CEGUI::FontManager singleton destroyed. (0x9c8d390)
07/07/2011 15:49:48 (Std)    CEGUI::MouseCursor singleton destroyed. (0x9c8d7b0)
07/07/2011 15:49:48 (Std)    ---- Begining cleanup of Imageset system ----
07/07/2011 15:49:48 (Std)    CEGUI::ImagesetManager singleton destroyed (0x9c8a728)
07/07/2011 15:49:48 (Std)    CEGUI::GlobalEventSet singleton destroyed. (0xb03d8068)
07/07/2011 15:49:48 (Std)    CEGUI::System singleton destroyed. (0x9c89d30)
07/07/2011 15:49:48 (Std)    ---- CEGUI System destruction completed ----


For the sake of completion, here's a screenshot of my current UI where you can see the panel and get a better idea of what I'm trying to do (external link to my server) : http://amireh.net/external/e02.png , the panel is the one in the bottom, it's supposed to scroll horizontally when more icons are added.

Again, kudos on your great work, I hope I can contribute to the project very soon :-)

Re: HorizontalLayoutContainer and its usage

Posted: Thu Jul 07, 2011 13:34
by Kulik
Hi.

The spacing should be easily achieved with the "Margin" property of the windows put into layout containers. Layout containers respect these when computing the "wrapper box". This is sadly very underdocumented.

As for the scrolling trouble, I recall having that back when I implemented layout containers initially. I recall it being related to child content area and CrazyEddie patched CEGUI to fix this. I will check this again to be sure later today (hopefully).

PS: Cool art in the screenshot :-)

Re: HorizontalLayoutContainer and its usage

Posted: Thu Jul 07, 2011 14:00
by amireh
Thanks for the quick reply. I feel stupid not to have thought of using the Margin property!

As for the scrolling trouble, I recall having that back when I implemented layout containers initially. I recall it being related to child content area and CrazyEddie patched CEGUI to fix this. I will check this again to be sure later today (hopefully).


Take your time with it, there's no rush.

PS: Cool art in the screenshot :-)


Thank you, but I can not take credit for it as it's not my work (I'm the programmer :b), the guy who made them can be found here (opengameart.org) but I'll be sure to post screenies when our artists create the HUDs!

Cheers

Re: HorizontalLayoutContainer and its usage

Posted: Thu Jul 07, 2011 18:19
by CrazyEddie
Ok, I have been testing this and have reproduced an issue related to clipping and the ScrollablePane. The issue I identified is not directly related to HLC; it also shows up under other circumstances too.

The issue I saw is related to the far right hand edge - where the vert scrollbar would be if it were shown - basically, the content is clipped there (by 12 pixels in TaharezLook) when it should not be. While the cause of this is known in theory, a solution was not forthcoming - I couldn't see precisely where things were getting out of sync - I am adding a mantis ticket for this, so that we can revisit it later and get the fix in. It's probably a really simple fix that's eluding me right at the moment :D

In the mean time, I can offer you a nasty work-around hack, which involves setting and resetting the ScrollablePane size when you have finished adding / changing the content. That hack is basically:

Code: Select all

   UVector2 sz(sp->getSize());
   sp->setSize(UVector2(UDim(0,0),UDim(0,0)));
   sp->setSize(sz);

where sp is your ScrollablePane.

Note that this is for the issue I identified. If your issue is not the same issue, then this probably will not work. This said, this is basically the only issue I could produce - it otherwise worked ok for me.

HTH

CE

Re: HorizontalLayoutContainer and its usage

Posted: Thu Jul 07, 2011 22:59
by amireh
Hi CE, thanks for your reply.

I applied the hack, but it wasn't relevant as the problem wasn't CEGUI's rendering at all, it turned out to be a very stupid mistake on my part; I had been trying to edit the imageset using editor tools some weeks back, and at some point the TaharezLook imageset sheet got corrupt as I saw (syntactically correct, but the coords of the images were overflown, so the log didn't say anything about it) so by correcting that.. voila! I got the horizontal bar to show.

So I apologize for the waste of time, and thank you all for your help. But at least I think I can be glad that I indirectly got you to catch a minor bug! :P

Cheers guys,
-amireh