[Crash] Segmentation fault when loading a layout from file

For help with general CEGUI usage:
- Questions about the usage of CEGUI and its features, if not explained in the documentation.
- Problems with the CMAKE configuration or problems occuring during the build process/compilation.
- Errors or unexpected behaviour.

Moderators: CEGUI MVP, CEGUI Team

TotallyRandomName
Just popping in
Just popping in
Posts: 14
Joined: Fri Jan 17, 2014 19:59

[Crash] Segmentation fault when loading a layout from file

Postby TotallyRandomName » Fri Jan 17, 2014 20:23

Hi all. I am following OGRE's CEGUI tutorial, which can be found here: http://www.ogre3d.org/tikiwiki/tiki-index.php?page=Basic+Tutorial+7

Everything has worked so far, without problems. I have:

  1. Downloaded and compiled CEGUI's source code, version 0.8.3 . Installed it system-wide.
  2. Added CEGUI's include folders to my project. Added all necessary includes.
  3. Linked CEGUI's libraries to my project (this took a while, as they were many, but there are no unresolved externals now). Please mind, that I am linking statically.
  4. Added CEGUI's resource groups to resources.cfg, and moved all resources where they will be looked for.
  5. Created and initialized a CEGUI::OgreRenderer with "bootstrapSystem()"
  6. Added the resources.
  7. Chosen the skin "TaharezLook.scheme" and the corresponding mouse cursor.
  8. Added all necessary code to inject keyboard and mouse events to CEGUI (I have checked that everything works).

Up until here, no problems. I can run my program and quit it without issues. Now, I wanted to load and show a window layout, because right now there is nothing on screen. I used the following code:

Code: Select all

CEGUI::Window* layout = CEGUI::WindowManager::getSingleton().loadLayoutFromFile("TextDemo.layout");
CEGUI::System::getSingleton().getDefaultGUIContext().setRootWindow(layout);


The first line produces a segmentation fault (with no additional error information, just that). I have located the place where this happens. "loadLayoutFromFile()" is defined in "WindowManager.cpp" (in CEGUI's source code). There, the error happens at the call to "parseXMLFile()", which is defined in "XMLParser.cpp". Here, the error is at the "parseXML()" call, so we finally go to "XMLParserModules/Expat/XMLParser.cpp" and look that function. The segmentation fault happens at the following line:

Code: Select all

if (!XML_Parse(parser, reinterpret_cast<const char*>(source.getDataPtr()), source.getSize(), true))
{
        ...
}


Here is my CEGUI.log, though it does not say anything useful:

Code: Select all

17/01/2014 20:51:56 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
17/01/2014 20:51:56 (Std)    +                     Crazy Eddie's GUI System - Event log                    +
17/01/2014 20:51:56 (Std)    +                          (http://www.cegui.org.uk/)                         +
17/01/2014 20:51:56 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

17/01/2014 20:51:56 (Std)    CEGUI::Logger singleton created. (0x1f7c950)
17/01/2014 20:51:56 (Std)    
17/01/2014 20:51:56 (Std)    ********************************************************************************
17/01/2014 20:51:56 (Std)    * Important:                                                                   *
17/01/2014 20:51:56 (Std)    *     To get support at the CEGUI forums, you must post _at least_ the section *
17/01/2014 20:51:56 (Std)    *     of this log file indicated below.  Failure to do this will result in no  *
17/01/2014 20:51:56 (Std)    *     support being given; please do not waste our time.                       *
17/01/2014 20:51:56 (Std)    ********************************************************************************
17/01/2014 20:51:56 (Std)    ********************************************************************************
17/01/2014 20:51:56 (Std)    * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM       -------- *
17/01/2014 20:51:56 (Std)    ********************************************************************************
17/01/2014 20:51:56 (Std)    ---- Version: 0.8.3 (Build: Jan 15 2014 Static GNU/Linux g++ 4.7.2 64 bit) ----
17/01/2014 20:51:56 (Std)    ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ----
17/01/2014 20:51:56 (Std)    ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
17/01/2014 20:51:56 (Std)    ---- Image Codec module is: OgreImageCodec - Integrated ImageCodec using the Ogre engine. ----
17/01/2014 20:51:56 (Std)    ---- Scripting module is: None ----
17/01/2014 20:51:56 (Std)    ********************************************************************************
17/01/2014 20:51:56 (Std)    * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM         -------- *
17/01/2014 20:51:56 (Std)    ********************************************************************************
17/01/2014 20:51:56 (Std)    
17/01/2014 20:51:56 (Std)    ---- Begining CEGUI System initialisation ----
17/01/2014 20:51:56 (Std)    [CEGUI::ImageManager] Singleton created (0x1f7cd70)
17/01/2014 20:51:56 (Std)    [CEGUI::ImageManager] Registered Image type: BasicImage
17/01/2014 20:51:56 (Std)    CEGUI::FontManager singleton created. (0x1f7e8d0)
17/01/2014 20:51:56 (Std)    CEGUI::WindowFactoryManager singleton created
17/01/2014 20:51:56 (Std)    CEGUI::WindowManager singleton created (0x1f7ea00)
17/01/2014 20:51:56 (Std)    CEGUI::SchemeManager singleton created. (0x1f7d5b0)
17/01/2014 20:51:56 (Std)    CEGUI::GlobalEventSet singleton created. (0x1f7cdf0)
17/01/2014 20:51:56 (Std)    CEGUI::AnimationManager singleton created (0x1f7d6e0)
17/01/2014 20:51:56 (Std)    CEGUI::WidgetLookManager singleton created. (0x1f7e5f0)
17/01/2014 20:51:56 (Std)    CEGUI::WindowRendererManager singleton created (0x1f7bd20)
17/01/2014 20:51:56 (Std)    CEGUI::RenderEffectManager singleton created (0x1f7ccf0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'DefaultWindow' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'DefaultWindow' windows added. (0x1f83290)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'DragContainer' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'DragContainer' windows added. (0x1f83430)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'ScrolledContainer' windows added. (0x1f834f0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'ClippedContainer' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'ClippedContainer' windows added. (0x1f836c0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (0x1f83980)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (0x1f83b70)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (0x1f83d10)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (0x1f83eb0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (0x1f83f70)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (0x1f842e0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (0x1f84480)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (0x1f84620)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (0x1f847c0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (0x1f84960)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (0x1f84b00)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (0x1f84ca0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (0x1f84e40)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (0x1f850f0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (0x1f85290)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (0x1f85430)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (0x1f855d0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (0x1f85770)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (0x1f85910)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (0x1f85ab0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (0x1f85c50)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (0x1f85df0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (0x1f85f90)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (0x1f86130)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/ToggleButton' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/ToggleButton' windows added. (0x1f862d0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (0x1f86470)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (0x1f86610)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (0x1f867b0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (0x1f86950)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'LayoutCell' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'LayoutCell' windows added. (0x1f84fe0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'HorizontalLayoutContainer' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows added. (0x1f86de0)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'VerticalLayoutContainer' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'VerticalLayoutContainer' windows added. (0x1f86f80)
17/01/2014 20:51:56 (Std)    Created WindowFactory for 'GridLayoutContainer' windows.
17/01/2014 20:51:56 (Std)    WindowFactory for 'GridLayoutContainer' windows added. (0x1f87120)
17/01/2014 20:51:56 (Std)    CEGUI::System singleton created. (0x1f7c7d0)
17/01/2014 20:51:56 (Std)    ---- CEGUI System initialisation completed ----
17/01/2014 20:51:56 (Std)    
17/01/2014 20:51:56 (Std)    Started creation of Scheme from XML specification:
17/01/2014 20:51:56 (Std)    ---- CEGUI GUIScheme name: TaharezLook
17/01/2014 20:51:56 (Std)    [ImageManager] Started creation of Imageset from XML specification:
17/01/2014 20:51:56 (Std)    [ImageManager] ---- CEGUI Imageset name: TaharezLook
17/01/2014 20:51:56 (Std)    [ImageManager] ---- Source texture file: TaharezLook.png
17/01/2014 20:51:56 (Std)    [ImageManager] ---- Source texture resource group: (Default)
17/01/2014 20:51:56 (Std)    [OgreRenderer] Created texture: TaharezLook
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ClientBrush' (0x1f9a950) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/GenericBrush' (0x1f9ad80) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/WindowLeftEdge' (0x1f87900) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/WindowRightEdge' (0x1f87b90) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopEdge' (0x1f9a310) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomEdge' (0x1f8ca20) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopLeft' (0x1f87da0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopRight' (0x1f87fb0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomLeft' (0x1f881c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomRight' (0x1f883d0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftNormal' (0x1f885e0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddleNormal' (0x1f887f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightNormal' (0x1f88a00) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftPushed' (0x1f88c10) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddlePushed' (0x1f88e20) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightPushed' (0x1f89030) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftHighlight' (0x1f89240) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddleHighlight' (0x1f89770) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightHighlight' (0x1f87770) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxNormal' (0x1f89bc0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxHover' (0x1f89dd0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxMark' (0x1f89fe0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonNormal' (0x1f8a1f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonHover' (0x1f8a400) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonMark' (0x1f8a610) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarLeft' (0x1f99e60) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarMiddle' (0x1f875e0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarRight' (0x1f8e1b0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarLeft' (0x1f8e3c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarMiddle' (0x1f8e5d0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarRight' (0x1f8e7e0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/SysAreaMiddle' (0x1f8e9f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/SysAreaRight' (0x1f8ec00) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/StaticLeft' (0x1f8ee10) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/StaticRight' (0x1f8f020) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTop' (0x1f8f230) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottom' (0x1f8f440) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTopLeft' (0x1f8f650) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTopRight' (0x1f8f860) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottomLeft' (0x1f8fa70) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottomRight' (0x1f8fc80) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBackdrop' (0x1f8fe90) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarLeft' (0x1f900a0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarMiddle' (0x1f902b0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarRight' (0x1f904c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarDimSegment' (0x1f90860) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarLitSegment' (0x1f8c890) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxLeft' (0x1f90e30) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxMiddle' (0x1f91040) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxRight' (0x1f91250) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxCaret' (0x1f91460) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerUpNormal' (0x1f91670) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerDownNormal' (0x1f91880) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerUpHover' (0x1f91a90) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerDownHover' (0x1f91ca0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TextSelectionBrush' (0x1f91eb0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollTop' (0x1f920c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollMiddle' (0x1f922d0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollBottom' (0x1f924e0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollBarSegment' (0x1f926f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollThumbNormal' (0x1f92a20) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollThumbHover' (0x1f92d50) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollUpNormal' (0x1f93080) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollDownNormal' (0x1f93290) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollUpHover' (0x1f935c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollDownHover' (0x1f937d0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollBarSegment' (0x1f93d00) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbNormal' (0x1f872c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopNormal' (0x1fb0c80) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleNormal' (0x1fb1230) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomNormal' (0x1f87480) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopHover' (0x1fb18f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleHover' (0x1fb1d10) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomHover' (0x1fb20a0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbHover' (0x1fb2430) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpNormal' (0x1fb2820) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownNormal' (0x1fb2b70) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpHover' (0x1fb2ec0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownHover' (0x1fb31f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderBody' (0x1fb3540) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderThumbNormal' (0x1fb3750) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderThumbHover' (0x1fb3a80) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollBarSegment' (0x1fb3db0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbNormal' (0x1fb4100) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftNormal' (0x1fb4450) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleNormal' (0x1fb4870) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightNormal' (0x1fb4c00) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbHover' (0x1fb4f90) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftHover' (0x1fb52e0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleHover' (0x1fb5650) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightHover' (0x1fb59e0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftNormal' (0x1fb5d50) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightNormal' (0x1fb60a0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftHover' (0x1fb63f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightHover' (0x1fb6740) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxLeft' (0x1fb6a90) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxRight' (0x1fb6ca0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTop' (0x1fb6eb0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottom' (0x1fb70c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTopLeft' (0x1fb72d0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTopRight' (0x1fb74e0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottomLeft' (0x1fb76f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottomRight' (0x1fb7900) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBackdrop' (0x1fb7b10) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxSelectionBrush' (0x1fb7d20) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxEditLeft' (0x1fb8050) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxEditMiddle' (0x1fb8260) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListButtonNormal' (0x1fb8470) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListButtonHover' (0x1fb87c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListLeft' (0x1fb8b10) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListRight' (0x1fb8d20) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTop' (0x1fb8f30) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottom' (0x1fb9140) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTopLeft' (0x1fb9350) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTopRight' (0x1fb9560) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottomLeft' (0x1fb9890) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottomRight' (0x1fb9be0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBackdrop' (0x1fb9f30) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxSelectionBrush' (0x1fba260) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerLeft' (0x1fba5b0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerMiddle' (0x1fba7c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerRight' (0x1fbaaf0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropNormal' (0x1fbae20) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropHover' (0x1fbb170) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterNormal' (0x1fbb4c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterHover' (0x1fbb810) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSortUp' (0x1fbbb60) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSortDown' (0x1fbbd70) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListLeft' (0x1fbbf80) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListRight' (0x1fbc190) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTop' (0x1fbc3a0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottom' (0x1fbc5b0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTopLeft' (0x1fbc7c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTopRight' (0x1fbc9d0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottomLeft' (0x1fbcbe0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottomRight' (0x1fbcdf0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBackdrop' (0x1fbd120) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListSelectionBrush' (0x1fbd330) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLeft' (0x1fbd680) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressMiddle' (0x1fbd890) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressRight' (0x1fbdaa0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressQuarter' (0x1fbdcb0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressHalf' (0x1fbdec0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight1' (0x1f895e0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight2' (0x1ffe400) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight3' (0x1ffe610) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight4' (0x1ffe820) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight5' (0x1ffea30) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight6' (0x1ffec40) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight7' (0x1ffee50) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight8' (0x1fff060) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight9' (0x1fff270) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight10' (0x1fff480) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonNormal' (0x1fff690) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonHover' (0x1fff8a0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonPressed' (0x1fffab0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonNormal' (0x1fffcc0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonHover' (0x1fffed0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonPressed' (0x20000e0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxLeft' (0x20002f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxRight' (0x2000500) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTop' (0x2000710) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottom' (0x2000920) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopLeft' (0x2000c70) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopRight' (0x2000fc0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomLeft' (0x2001630) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomRight' (0x20018f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBackdrop' (0x2001c60) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxSelectionBrush' (0x2002190) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MouseTarget' (0x2002910) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MouseArrow' (0x1f9a6b0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MouseMoveCursor' (0x2002e40) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNoSoCursor' (0x2003050) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MouseEsWeCursor' (0x2003260) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNeSwCursor' (0x2003470) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNwSeCursor' (0x2003680) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MouseTextBar' (0x2003890) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabHorizontalFiller' (0x2002b20) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperLeft' (0x2002550) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpper' (0x2003aa0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperRight' (0x2003bc0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLeft' (0x2003dd0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneRight' (0x2003fe0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLower' (0x20041f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerLeft' (0x2004400) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerRight' (0x2004750) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneMiddle' (0x2004aa0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftNormal' (0x2004e40) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightNormal' (0x2005320) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftHover' (0x2002000) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightHover' (0x20058d0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLeftNormal' (0x2005c20) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonRightNormal' (0x2005e30) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperNormal' (0x2006040) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerNormal' (0x2006370) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftNormal' (0x2006830) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeft2Normal' (0x2006c20) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightNormal' (0x2006f70) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftNormal' (0x20072c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightNormal' (0x2007610) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRight2Normal' (0x2007af0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonMiddleNormal' (0x1f94000) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLeftSelected' (0x2008000) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonRightSelected' (0x20083a0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperSelected' (0x20086f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerSelected' (0x2008a40) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftSelected' (0x2008f20) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightSelected' (0x2009340) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftSelected' (0x20096b0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightSelected' (0x2009a20) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonMiddleSelected' (0x2009d90) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopLeft' (0x2009fa0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopRight' (0x200a1b0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomLeft' (0x200a3c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomRight' (0x200a5d0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipLeftEdge' (0x200a7e0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipRightEdge' (0x200a9f0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopEdge' (0x200ac00) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomEdge' (0x200ae10) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipMiddle' (0x200b020) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTopLeft' (0x200b230) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTopRight' (0x200b440) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottomLeft' (0x200b650) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottomRight' (0x200b860) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MenuLeft' (0x200ba70) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MenuRight' (0x200bc80) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTop' (0x200be90) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottom' (0x200c0a0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/MenuMiddle' (0x200c2b0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopLeft' (0x200c4c0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopRight' (0x200c6d0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomLeft' (0x200cac0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomRight' (0x200ce10) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameLeft' (0x200d160) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameRight' (0x200d370) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTop' (0x200d580) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottom' (0x200d790) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuMiddle' (0x200d9a0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuArrowRight' (0x200dbb0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuArrowLeft' (0x200ddc0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TreeListClosed' (0x200dfd0) of type: BasicImage
17/01/2014 20:51:56 (Std)    [ImageManager] Created image: 'TaharezLook/TreeListOpened' (0x200e1e0) of type: BasicImage
17/01/2014 20:51:56 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
17/01/2014 20:51:56 (Std)    ===== Look and feel parsing completed =====
17/01/2014 20:51:56 (Std)    No window renderer factories specified for module 'CEGUICoreWindowRendererSet' - adding all available factories...
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/Button' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/Button' added. (0x21f3820)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/Default' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/Default' added. (0x21f39c0)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/Editbox' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/Editbox' added. (0x21d1510)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/FrameWindow' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/FrameWindow' added. (0x21d5b10)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/ItemEntry' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/ItemEntry' added. (0x21d5cb0)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/ListHeader' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/ListHeader' added. (0x1f8da20)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/ListHeaderSegment' added. (0x1f8dbc0)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/Listbox' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/Listbox' added. (0x214a910)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/Menubar' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/Menubar' added. (0x214aab0)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/MenuItem' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/MenuItem' added. (0x214ab70)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/MultiColumnList' added. (0x2144b70)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/MultiLineEditbox' added. (0x2069320)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/PopupMenu' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/PopupMenu' added. (0x20694c0)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/ProgressBar' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/ProgressBar' added. (0x2069660)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/ScrollablePane' added. (0x21f2dd0)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/Scrollbar' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/Scrollbar' added. (0x21f2f70)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/Slider' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/Slider' added. (0x21f21f0)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/Static' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/Static' added. (0x21f24a0)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/StaticImage' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/StaticImage' added. (0x1f94120)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/StaticText' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/StaticText' added. (0x1f942c0)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/TabButton' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/TabButton' added. (0x1f94460)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/TabControl' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/TabControl' added. (0x1f94600)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/Titlebar' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/Titlebar' added. (0x21d18e0)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/ToggleButton' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/ToggleButton' added. (0x21d1a80)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/Tooltip' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/Tooltip' added. (0x21d1c20)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/ItemListbox' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/ItemListbox' added. (0x21d1dc0)
17/01/2014 20:51:56 (Std)    Created WindowRendererFactory for 'Core/Tree' WindowRenderers.
17/01/2014 20:51:56 (Std)    WindowRendererFactory 'Core/Tree' added. (0x21e88d0)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/Label' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Label' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/Button' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/Checkbox' using base type 'CEGUI/ToggleButton', window renderer 'Core/ToggleButton' Look'N'Feel 'TaharezLook/Checkbox' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/ImageButton' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Core/ToggleButton' Look'N'Feel 'TaharezLook/RadioButton' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Core/FrameWindow' Look'N'Feel 'TaharezLook/FrameWindow' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Core/Titlebar' Look'N'Feel 'TaharezLook/Titlebar' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'TaharezLook/Editbox' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Core/MultiLineEditbox' Look'N'Feel 'TaharezLook/MultiLineEditbox' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Core/Menubar' Look'N'Feel 'TaharezLook/Menubar' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Core/PopupMenu' Look'N'Feel 'TaharezLook/PopupMenu' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Core/MenuItem' Look'N'Feel 'TaharezLook/MenuItem' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/AltProgressBar' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/ProgressBar' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/VUMeter' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/VerticalScrollbar' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/HorizontalScrollbar' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/VerticalScrollbarThumb' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/HorizontalScrollbarThumb' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/LargeVerticalScrollbar' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/LargeVerticalScrollbarThumb' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Core/TabButton' Look'N'Feel 'TaharezLook/TabButton' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Core/TabControl' Look'N'Feel 'TaharezLook/TabControl' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/TabContentPane' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/TabButtonPane' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Core/Listbox' Look'N'Feel 'TaharezLook/ComboDropList' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'TaharezLook/ComboEditbox' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Combobox' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Core/Listbox' Look'N'Feel 'TaharezLook/Listbox' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Core/ListHeader' Look'N'Feel 'TaharezLook/ListHeader' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Core/ListHeaderSegment' Look'N'Feel 'TaharezLook/ListHeaderSegment' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Core/MultiColumnList' Look'N'Feel 'TaharezLook/MultiColumnList' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/Slider' using base type 'CEGUI/Slider', window renderer 'Core/Slider' Look'N'Feel 'TaharezLook/Slider' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/SliderThumb' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Core/ScrollablePane' Look'N'Feel 'TaharezLook/ScrollablePane' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Spinner' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Core/Tooltip' Look'N'Feel 'TaharezLook/Tooltip' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/StaticImage' using base type 'DefaultWindow', window renderer 'Core/StaticImage' Look'N'Feel 'TaharezLook/StaticImage' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/StaticText' using base type 'DefaultWindow', window renderer 'Core/StaticText' Look'N'Feel 'TaharezLook/StaticText' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Core/ItemListbox' Look'N'Feel 'TaharezLook/ItemListbox' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Core/ItemEntry' Look'N'Feel 'TaharezLook/ListboxItem' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/GroupBox' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/GroupBox' and RenderEffect ''. (0x7fff8945f330)
17/01/2014 20:51:56 (Std)    Creating falagard mapping for type 'TaharezLook/Tree' using base type 'CEGUI/Tree', window renderer 'Core/Tree' Look'N'Feel 'TaharezLook/Tree' and RenderEffect ''. (0x7fff8945f330)


The funny thing is that I have checked (adding some printfs) that the function gets called several times with the previous code (loading the skin and such) and there are no problems. Any ideas?

User avatar
Ident
CEGUI Team
Posts: 1998
Joined: Sat Oct 31, 2009 13:57
Location: Austria

Re: [Crash] Segmentation fault when loading a layout from fi

Postby Ident » Fri Jan 17, 2014 23:55

Segfaults are an annoying mess to debug, unfortunately.

You didnt tell us what OS/compiler you use and what Ogre version you use.

Are you 100% sure you compiled CEGUI against the Ogre version that you actually use in your project and that you replaced all Ogre libs/dlls/.. and CEGUI files for your project accordingly?

I assume you have the same issue in Debug and in Release setting?

EDIT: I see in your logs that you use linux/g++ so i assume the my above stated mix-up can't occur in your case. Still curious about the Ogre version though and I assume you compiled CEGUI against it on your own, didnt you?
Also can you please try to load one of the simpler existing layout files provided by CEGUI in the datafiles?
CrazyEddie: "I don't like GUIs"

TotallyRandomName
Just popping in
Just popping in
Posts: 14
Joined: Fri Jan 17, 2014 19:59

Re: [Crash] Segmentation fault when loading a layout from fi

Postby TotallyRandomName » Sat Jan 18, 2014 11:19

Ident wrote:You didnt tell us what OS/compiler you use and what Ogre version you use.


I am using g++ 4.7.2, on a Debian stable (7, Wheezy) amd64.

My version of OGRE is 1.9. I have too downloaded the source and compiled it myself in both debug and release profiles, and installed both system-wide. All my code has worked so far (I have properly initialized the engine, the plugins, set up the renderer and camera, loaded a scene, etc...). I have linked it statically too.

Ident wrote:Are you 100% sure you compiled CEGUI against the Ogre version that you actually use in your project and that you replaced all Ogre libs/dlls/.. and CEGUI files for your project accordingly?


Yes, no other version of OGRE is installed (I haven't used the repositories). I am linking against the following libraries:

Code: Select all

libCEGUIOgreRenderer-0_Static.a
libCEGUIBase-0_Static.a
libCEGUIExpatParser_Static.a
libCEGUIFreeImageImageCodec_Static.a
libCEGUICoreWindowRendererSet_Static.a
libfreetype.a
libexpat.a
libpcre.a


Removing one of those will produce a "undefined reference" linking error.

Ident wrote:I assume you have the same issue in Debug and in Release setting?


Yes. While searching the forum, I found a post that stated that there could be problems when mixing debug and release libraries of CEGUI and OGRE. The problem with CEGUI's libraries is that they are named the same way, no matter what profile they are built under. For example, OGRE's main library is named "OgreMainStatic_d" in debug and "OgreMainStatic" in release mode, and you can't mix those. With CEGUI, you can only have one version in /usr/local/ib, so I install whatever profile I am using at the moment. I have tried both, with no luck.

Ident wrote:EDIT: I see in your logs that you use linux/g++ so i assume the my above stated mix-up can't occur in your case. Still curious about the Ogre version though and I assume you compiled CEGUI against it on your own, didnt you?
Also can you please try to load one of the simpler existing layout files provided by CEGUI in the datafiles?


I am currently trying all .layout files one per one. I will keep you updated. Thanks for your reply.

EDIT1: I tried them all. They all give a segmentation fault, except for:

Code: Select all

GameMenu.layout
HUDDemoGameOver.layout
HUDDemoIngame.layout


which produce the following output:

Code: Select all

CEGUI::UnknownObjectException in function 'CEGUI::WindowFactory* CEGUI::WindowFactoryManager::getFactory(const CEGUI::String&) const' (WindowFactoryManager.cpp:185) : A WindowFactory object, an alias, or mapping for 'Generic/Image' Window objects is not registered with the system.
CEGUI::InvalidRequestException in function 'void CEGUI::GUILayout_xmlHandler::elementWindowStart(const CEGUI::XMLAttributes&)' (GUILayout_xmlHandler.cpp:251) : layout loading has been aborted since no WindowFactory is available for 'Generic/Image' objects.


And:

Code: Select all

VanillaConsole.layout
VanillaWindows.layout


which produce:

Code: Select all

CEGUI::UnknownObjectException in function 'CEGUI::WindowFactory* CEGUI::WindowFactoryManager::getFactory(const CEGUI::String&) const' (WindowFactoryManager.cpp:185) : A WindowFactory object, an alias, or mapping for 'Vanilla/FrameWindow' Window objects is not registered with the system.
CEGUI::InvalidRequestException in function 'void CEGUI::GUILayout_xmlHandler::elementWindowStart(const CEGUI::XMLAttributes&)' (GUILayout_xmlHandler.cpp:251) : layout loading has been aborted since no WindowFactory is available for 'Vanilla/FrameWindow' objects.


But they are not critical errors, the program remains open and I can keep working with it. All 5 of them write the following to CEGUI.log:

Code: Select all

18/01/2014 12:21:07 (Std)    [CEGUI::ImageManager] Unregistered Image type: BasicImage
18/01/2014 12:21:07 (Std)    [CEGUI::ImageManager] Singleton destroyed (0x2cb5e40)
18/01/2014 12:21:07 (Std)    CEGUI::GlobalEventSet singleton destroyed. (0x2cb5ec0)
18/01/2014 12:21:07 (Std)    CEGUI::System singleton destroyed. (0x2cb58a0)
18/01/2014 12:21:07 (Std)    ---- CEGUI System destruction completed ----
18/01/2014 12:21:07 (Std)    CEGUI::Logger singleton destroyed. (0x2cb5a20)


I still have to try some things, like:


EDIT2: I got a segmentation fault when doing it manually, too... The code is the following:

Code: Select all

CEGUI::WindowManager& wmgr = CEGUI::WindowManager::getSingleton();
CEGUI::Window* sheet = wmgr.createWindow("DefaultWindow", "CEGUIDemo/Sheet");

CEGUI::Window* quit = wmgr.createWindow("TaharezLook/Button", "CEGUIDemo/QuitButton");
quit->setText("Quit");
quit->setSize(CEGUI::USize(CEGUI::UDim(0.15, 0), CEGUI::UDim(0.05, 0)));
sheet->addChild(quit);

CEGUI::System::getSingleton().getDefaultGUIContext().setRootWindow(sheet);


The error happens at the first "createWindow()" line. This function is implemented in "WindowManager.cpp". Inside, the fault is at the line that says:

Code: Select all

Window* newWindow = factory->createWindow(finalName);


I have no clue about what could cause this. I will keep looking.

User avatar
Ident
CEGUI Team
Posts: 1998
Joined: Sat Oct 31, 2009 13:57
Location: Austria

Re: [Crash] Segmentation fault when loading a layout from fi

Postby Ident » Sat Jan 18, 2014 18:41

This is weird. I would suggest building your project on your Debian in dynamic build and see what happens. On Windows static builds are definitely not recommended but on the Unix systems they should work.
CrazyEddie: "I don't like GUIs"

TotallyRandomName
Just popping in
Just popping in
Posts: 14
Joined: Fri Jan 17, 2014 19:59

Re: [Crash] Segmentation fault when loading a layout from fi

Postby TotallyRandomName » Mon Jan 20, 2014 20:19

I just managed to (finally!) build my project in Windows with dynamic linking. There is no segmentation fault, but nothing is seen. I think I have missed a step or something. According to CEGUI's wiki, in OGRE all rendering should be done automatically, no need to call "CEGUI::System::getSingleton().renderAllGUIContexts();". But I see nothing, no mouse cursor, no menus...

I will try now to change my Linux project to dynamic link and see if I still get the segmentation fault. After that, I will check why nothing is being renderer (note: I can see 3D stuff, it's the GUI that is invisible).

User avatar
Ident
CEGUI Team
Posts: 1998
Joined: Sat Oct 31, 2009 13:57
Location: Austria

Re: [Crash] Segmentation fault when loading a layout from fi

Postby Ident » Mon Jan 20, 2014 21:58

did you load a layout and set it as root window and change your mouse cursor etc? Judging from your original post I guess you did not forget this important step.

Other than that I can't really think of something


I can tell you though, that it definitely worked on my computer (CEGUI&OGRE on Windows). However, since I am still only at introductory course level in the fields radiesthesia, chromancing and parapsychology, I do not yet posess the necessary powers to see what you saw and know what you have done. Therefore logs or explanations regarding the case of "does not work on windows" would be helpful (for example code snippet of your initialisation). Once I am a psychic of full potential, users won't have to provide logs anymore, but people seem to rush into this too early and already do forget to provide such things. That said, your initial post was very good btw.
Anyways, in windows it should really work! Are you starting the SampleBrowser or your own application? if the samples work we can be (quite) sure it is your own application that does somethin wrong.
CrazyEddie: "I don't like GUIs"

TotallyRandomName
Just popping in
Just popping in
Posts: 14
Joined: Fri Jan 17, 2014 19:59

Re: [Crash] Segmentation fault when loading a layout from fi

Postby TotallyRandomName » Tue Jan 21, 2014 19:13

Image

Just kidding :D . I am sorry if I did not include enough information. My code (at least until I get CEGUI to work) is 100% identical to the one of OGRE's tutorial that I linked before (http://www.ogre3d.org/tikiwiki/tiki-index.php?page=Basic+Tutorial+7), so I thought there would be no need of posting it. But maybe you are right, here it is: (I will only post CEGUI-related code, as everything else is working correctly and I can do stuff with OGRE without errors)

Code: Select all

CEGUI::OgreRenderer* renderer;

renderer = &CEGUI::OgreRenderer::bootstrapSystem();

CEGUI::ImageManager::setImagesetDefaultResourceGroup("Imagesets");
CEGUI::Font::setDefaultResourceGroup("Fonts");
CEGUI::Scheme::setDefaultResourceGroup("Schemes");
CEGUI::WidgetLookManager::setDefaultResourceGroup("LookNFeel");
CEGUI::WindowManager::setDefaultResourceGroup("Layouts");

CEGUI::SchemeManager::getSingleton().createFromFile("TaharezLook.scheme");

CEGUI::System::getSingleton().getDefaultGUIContext().getMouseCursor().setDefaultImage("TaharezLook/MouseArrow");
CEGUI::System::getSingleton().getDefaultGUIContext().getMouseCursor().show();


Input handling is also taken from the tutorial. For example, the "keyPressed()" function, which receives the key event, does this:

Code: Select all

CEGUI::GUIContext& context = CEGUI::System::getSingleton().getDefaultGUIContext();
context.injectKeyDown((CEGUI::Key::Scan)event.key);
context.injectChar((CEGUI::Key::Scan)event.text);


I have checked already that the input works, these functions get called when I do stuff. I also translate OIS mouse presses to CEGUI ones.

Inside the frameRenderingQueued() function, which gets called once per frame, I do:

Code: Select all

CEGUI::System::getSingleton().injectTimePulse(event.timeSinceLastFrame);


Finally, the code that is giving me the segmentation fault: loading a showing a layout from a file:

Code: Select all

CEGUI::Window* layout = CEGUI::WindowManager::getSingleton().loadLayoutFromFile("TextDemo.layout");
CEGUI::System::getSingleton().getDefaultGUIContext().setRootWindow(layout);


This is all the CEGUI code I've got in my program. As you can see, it's very basic, but I must get it working before I implement anything heavier.

I still have to try dynamic linking in Linux. Meanwhile, if you need additional info, let me now.

User avatar
Ident
CEGUI Team
Posts: 1998
Joined: Sat Oct 31, 2009 13:57
Location: Austria

Re: [Crash] Segmentation fault when loading a layout from fi

Postby Ident » Tue Jan 21, 2014 19:36

The ogre tutorial is outdated (it states this on top when it says < 0.8.0) , you should use the CEGUI API docs of your CEGUI version as primary source of information. You can find them on our homepage or you can build them from source or download them from the download section. I say that because I think you might otherwise forget to do some things such as injecting time pulses into the guicontext (are you doing that?). i m not sure if there was something else that had to be done, so maybe read through the docs.

U said you successfuly started your application using Ogre and with CEGUI.
Could you try to render nothing but CEGUI and see if CEGUI is still not rendered?
Also could you please show us the CEGUI.log file?
CrazyEddie: "I don't like GUIs"

TotallyRandomName
Just popping in
Just popping in
Posts: 14
Joined: Fri Jan 17, 2014 19:59

Re: [Crash] Segmentation fault when loading a layout from fi

Postby TotallyRandomName » Sun Feb 02, 2014 22:04

At the top, there is also a note that states that comments have been added when appropriate, in order to provide working code for CEGUI 0.8x. Just in case, I have followed the Beginners Tutorials in http://static.cegui.org.uk/docs/current/, and I have confirmed that the tutorial is not missing a single line of code.

I think I have found the problem. The thing is, my application is running in two threads. The first one is the main one, it does basically everything. The second one runs on the background and fetches and parses some resources, and sometimes it calls other functions that you could say "belong" to the first thread (like rendering).

The code for loading and showing the layout was in a function that gets called by this second thread at some moment. Now, if I put that code in the first thread (for example, in the function where I initialize CEGUI, or in the keyPressed() function of CEGUI, or whatever) everything works and I see the layout and the mouse cursor. But nothing is seen when I put the code in a place where it gets executed by the second thread. Maybe CEGUI is not thread safe and I have to do additional stuff. I did not think this could be a problem, because I can do stuff with OGRE from that second thread, like showing a new entity or changing a light, and OGRE uses singletons like CEGUI to do stuff.

Since this is not necessarily CEGUI related, you can stop looking for solutions if you want. Thanks for your help so far, I will keep looking into it myself.

EDIT: What I would like to know is why the static build of CEGUI fails on Linux (I did this with dynamic build). Maybe it will disappear in a future release...

User avatar
Kulik
CEGUI Team
Posts: 1382
Joined: Mon Jul 26, 2010 18:47
Location: Czech Republic
Contact:

Re: [Crash] Segmentation fault when loading a layout from fi

Postby Kulik » Tue Feb 04, 2014 21:55

CEGUI is not thread safe. Ogre is not thread safe.

Both are not thread safe as a rule. Ofc random things may or may not work.

User avatar
Ident
CEGUI Team
Posts: 1998
Joined: Sat Oct 31, 2009 13:57
Location: Austria

Re: [Crash] Segmentation fault when loading a layout from fi

Postby Ident » Tue Feb 04, 2014 21:56

Linux static should work and is tested. Could you be more specific what you did before it did "not build"? Also please make a new thread for this issue as it is unrelated.
CrazyEddie: "I don't like GUIs"

TotallyRandomName
Just popping in
Just popping in
Posts: 14
Joined: Fri Jan 17, 2014 19:59

Re: [Crash] Segmentation fault when loading a layout from fi

Postby TotallyRandomName » Thu Feb 06, 2014 22:00



Return to “Help”

Who is online

Users browsing this forum: No registered users and 17 guests