[SOLVED] Scheme Unload/Reload Exception

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

Chazney
Just popping in
Just popping in
Posts: 4
Joined: Mon Sep 30, 2013 17:12

[SOLVED] Scheme Unload/Reload Exception

Postby Chazney » Mon Sep 30, 2013 19:43

Hi,

I am having a problem when I unload and reload the same scheme. I have my application set up with various states which each have their own resources. Currently, each state initialises it's own resources, and of course currently each state uses the same scheme. The first state dies and destroys the scheme, the next state then reloads the same scheme (though it may be different, but currently it is the same, and likely will be). I may pull out shared resources, but for now this is easier to ensure that each state is self contained, allowing issues to be isolated.

Here is how I am creating and destroying the scheme:

Code: Select all

   CEGUI::Scheme* UIManager::createUIScheme(const std::string& schemeFilename)
   {
      auto pUIScheme(&CEGUI::SchemeManager::getSingleton().createFromFile(schemeFilename));
      mUISchemes.push_back(pUIScheme);

      return pUIScheme;
   }

   void UIManager::destroyUIScheme(const CEGUI::Scheme* pScheme)
   {
      auto schemeIter(std::find(mUISchemes.begin(), mUISchemes.end(), pScheme));

      if(mUISchemes.end() != schemeIter)
      {
         CEGUI::SchemeManager::getSingleton().destroy(*pScheme);

         std::swap(*schemeIter, mUISchemes.back());
         mUISchemes.pop_back();
      }
   }

   void UIManager::clearUISchemes()
   {
      for(auto pScheme: mUISchemes)
         CEGUI::SchemeManager::getSingleton().destroy(*pScheme);

      mUISchemes.clear();
   }


I left in the extra fluff, but the CEGUI calls are what is important. The functions are rather redundant, but the UIManager does more than this, and makes cleanup easier. The first state has no problems loading the scheme (I am using TaharezLook). However, when I try and create the scheme again in the second state, after calling UIManager::clearUISchemes(), I get the following exception:

Code: Select all

CEGUI::UnknownObjectException in function 'class CEGUI::Animation *__cdecl CEGUI::AnimationManager::createAnimation(const class CEGUI::String &)' (AnimationManager.cpp:162) : Animation with name 'TaharezLook/Tooltip/FadeIn' already exists.


After looking at the source code, I noticed some of the unload functions seem unfinished. Is this the reason the animations aren't being unloaded? And if so, how can I take a scheme and manually unload all of the animations in the scheme? I haven't had a thorough look into the animation, so apologies if the answer is obvious.

Here is the log:

Code: Select all

29/09/2013 23:22:13 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
29/09/2013 23:22:13 (Std)    +                     Crazy Eddie's GUI System - Event log                    +
29/09/2013 23:22:13 (Std)    +                          (http://www.cegui.org.uk/)                         +
29/09/2013 23:22:13 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

29/09/2013 23:22:13 (Std)    CEGUI::Logger singleton created. (0000000004C97AD0)
29/09/2013 23:22:13 (Std)    
29/09/2013 23:22:13 (Std)    ********************************************************************************
29/09/2013 23:22:13 (Std)    * Important:                                                                   *
29/09/2013 23:22:13 (Std)    *     To get support at the CEGUI forums, you must post _at least_ the section *
29/09/2013 23:22:13 (Std)    *     of this log file indicated below.  Failure to do this will result in no  *
29/09/2013 23:22:13 (Std)    *     support being given; please do not waste our time.                       *
29/09/2013 23:22:13 (Std)    ********************************************************************************
29/09/2013 23:22:13 (Std)    ********************************************************************************
29/09/2013 23:22:13 (Std)    * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM       -------- *
29/09/2013 23:22:13 (Std)    ********************************************************************************
29/09/2013 23:22:13 (Std)    ---- Version: 0.8.2 (Build: Aug 23 2013 Debug Microsoft Windows MSVC++ 11.0 64 bit) ----
29/09/2013 23:22:13 (Std)    ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ----
29/09/2013 23:22:13 (Std)    ---- XML Parser module is: CEGUI::RapidXMLParser - Official RapidXML based parser module for CEGUI ----
29/09/2013 23:22:13 (Std)    ---- Image Codec module is: OgreImageCodec - Integrated ImageCodec using the Ogre engine. ----
29/09/2013 23:22:13 (Std)    ---- Scripting module is: None ----
29/09/2013 23:22:13 (Std)    ********************************************************************************
29/09/2013 23:22:13 (Std)    * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM         -------- *
29/09/2013 23:22:13 (Std)    ********************************************************************************
29/09/2013 23:22:13 (Std)    
29/09/2013 23:22:13 (Std)    ---- Begining CEGUI System initialisation ----
29/09/2013 23:22:13 (Std)    [CEGUI::ImageManager] Singleton created (00000000041DE0B0)
29/09/2013 23:22:13 (Std)    [CEGUI::ImageManager] Registered Image type: BasicImage
29/09/2013 23:22:13 (Std)    CEGUI::FontManager singleton created. (0000000004C97930)
29/09/2013 23:22:13 (Std)    CEGUI::WindowFactoryManager singleton created
29/09/2013 23:22:13 (Std)    CEGUI::WindowManager singleton created (0000000003037620)
29/09/2013 23:22:13 (Std)    CEGUI::SchemeManager singleton created. (0000000004C990E0)
29/09/2013 23:22:13 (Std)    CEGUI::GlobalEventSet singleton created. (0000000004BA4AA0)
29/09/2013 23:22:13 (Std)    CEGUI::AnimationManager singleton created (0000000003036360)
29/09/2013 23:22:13 (Std)    CEGUI::WidgetLookManager singleton created. (0000000004C801A0)
29/09/2013 23:22:13 (Std)    CEGUI::WindowRendererManager singleton created (0000000004C80260)
29/09/2013 23:22:13 (Std)    CEGUI::RenderEffectManager singleton created (0000000004184300)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'DefaultWindow' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'DefaultWindow' windows added. (0000000002F62CC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'DragContainer' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'DragContainer' windows added. (0000000002F62DC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'ScrolledContainer' windows added. (0000000002F62EC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'ClippedContainer' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'ClippedContainer' windows added. (0000000002F62FC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (0000000002F630C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (0000000002F631C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (0000000002F632C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (0000000002F633C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (0000000002F635C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (0000000002F634C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (0000000002F636C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (0000000002F637C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (0000000002F638C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (0000000002F639C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (0000000002F63AC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (0000000002F63BC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (0000000002F63CC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (0000000002F63DC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (0000000002F63FC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (0000000002F63EC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (0000000002F640C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (0000000002F642C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (0000000002F641C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (0000000002F644C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (0000000002F643C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (0000000002F645C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (0000000002F646C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (0000000002F647C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/ToggleButton' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/ToggleButton' windows added. (0000000002F648C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (0000000002F64AC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (0000000002F649C0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (0000000002F64BC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (0000000002F64CC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'LayoutCell' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'LayoutCell' windows added. (0000000002F64DC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'HorizontalLayoutContainer' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows added. (0000000002F64EC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'VerticalLayoutContainer' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'VerticalLayoutContainer' windows added. (0000000002F64FC0)
29/09/2013 23:22:13 (Std)    Created WindowFactory for 'GridLayoutContainer' windows.
29/09/2013 23:22:13 (Std)    WindowFactory for 'GridLayoutContainer' windows added. (0000000002F650C0)
29/09/2013 23:22:13 (Std)    CEGUI::System singleton created. (0000000004C97780)
29/09/2013 23:22:13 (Std)    ---- CEGUI System initialisation completed ----
29/09/2013 23:22:13 (Std)    
29/09/2013 23:22:13 (Std)    Started creation of Scheme from XML specification:
29/09/2013 23:22:13 (Std)    ---- CEGUI GUIScheme name: TaharezLook
29/09/2013 23:22:13 (Std)    [ImageManager] Started creation of Imageset from XML specification:
29/09/2013 23:22:13 (Std)    [ImageManager] ---- CEGUI Imageset name: TaharezLook
29/09/2013 23:22:13 (Std)    [ImageManager] ---- Source texture file: TaharezLook.png
29/09/2013 23:22:13 (Std)    [ImageManager] ---- Source texture resource group: (Default)
29/09/2013 23:22:13 (Std)    [OgreRenderer] Created texture: TaharezLook
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ClientBrush' (0000000004DC77D0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/GenericBrush' (0000000004DCF990) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/WindowLeftEdge' (0000000004DCFAE0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/WindowRightEdge' (0000000004DCFC30) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopEdge' (0000000008856A00) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomEdge' (0000000008856B50) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopLeft' (0000000008856CA0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopRight' (0000000008856DF0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomLeft' (0000000008856F40) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomRight' (0000000008857090) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftNormal' (00000000088571E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddleNormal' (0000000008857330) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightNormal' (0000000008857480) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftPushed' (00000000088575D0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddlePushed' (0000000008854A30) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightPushed' (0000000008854B80) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftHighlight' (0000000008854CD0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddleHighlight' (0000000008854F70) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightHighlight' (00000000088550C0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxNormal' (0000000008855210) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxHover' (0000000008854E20) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxMark' (0000000008855360) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonNormal' (00000000088554B0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonHover' (0000000008855600) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonMark' (0000000008855750) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarLeft' (00000000088558A0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarMiddle' (00000000088559F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarRight' (0000000008855B40) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarLeft' (0000000008855C90) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarMiddle' (0000000008855DE0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarRight' (0000000008855F30) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/SysAreaMiddle' (0000000008856080) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/SysAreaRight' (00000000088561D0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/StaticLeft' (0000000008856320) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/StaticRight' (0000000008856470) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTop' (00000000088565C0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottom' (0000000008856710) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTopLeft' (0000000008856860) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTopRight' (0000000008857750) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottomLeft' (00000000088578A0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottomRight' (00000000088579F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBackdrop' (0000000008857B40) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarLeft' (0000000008857C90) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarMiddle' (0000000008857DE0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarRight' (0000000008857F30) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarDimSegment' (0000000008858080) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarLitSegment' (0000000008858320) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxLeft' (0000000008858470) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxMiddle' (00000000088581D0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxRight' (00000000088585C0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxCaret' (0000000008858710) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerUpNormal' (0000000008858860) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerDownNormal' (00000000088589B0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerUpHover' (0000000008858B00) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerDownHover' (0000000008858C50) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TextSelectionBrush' (0000000008858DA0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollTop' (0000000008858EF0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollMiddle' (0000000008859040) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollBottom' (0000000008859190) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollBarSegment' (00000000088592E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollThumbNormal' (0000000008859580) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollThumbHover' (0000000008859430) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollUpNormal' (000000000885B750) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollDownNormal' (000000000885B8A0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollUpHover' (000000000885BB40) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollDownHover' (000000000885B9F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollBarSegment' (000000000885BDE0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbNormal' (000000000885BF30) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopNormal' (000000000885C080) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleNormal' (000000000885BC90) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomNormal' (000000000885C1D0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopHover' (000000000885C320) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleHover' (000000000885C470) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomHover' (000000000885C5C0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbHover' (000000000885C710) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpNormal' (000000000885C9B0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownNormal' (000000000885CB00) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpHover' (000000000885CC50) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownHover' (000000000885CDA0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderBody' (000000000885CEF0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderThumbNormal' (000000000885C860) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderThumbHover' (000000000885D190) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollBarSegment' (000000000885D2E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbNormal' (000000000885D430) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftNormal' (000000000885D580) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleNormal' (000000000885D040) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightNormal' (0000000008863FA0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbHover' (00000000088640F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftHover' (0000000008864390) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleHover' (0000000008864240) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightHover' (00000000088644E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftNormal' (0000000008864630) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightNormal' (00000000088648D0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftHover' (0000000008864A20) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightHover' (0000000008864B70) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxLeft' (0000000008864CC0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxRight' (0000000008864780) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTop' (0000000008864E10) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottom' (0000000008864F60) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTopLeft' (00000000088650B0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTopRight' (0000000008865200) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottomLeft' (0000000008865350) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottomRight' (00000000088654A0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBackdrop' (00000000088655F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxSelectionBrush' (0000000008865740) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxEditLeft' (00000000088659E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxEditMiddle' (0000000008865890) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListButtonNormal' (0000000008865B30) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListButtonHover' (0000000008865DD0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListLeft' (0000000008865C80) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListRight' (0000000008869FA0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTop' (000000000886A0F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottom' (000000000886A240) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTopLeft' (000000000886A390) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTopRight' (000000000886A630) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottomLeft' (000000000886A780) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottomRight' (000000000886A8D0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBackdrop' (000000000886AA20) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxSelectionBrush' (000000000886AB70) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerLeft' (000000000886ACC0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerMiddle' (000000000886AE10) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerRight' (000000000886AF60) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropNormal' (000000000886B0B0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropHover' (000000000886B200) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterNormal' (000000000886B350) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterHover' (000000000886B4A0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSortUp' (000000000886B5F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSortDown' (000000000886A4E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListLeft' (000000000886B740) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListRight' (000000000886B890) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTop' (000000000886B9E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottom' (000000000886BB30) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTopLeft' (000000000886BC80) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTopRight' (000000000886BDD0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottomLeft' (000000000886DFA0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottomRight' (000000000886E240) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBackdrop' (000000000886E390) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListSelectionBrush' (000000000886E0F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLeft' (000000000886E630) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressMiddle' (000000000886E4E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressRight' (000000000886E780) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressQuarter' (000000000886E8D0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressHalf' (000000000886EA20) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight1' (000000000886EB70) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight2' (000000000886ECC0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight3' (000000000886EE10) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight4' (000000000886EF60) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight5' (000000000886F0B0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight6' (000000000886F200) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight7' (000000000886F350) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight8' (000000000886F4A0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight9' (000000000886F5F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight10' (000000000886F740) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonNormal' (000000000886F890) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonHover' (000000000886F9E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonPressed' (000000000886FB30) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonNormal' (000000000886FC80) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonHover' (000000000886FDD0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonPressed' (0000000008871FA0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxLeft' (0000000008872240) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxRight' (0000000008872390) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTop' (00000000088724E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottom' (0000000008872630) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopLeft' (0000000008872780) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopRight' (00000000088728D0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomLeft' (0000000008872A20) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomRight' (00000000088720F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBackdrop' (0000000008872B70) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxSelectionBrush' (0000000008872E10) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MouseTarget' (0000000008872CC0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MouseArrow' (0000000008872F60) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MouseMoveCursor' (00000000088730B0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNoSoCursor' (0000000008873200) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MouseEsWeCursor' (0000000008873350) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNeSwCursor' (00000000088734A0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNwSeCursor' (00000000088735F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MouseTextBar' (0000000008873740) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabHorizontalFiller' (0000000008873890) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperLeft' (0000000008873B30) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpper' (0000000008873C80) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperRight' (0000000008873DD0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLeft' (00000000088739E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneRight' (0000000008877FA0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLower' (0000000008878240) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerLeft' (0000000008878390) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerRight' (00000000088784E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneMiddle' (0000000008878630) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftNormal' (0000000008878780) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightNormal' (00000000088788D0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftHover' (00000000088780F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightHover' (0000000008878B70) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLeftNormal' (0000000008878CC0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonRightNormal' (0000000008878E10) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperNormal' (0000000008878F60) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerNormal' (00000000088790B0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftNormal' (0000000008879200) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeft2Normal' (0000000008879350) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightNormal' (00000000088794A0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftNormal' (00000000088795F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightNormal' (0000000008879740) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRight2Normal' (0000000008879890) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonMiddleNormal' (0000000008878A20) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLeftSelected' (0000000008879B30) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonRightSelected' (0000000008879C80) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperSelected' (0000000008879DD0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerSelected' (00000000088799E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftSelected' (0000000008879FA0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightSelected' (000000000887A0F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftSelected' (000000000887A240) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightSelected' (000000000887A390) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonMiddleSelected' (000000000887A4E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopLeft' (000000000887A780) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopRight' (000000000887A630) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomLeft' (000000000887A8D0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomRight' (000000000887AA20) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipLeftEdge' (000000000887AB70) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipRightEdge' (000000000887ACC0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopEdge' (000000000887AE10) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomEdge' (000000000887AF60) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipMiddle' (000000000887B0B0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTopLeft' (000000000887B200) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTopRight' (000000000887B350) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottomLeft' (000000000887B4A0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottomRight' (000000000887B5F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MenuLeft' (000000000887B740) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MenuRight' (000000000887B890) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTop' (000000000887B9E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottom' (000000000887BB30) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/MenuMiddle' (000000000887BC80) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopLeft' (000000000887BDD0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopRight' (000000000887FFA0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomLeft' (0000000008880240) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomRight' (0000000008880390) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameLeft' (00000000088804E0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameRight' (00000000088800F0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTop' (0000000008880780) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottom' (0000000008880630) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuMiddle' (0000000008880A20) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuArrowRight' (00000000088808D0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuArrowLeft' (0000000008880CC0) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TreeListClosed' (0000000008880B70) of type: BasicImage
29/09/2013 23:22:13 (Std)    [ImageManager] Created image: 'TaharezLook/TreeListOpened' (0000000008880E10) of type: BasicImage
29/09/2013 23:22:13 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
29/09/2013 23:22:13 (Std)    ===== Look and feel parsing completed =====
29/09/2013 23:22:13 (Std)    No window renderer factories specified for module 'CEGUICoreWindowRendererSet' - adding all available factories...
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/Button' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/Button' added. (0000000004DD8410)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/Default' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/Default' added. (0000000004DD8610)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/Editbox' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/Editbox' added. (0000000004DD8710)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/FrameWindow' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/FrameWindow' added. (0000000004DD8810)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/ItemEntry' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/ItemEntry' added. (0000000004DD8910)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/ListHeader' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/ListHeader' added. (0000000004DD8A10)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/ListHeaderSegment' added. (0000000004DD8B10)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/Listbox' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/Listbox' added. (0000000004DD8C10)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/Menubar' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/Menubar' added. (0000000004DD8D10)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/MenuItem' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/MenuItem' added. (0000000004DD8E10)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/MultiColumnList' added. (0000000004DD8510)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/MultiLineEditbox' added. (0000000004DD8F10)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/PopupMenu' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/PopupMenu' added. (0000000004DD9010)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/ProgressBar' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/ProgressBar' added. (0000000004DD9210)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/ScrollablePane' added. (0000000004DD9310)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/Scrollbar' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/Scrollbar' added. (0000000004DD9110)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/Slider' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/Slider' added. (0000000004DD9510)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/Static' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/Static' added. (0000000004DD9610)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/StaticImage' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/StaticImage' added. (0000000004DD9710)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/StaticText' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/StaticText' added. (0000000004DD9810)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/TabButton' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/TabButton' added. (0000000004DD9910)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/TabControl' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/TabControl' added. (0000000004DD9A10)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/Titlebar' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/Titlebar' added. (0000000004DD9B10)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/ToggleButton' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/ToggleButton' added. (0000000004DD9410)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/Tooltip' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/Tooltip' added. (0000000004DD9C10)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/ItemListbox' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/ItemListbox' added. (0000000004DD9E10)
29/09/2013 23:22:13 (Std)    Created WindowRendererFactory for 'Core/Tree' WindowRenderers.
29/09/2013 23:22:13 (Std)    WindowRendererFactory 'Core/Tree' added. (0000000004DD9D10)
29/09/2013 23:22:13 (Std)    Creating falagard mapping for type 'TaharezLook/Label' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Label' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:13 (Std)    Creating falagard mapping for type 'TaharezLook/Button' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:13 (Std)    Creating falagard mapping for type 'TaharezLook/Checkbox' using base type 'CEGUI/ToggleButton', window renderer 'Core/ToggleButton' Look'N'Feel 'TaharezLook/Checkbox' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:13 (Std)    Creating falagard mapping for type 'TaharezLook/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/ImageButton' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:13 (Std)    Creating falagard mapping for type 'TaharezLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Core/ToggleButton' Look'N'Feel 'TaharezLook/RadioButton' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:13 (Std)    Creating falagard mapping for type 'TaharezLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Core/FrameWindow' Look'N'Feel 'TaharezLook/FrameWindow' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:13 (Std)    Creating falagard mapping for type 'TaharezLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Core/Titlebar' Look'N'Feel 'TaharezLook/Titlebar' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:13 (Std)    Creating falagard mapping for type 'TaharezLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'TaharezLook/Editbox' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:13 (Std)    Creating falagard mapping for type 'TaharezLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Core/MultiLineEditbox' Look'N'Feel 'TaharezLook/MultiLineEditbox' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Core/Menubar' Look'N'Feel 'TaharezLook/Menubar' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Core/PopupMenu' Look'N'Feel 'TaharezLook/PopupMenu' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Core/MenuItem' Look'N'Feel 'TaharezLook/MenuItem' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/AltProgressBar' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/ProgressBar' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/VUMeter' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/VerticalScrollbar' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/HorizontalScrollbar' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/VerticalScrollbarThumb' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/HorizontalScrollbarThumb' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/LargeVerticalScrollbar' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/LargeVerticalScrollbarThumb' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Core/TabButton' Look'N'Feel 'TaharezLook/TabButton' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Core/TabControl' Look'N'Feel 'TaharezLook/TabControl' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/TabContentPane' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/TabButtonPane' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Core/Listbox' Look'N'Feel 'TaharezLook/ComboDropList' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'TaharezLook/ComboEditbox' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Combobox' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Core/Listbox' Look'N'Feel 'TaharezLook/Listbox' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Core/ListHeader' Look'N'Feel 'TaharezLook/ListHeader' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Core/ListHeaderSegment' Look'N'Feel 'TaharezLook/ListHeaderSegment' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Core/MultiColumnList' Look'N'Feel 'TaharezLook/MultiColumnList' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/Slider' using base type 'CEGUI/Slider', window renderer 'Core/Slider' Look'N'Feel 'TaharezLook/Slider' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/SliderThumb' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Core/ScrollablePane' Look'N'Feel 'TaharezLook/ScrollablePane' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Spinner' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Core/Tooltip' Look'N'Feel 'TaharezLook/Tooltip' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/StaticImage' using base type 'DefaultWindow', window renderer 'Core/StaticImage' Look'N'Feel 'TaharezLook/StaticImage' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/StaticText' using base type 'DefaultWindow', window renderer 'Core/StaticText' Look'N'Feel 'TaharezLook/StaticText' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Core/ItemListbox' Look'N'Feel 'TaharezLook/ItemListbox' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Core/ItemEntry' Look'N'Feel 'TaharezLook/ListboxItem' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/GroupBox' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/GroupBox' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    Creating falagard mapping for type 'TaharezLook/Tree' using base type 'CEGUI/Tree', window renderer 'Core/Tree' Look'N'Feel 'TaharezLook/Tree' and RenderEffect ''. (000000000020B4A0)
29/09/2013 23:22:14 (Std)    ---- Successfully completed loading of GUI layout from 'main_menu.layout' ----
29/09/2013 23:22:14 (Std)    ---- Successfully completed loading of GUI layout from 'load_level.layout' ----
29/09/2013 23:22:14 (Std)    [OgreRenderer] Created texture: DejaVuSans-12_auto_glyph_images_32
29/09/2013 23:23:15 (Std)    [OgreRenderer] Destroyed texture: DejaVuSans-12_auto_glyph_images_32
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/Button' WindowRenderers removed. (0000000004DD8410)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/Button' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/Default' WindowRenderers removed. (0000000004DD8610)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/Default' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/Editbox' WindowRenderers removed. (0000000004DD8710)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/Editbox' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/FrameWindow' WindowRenderers removed. (0000000004DD8810)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/FrameWindow' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/ItemEntry' WindowRenderers removed. (0000000004DD8910)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/ItemEntry' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/ListHeader' WindowRenderers removed. (0000000004DD8A10)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/ListHeader' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers removed. (0000000004DD8B10)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/Listbox' WindowRenderers removed. (0000000004DD8C10)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/Listbox' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/Menubar' WindowRenderers removed. (0000000004DD8D10)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/Menubar' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/MenuItem' WindowRenderers removed. (0000000004DD8E10)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/MenuItem' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers removed. (0000000004DD8510)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers removed. (0000000004DD8F10)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/PopupMenu' WindowRenderers removed. (0000000004DD9010)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/PopupMenu' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/ProgressBar' WindowRenderers removed. (0000000004DD9210)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/ProgressBar' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers removed. (0000000004DD9310)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/Scrollbar' WindowRenderers removed. (0000000004DD9110)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/Scrollbar' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/Slider' WindowRenderers removed. (0000000004DD9510)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/Slider' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/Static' WindowRenderers removed. (0000000004DD9610)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/Static' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/StaticImage' WindowRenderers removed. (0000000004DD9710)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/StaticImage' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/StaticText' WindowRenderers removed. (0000000004DD9810)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/StaticText' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/TabButton' WindowRenderers removed. (0000000004DD9910)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/TabButton' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/TabControl' WindowRenderers removed. (0000000004DD9A10)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/TabControl' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/Titlebar' WindowRenderers removed. (0000000004DD9B10)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/Titlebar' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/ToggleButton' WindowRenderers removed. (0000000004DD9410)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/ToggleButton' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/Tooltip' WindowRenderers removed. (0000000004DD9C10)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/Tooltip' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/ItemListbox' WindowRenderers removed. (0000000004DD9E10)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/ItemListbox' WindowRenderers.
29/09/2013 23:23:15 (Std)    WindowRendererFactory for 'Core/Tree' WindowRenderers removed. (0000000004DD9D10)
29/09/2013 23:23:15 (Std)    Deleted WindowRendererFactory for 'Core/Tree' WindowRenderers.
29/09/2013 23:23:16 (Std)    Started creation of Scheme from XML specification:
29/09/2013 23:23:16 (Std)    ---- CEGUI GUIScheme name: TaharezLook
29/09/2013 23:23:16 (Std)    [ImageManager] Started creation of Imageset from XML specification:
29/09/2013 23:23:16 (Std)    [ImageManager] ---- CEGUI Imageset name: TaharezLook
29/09/2013 23:23:16 (Std)    [ImageManager] ---- Source texture file: TaharezLook.png
29/09/2013 23:23:16 (Std)    [ImageManager] ---- Source texture resource group: (Default)
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing texture: TaharezLook
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ClientBrush
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/GenericBrush
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/WindowLeftEdge
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/WindowRightEdge
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/WindowTopEdge
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/WindowBottomEdge
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/WindowTopLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/WindowTopRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/WindowBottomLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/WindowBottomRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ButtonLeftNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ButtonMiddleNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ButtonRightNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ButtonLeftPushed
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ButtonMiddlePushed
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ButtonRightPushed
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ButtonLeftHighlight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ButtonMiddleHighlight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ButtonRightHighlight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/CheckboxNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/CheckboxHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/CheckboxMark
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/RadioButtonNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/RadioButtonHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/RadioButtonMark
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TitlebarLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TitlebarMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TitlebarRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/NewTitlebarLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/NewTitlebarMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/NewTitlebarRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/SysAreaMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/SysAreaRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/StaticLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/StaticRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/StaticTop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/StaticBottom
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/StaticTopLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/StaticTopRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/StaticBottomLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/StaticBottomRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/StaticBackdrop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ProgressBarLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ProgressBarMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ProgressBarRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ProgressBarDimSegment
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ProgressBarLitSegment
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/EditBoxLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/EditBoxMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/EditBoxRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/EditBoxCaret
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/SpinnerUpNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/SpinnerDownNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/SpinnerUpHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/SpinnerDownHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TextSelectionBrush
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertScrollTop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertScrollMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertScrollBottom
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertScrollBarSegment
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertScrollThumbNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertScrollThumbHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertScrollUpNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertScrollDownNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertScrollUpHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertScrollDownHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollBarSegment
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollThumbNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollThumbTopNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollThumbMiddleNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollThumbBottomNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollThumbTopHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollThumbMiddleHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollThumbBottomHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollThumbHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollUpNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollDownNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollUpHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniVertScrollDownHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertSliderBody
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertSliderThumbNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/VertSliderThumbHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollBarSegment
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollThumbNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollThumbLeftNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollThumbMiddleNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollThumbRightNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollThumbHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollThumbLeftHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollThumbMiddleHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollThumbRightHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollLeftNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollRightNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollLeftHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MiniHorzScrollRightHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ListboxLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ListboxRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ListboxTop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ListboxBottom
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ListboxTopLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ListboxTopRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ListboxBottomLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ListboxBottomRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ListboxBackdrop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ListboxSelectionBrush
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxEditLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxEditMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxListButtonNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxListButtonHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxListLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxListRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxListTop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxListBottom
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxListTopLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxListTopRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxListBottomLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxListBottomRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxListBackdrop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxSelectionBrush
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxDividerLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxDividerMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/ComboboxDividerRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/HeaderBarBackdropNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/HeaderBarBackdropHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/HeaderBarSplitterNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/HeaderBarSplitterHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/HeaderBarSortUp
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/HeaderBarSortDown
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiListLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiListRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiListTop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiListBottom
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiListTopLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiListTopRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiListBottomLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiListBottomRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiListBackdrop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiListSelectionBrush
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressQuarter
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressHalf
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressLight1
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressLight2
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressLight3
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressLight4
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressLight5
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressLight6
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressLight7
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressLight8
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressLight9
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/AltProgressLight10
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/CloseButtonNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/CloseButtonHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/CloseButtonPressed
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/NewCloseButtonNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/NewCloseButtonHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/NewCloseButtonPressed
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiLineEditboxLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiLineEditboxRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiLineEditboxTop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiLineEditboxBottom
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiLineEditboxTopLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiLineEditboxTopRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiLineEditboxBottomLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiLineEditboxBottomRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiLineEditboxBackdrop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MultiLineEditboxSelectionBrush
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MouseTarget
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MouseArrow
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MouseMoveCursor
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MouseNoSoCursor
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MouseEsWeCursor
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MouseNeSwCursor
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MouseNwSeCursor
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MouseTextBar
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabHorizontalFiller
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabContentPaneUpperLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabContentPaneUpper
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabContentPaneUpperRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabContentPaneLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabContentPaneRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabContentPaneLower
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabContentPaneLowerLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabContentPaneLowerRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabContentPaneMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonScrollLeftNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonScrollRightNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonScrollLeftHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonScrollRightHover
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonLeftNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonRightNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonUpperNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonLowerNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonUpperLeftNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonUpperLeft2Normal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonUpperRightNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonLowerLeftNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonLowerRightNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonLowerRight2Normal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonMiddleNormal
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonLeftSelected
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonRightSelected
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonUpperSelected
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonLowerSelected
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonUpperLeftSelected
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonUpperRightSelected
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonLowerLeftSelected
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonLowerRightSelected
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TabButtonMiddleSelected
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TooltipTopLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TooltipTopRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TooltipBottomLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TooltipBottomRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TooltipLeftEdge
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TooltipRightEdge
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TooltipTopEdge
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TooltipBottomEdge
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TooltipMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MenuTopLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MenuTopRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MenuBottomLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MenuBottomRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MenuLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MenuRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MenuTop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MenuBottom
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/MenuMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/PopupMenuFrameTopLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/PopupMenuFrameTopRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/PopupMenuFrameBottomLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/PopupMenuFrameBottomRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/PopupMenuFrameLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/PopupMenuFrameRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/PopupMenuFrameTop
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/PopupMenuFrameBottom
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/PopupMenuMiddle
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/PopupMenuArrowRight
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/PopupMenuArrowLeft
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TreeListClosed
29/09/2013 23:23:16 (Std)    [ImageManager] WARNING: Using existing image :TaharezLook/TreeListOpened
29/09/2013 23:23:16 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
29/09/2013 23:23:16 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/Label' already exists.  Replacing previous definition.
29/09/2013 23:23:16 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/Button' already exists.  Replacing previous definition.
29/09/2013 23:23:16 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/RadioButton' already exists.  Replacing previous definition.
29/09/2013 23:23:16 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/Checkbox' already exists.  Replacing previous definition.
29/09/2013 23:23:16 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/Editbox' already exists.  Replacing previous definition.
29/09/2013 23:23:16 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/Titlebar' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/FrameWindow' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/GroupBox' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/ProgressBar' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/AltProgressBar' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/VUMeter' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/SliderThumb' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/Slider' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/HorizontalScrollbarThumb' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/HorizontalScrollbar' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/VerticalScrollbarThumb' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/VerticalScrollbar' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/Listbox' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/ComboDropList' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/ComboEditbox' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/Combobox' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/Spinner' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/StaticShared' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/StaticImage' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/StaticText' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/ListHeaderSegment' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/ListHeader' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/MultiColumnList' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Std)    WidgetLookManager::addWidgetLook - Widget look and feel 'TaharezLook/MultiLineEditbox' already exists.  Replacing previous definition.
29/09/2013 23:23:17 (Error)   CEGUI::UnknownObjectException in function 'class CEGUI::Animation *__cdecl CEGUI::AnimationManager::createAnimation(const class CEGUI::String &)' (AnimationManager.cpp:162) : Animation with name 'TaharezLook/Tooltip/FadeIn' already exists.
29/09/2013 23:23:17 (Error)   ========== Start of Backtrace ==========
29/09/2013 23:23:17 (Error)   #0 CEGUI::dumpBacktrace +0x89 (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #1 CEGUI::Exception::Exception +0x39c (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #2 CEGUI::UnknownObjectException::UnknownObjectException +0x9d (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #3 CEGUI::AnimationManager::createAnimation +0x148 (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #4 CEGUI::AnimationDefinitionHandler::AnimationDefinitionHandler +0x3c8 (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #5 CEGUI::Falagard_xmlHandler::elementAnimationDefinitionStart +0xe2 (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #6 CEGUI::Falagard_xmlHandler::elementStartLocal +0x12e (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #7 CEGUI::ChainedXMLHandler::elementStart +0x91 (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #8 CEGUI::RapidXMLDocument::processElement +0x14d (D:\CEGUI\bin\CEGUIRapidXMLParser_d.dll)
29/09/2013 23:23:17 (Error)   #9 CEGUI::RapidXMLDocument::processElement +0x1ca (D:\CEGUI\bin\CEGUIRapidXMLParser_d.dll)
29/09/2013 23:23:17 (Error)   #10 CEGUI::RapidXMLDocument::processElement +0x1ca (D:\CEGUI\bin\CEGUIRapidXMLParser_d.dll)
29/09/2013 23:23:17 (Error)   #11 CEGUI::RapidXMLDocument::RapidXMLDocument +0x153 (D:\CEGUI\bin\CEGUIRapidXMLParser_d.dll)
29/09/2013 23:23:17 (Error)   #12 CEGUI::RapidXMLParser::parseXML +0x6d (D:\CEGUI\bin\CEGUIRapidXMLParser_d.dll)
29/09/2013 23:23:17 (Error)   #13 CEGUI::XMLParser::parseXMLFile +0xc8 (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #14 CEGUI::WidgetLookManager::parseLookNFeelSpecificationFromFile +0x1f4 (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #15 CEGUI::Scheme::loadLookNFeels +0x132 (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #16 CEGUI::Scheme::loadResources +0x128 (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #17 CEGUI::SchemeManager::doPostObjectAdditionAction +0x3d (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #18 CEGUI::NamedXMLResourceManager<CEGUI::Scheme,CEGUI::Scheme_xmlHandler>::doExistingObjectAction +0x779 (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #19 CEGUI::NamedXMLResourceManager<CEGUI::Scheme,CEGUI::Scheme_xmlHandler>::createFromFile +0xcd (D:\Dropbox\game\level_editor\Debug\CEGUIBase-0_d.dll)
29/09/2013 23:23:17 (Error)   #20 LevelEditor::UIManager::createUIScheme +0x96 (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #21 LevelEditor::luaLevelEditorStateCreateUIScheme +0xc1 (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #22 luaD_precall +0x1d0 (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #23 luaV_execute +0x20da (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #24 luaD_call +0xd8 (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #25 f_call +0x4b (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #26 luaD_rawrunprotected +0xa6 (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #27 luaD_pcall +0x89 (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #28 lua_pcallk +0x114 (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #29 LevelEditor::luaDoFile +0x5f (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #30 LevelEditor::LevelEditorState::initialize +0x8e2 (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #31 LevelEditor::Application::run +0x193 (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #32 main +0x22e (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #33 __tmainCRTStartup +0x19d (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #34 mainCRTStartup +0xe (D:\Dropbox\game\level_editor\Debug\level_editor_d.exe)
29/09/2013 23:23:17 (Error)   #35 BaseThreadInitThunk +0xd (C:\Windows\system32\kernel32.dll)
29/09/2013 23:23:17 (Error)   #36 RtlUserThreadStart +0x21 (C:\Windows\SYSTEM32\ntdll.dll)
29/09/2013 23:23:17 (Error)   ==========  End of Backtrace  ==========
29/09/2013 23:23:17 (Error)   The last thrown exception was related to XML file 'TaharezLook.looknfeel' from resource group ''.
29/09/2013 23:23:17 (Error)   WidgetLookManager::parseLookNFeelSpecification - loading of look and feel data from file 'TaharezLook.looknfeel' has failed.

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

Re: Scheme Unload/Reload Exception

Postby Ident » Sun Oct 06, 2013 12:40

Which function do you say is unfinished? Can you hint us to it?
CrazyEddie: "I don't like GUIs"

Chazney
Just popping in
Just popping in
Posts: 4
Joined: Mon Sep 30, 2013 17:12

Re: Scheme Unload/Reload Exception

Postby Chazney » Mon Oct 07, 2013 03:31

Hi,

I found them in Scheme.cpp, here are the parts I found which I felt were involved (This is 0.8.2, I took a copy of the source code before making my post to see if it had changed, and it hasn't):

Line 120:

Code: Select all

void Scheme::unloadResources(void)
{
    Logger::getSingleton().logEvent("---- Begining resource cleanup for GUI scheme '" + d_name + "' ----", Informative);

    // unload all resources specified for this scheme.
    unloadFonts();
    //unloadXMLImagesets(); FIXME: ????
    unloadImageFileImagesets();
    unloadWindowFactories();
    unloadWindowRendererFactories();
    unloadFactoryAliases();
    unloadFalagardMappings();
    unloadLookNFeels();

    Logger::getSingleton().logEvent("---- Resource cleanup for GUI scheme '" + d_name + "' completed ----", Informative);
}


Line 433, which may be the reason the image warnings are showing up in the log, though this doesn't seem to cause any issues:

Code: Select all

void Scheme::unloadXMLImagesets()
{
/* FIXME ?
    ImageManager& imgr = ImageManager::getSingleton();

    // unload all xml based Imagesets
    for (LoadableUIElementList::const_iterator pos = d_imagesets.begin();
        pos != d_imagesets.end(); ++pos)
    {
        if (!(*pos).name.empty())
            ismgr.destroy((*pos).name);
    }
*/
}


And line 483, which I feel is causing the issue with the animations remaining loaded, but I'm unsure:

Code: Select all

void Scheme::unloadLookNFeels()
{
    // While it's possible to remove WidgetLooks etc, currently we can't
    // extract which looks were loaded from a given xml file, so we just
    // do nothing for now.
}


Naturally, I'm not familiar with the bigger picture, so I'm not sure. From what I can gather though, animations are related to look'n'feel, in which the last function there is empty. I've been working on other things in the meantime, so I haven't looked any further into it. I can take a look into the animations if you wish, but I felt you guys would have a much easier time understanding what I or the code is missing.

Regards,
Chazney

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

Re: Scheme Unload/Reload Exception

Postby Ident » Mon Oct 07, 2013 04:00

Okay thanks for this. I think i got an idea now what could be the issue but I am not sure it can easily be solved. But this "FIXME" is definitely something to look at. I'll do so tomorrow and write another post here then.
CrazyEddie: "I don't like GUIs"

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

Re: Scheme Unload/Reload Exception

Postby Ident » Sun Oct 13, 2013 16:13

Took a bit longer for me to investigate this further.

I can fully reproduce your issue, however the unload/load stuff is a bit tricky. For example the images currently dont get unloaded because we cant tell if they were loaded via xml or not. Or if they are shared across two schemes. So unloading the imageset of one scheme could break another scheme thats still being used. Some usage-counter could help with this (have to think this through), because then the cross-scheme usage would be fixed at least, but it might cause issues if the user unloads stuff manually without doing it via the scheme. But of course that could be attributed as a mistake on the user-side.

However, what needs fixing is that the animation re-loading messes up, this could be solved similar to how it is done with imagesets (massive wall of warnings). I try to do it tonight when i m back
CrazyEddie: "I don't like GUIs"

Chazney
Just popping in
Just popping in
Posts: 4
Joined: Mon Sep 30, 2013 17:12

Re: Scheme Unload/Reload Exception

Postby Chazney » Mon Oct 14, 2013 22:59

Hi,

The warnings are more than fine, at least for my scenario, as you have pointed out. Anything extra I would consider a bonus.

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

Re: Scheme Unload/Reload Exception

Postby Ident » Mon Oct 14, 2013 23:36

I applied a quick-fix for this to all branches. I tried load-unload-load with all schemes and it seems to work. there might be issues i havent considered though.

the whole load/unload process seems incomplete to me in its current state - at the moment a lot of unloading just gets ignored. The right way, imo, would be to have a counter for loads/unloads, similar to how smartpointers work. But i havent been able to discuss that with anyone of the team yet so I didnt start implementing that.
CrazyEddie: "I don't like GUIs"

Chazney
Just popping in
Just popping in
Posts: 4
Joined: Mon Sep 30, 2013 17:12

Re: Scheme Unload/Reload Exception

Postby Chazney » Tue Oct 15, 2013 15:11

Hi,

That's great. I'll pull the code and test it when I get some time. I understand the issue with the resources, but that isn't much a problem for me right now.


Return to “Help”

Who is online

Users browsing this forum: No registered users and 8 guests