Strange ItemListbox behaviour

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

raver
Just popping in
Just popping in
Posts: 1
Joined: Thu Aug 29, 2013 20:01

Strange ItemListbox behaviour

Postby raver » Thu Aug 29, 2013 20:11

Hi, i am new CEGUI user and i have a problem, look at this code:

Code: Select all

CEGUI::Window* root = windowMgr->createWindow("DefaultWindow", "Root");
CEGUI::System::getSingletonPtr()->getDefaultGUIContext().setRootWindow(root);

CEGUI::ItemListbox* list = (CEGUI::ItemListbox*)windowMgr->createWindow("WindowsLook/ItemListbox");
list->setSize(CEGUI::USize(CEGUI::UDim(0, 400), CEGUI::UDim(1, 0)));
CEGUI::ItemEntry* a = (CEGUI::ItemEntry*)windowMgr->createWindow("WindowsLook/ListboxItem");
list->addItem(a);
CEGUI::ItemEntry* b = (CEGUI::ItemEntry*)windowMgr->createWindow("WindowsLook/ListboxItem");
list->addItem(b);
root->addChild(list); // IMPORTANT LINE

Now everything is ok, but when I move one line like this:

Code: Select all

CEGUI::Window* root = windowMgr->createWindow("DefaultWindow", "Root");
CEGUI::System::getSingletonPtr()->getDefaultGUIContext().setRootWindow(root);

CEGUI::ItemListbox* list = (CEGUI::ItemListbox*)windowMgr->createWindow("WindowsLook/ItemListbox");
list->setSize(CEGUI::USize(CEGUI::UDim(0, 400), CEGUI::UDim(1, 0)));
root->addChild(list); // IMPORTANT LINE
CEGUI::ItemEntry* a = (CEGUI::ItemEntry*)windowMgr->createWindow("WindowsLook/ListboxItem");
list->addItem(a);
CEGUI::ItemEntry* b = (CEGUI::ItemEntry*)windowMgr->createWindow("WindowsLook/ListboxItem");
list->addItem(b);

Then second list item just disapears. What i am doing wrong? When i resize main application window second list item come back. Please help me, I don't know whats going on.

I am using CEGUI v0.82 on windows with OpenGL renderer.

My CEGUI.log:

Code: Select all

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

29/08/2013 22:03:37 (Std)    CEGUI::Logger singleton created. (00EF81A8)
29/08/2013 22:03:37 (Std)    
29/08/2013 22:03:37 (Std)    ********************************************************************************
29/08/2013 22:03:37 (Std)    * Important:                                                                   *
29/08/2013 22:03:37 (Std)    *     To get support at the CEGUI forums, you must post _at least_ the section *
29/08/2013 22:03:37 (Std)    *     of this log file indicated below.  Failure to do this will result in no  *
29/08/2013 22:03:37 (Std)    *     support being given; please do not waste our time.                       *
29/08/2013 22:03:37 (Std)    ********************************************************************************
29/08/2013 22:03:37 (Std)    ********************************************************************************
29/08/2013 22:03:37 (Std)    * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM       -------- *
29/08/2013 22:03:37 (Std)    ********************************************************************************
29/08/2013 22:03:37 (Std)    ---- Version: 0.8.2 (Build: Aug 28 2013 Debug Microsoft Windows MSVC++ 11.0 32 bit) ----
29/08/2013 22:03:37 (Std)    ---- Renderer module is: CEGUI::OpenGLRenderer - Official OpenGL based 2nd generation renderer module.  TextureTarget support enabled via FBO extension. ----
29/08/2013 22:03:37 (Std)    ---- XML Parser module is: CEGUI::TinyXMLParser - Official tinyXML based parser module for CEGUI ----
29/08/2013 22:03:37 (Std)    ---- Image Codec module is: SILLYImageCodec - Official SILLY based image codec ----
29/08/2013 22:03:37 (Std)    ---- Scripting module is: None ----
29/08/2013 22:03:37 (Std)    ********************************************************************************
29/08/2013 22:03:37 (Std)    * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM         -------- *
29/08/2013 22:03:37 (Std)    ********************************************************************************
29/08/2013 22:03:37 (Std)    
29/08/2013 22:03:37 (Std)    ---- Begining CEGUI System initialisation ----
29/08/2013 22:03:37 (Std)    [CEGUI::ImageManager] Singleton created (00EEDB58)
29/08/2013 22:03:37 (Std)    [CEGUI::ImageManager] Registered Image type: BasicImage
29/08/2013 22:03:37 (Std)    CEGUI::FontManager singleton created. (00EF7740)
29/08/2013 22:03:37 (Std)    CEGUI::WindowFactoryManager singleton created
29/08/2013 22:03:37 (Std)    CEGUI::WindowManager singleton created (00EDDBB0)
29/08/2013 22:03:37 (Std)    CEGUI::SchemeManager singleton created. (00EF72B8)
29/08/2013 22:03:37 (Std)    CEGUI::GlobalEventSet singleton created. (00EF5BE8)
29/08/2013 22:03:37 (Std)    CEGUI::AnimationManager singleton created (00EF9BD8)
29/08/2013 22:03:37 (Std)    CEGUI::WidgetLookManager singleton created. (00EDBD90)
29/08/2013 22:03:37 (Std)    CEGUI::WindowRendererManager singleton created (00EDBE10)
29/08/2013 22:03:37 (Std)    CEGUI::RenderEffectManager singleton created (00EF5E70)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'DefaultWindow' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'DefaultWindow' windows added. (00EFF870)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'DragContainer' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'DragContainer' windows added. (00EFFB90)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'ScrolledContainer' windows added. (00EFFAC8)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'ClippedContainer' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'ClippedContainer' windows added. (00EFFC58)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (00F05618)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (00F04E48)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (00F04D80)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (00F052F8)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (00F04F10)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (00F05550)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (00F05488)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (00F05168)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (00F048D0)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (00F04678)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (00F05938)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (00F04808)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (00F05AC8)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (00F05870)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (00F053C0)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (00F056E0)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (00F04FD8)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (00F04998)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (00F057A8)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (00F05A00)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (00F05B90)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (00F04B28)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (00F045B0)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (00F04358)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/ToggleButton' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/ToggleButton' windows added. (00F04420)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (00F04A60)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (00F044E8)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (00F04740)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (00F04BF0)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'LayoutCell' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'LayoutCell' windows added. (00F04CB8)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'HorizontalLayoutContainer' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows added. (00F050A0)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'VerticalLayoutContainer' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'VerticalLayoutContainer' windows added. (00F05230)
29/08/2013 22:03:37 (Std)    Created WindowFactory for 'GridLayoutContainer' windows.
29/08/2013 22:03:37 (Std)    WindowFactory for 'GridLayoutContainer' windows added. (00F05F78)
29/08/2013 22:03:37 (Std)    CEGUI::System singleton created. (00EF6D38)
29/08/2013 22:03:37 (Std)    ---- CEGUI System initialisation completed ----
29/08/2013 22:03:37 (Std)    
29/08/2013 22:03:37 (Std)    Started creation of Scheme from XML specification:
29/08/2013 22:03:37 (Std)    ---- CEGUI GUIScheme name: WindowsLookSkin
29/08/2013 22:03:37 (Std)    [ImageManager] Started creation of Imageset from XML specification:
29/08/2013 22:03:37 (Std)    [ImageManager] ---- CEGUI Imageset name: WindowsLook
29/08/2013 22:03:37 (Std)    [ImageManager] ---- Source texture file: WindowsLook.png
29/08/2013 22:03:37 (Std)    [ImageManager] ---- Source texture resource group: (Default)
29/08/2013 22:03:37 (Std)    [OpenGLRenderer] Created texture: WindowsLook
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/Background' (00F4E9A8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/WindowFrameLeft' (00F19E90) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/WindowFrameRight' (00F4D078) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/WindowFrameTop' (00F4D268) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/WindowFrameBottom' (00F4D458) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/WindowFrameTopLeft' (00F4D648) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/WindowFrameTopRight' (00F4D838) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/WindowFrameBottomLeft' (00F4F398) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/WindowFrameBottomRight' (00F4F7B0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonNormalLeft' (00F4FB10) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonNormalRight' (00F4FD00) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonNormalTop' (00F4FE10) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonNormalBottom' (00F50720) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonNormalTopLeft' (00F50830) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonNormalTopRight' (00F50940) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonNormalBottomLeft' (00F50060) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonNormalBottomRight' (00F4FF48) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonPushedLeft' (00F50290) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonPushedRight' (00F50178) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonPushedTop' (00F505D8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonPushedBottom' (00F503A8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonPushedTopLeft' (00F504C0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonPushedTopRight' (00F52568) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonPushedBottomLeft' (00F51DC0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonPushedBottomRight' (00F52450) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonHoverLeft' (00F51500) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonHoverRight' (00F513E8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonHoverTop' (00F51CA8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonHoverBottom' (00F52D10) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonHoverTopLeft' (00F51FF0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonHoverTopRight' (00F52108) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonHoverBottomLeft' (00F52220) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/ButtonHoverBottomRight' (00F528B0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/EditFrameLeft' (00F52E28) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/EditFrameRight' (00F51960) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/EditFrameTop' (00F51B90) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/EditFrameBottom' (00F51618) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/EditFrameTopLeft' (00F52680) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/EditFrameTopRight' (00F51848) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/EditFrameBottomLeft' (00F52798) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/EditFrameBottomRight' (00F51ED8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/StaticFrameLeft' (00F529C8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/StaticFrameRight' (00F52F40) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/StaticFrameTop' (00F53058) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/StaticFrameBottom' (00F52BF8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/StaticFrameTopLeft' (00F52338) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/StaticFrameTopRight' (00F52AE0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/StaticFrameBottomLeft' (00F53170) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/StaticFrameBottomRight' (00F53288) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/CloseButtonNormal' (00F51730) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/CloseButtonHover' (00F51A78) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/CloseButtonPushed' (00F5A038) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TitlebarTopLeft' (00F59660) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TitlebarTopRight' (00F59AC0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TitlebarBottomLeft' (00F59BD8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TitlebarBottomRight' (00F58B70) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TitlebarLeft' (00F58940) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TitlebarRight' (00F59318) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TitlebarTop' (00F585F8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TitlebarBottom' (00F58710) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TitlebarFill' (00F58EB8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/CheckboxNormal' (00F5A150) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/CheckboxHover' (00F5A268) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/CheckboxMark' (00F583C8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/RadioButtonNormal' (00F584E0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/RadioButtonHover' (00F58FD0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/RadioButtonMark' (00F590E8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/SliderThumbNormal' (00F58A58) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/SliderThumbHover' (00F59778) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/SliderTrackLeft' (00F58828) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/SlidertrackMiddle' (00F59200) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/SliderTrackRight' (00F59430) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/SliderTick' (00F59890) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/HeaderMainBrush' (00F59548) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/HeaderBottomEdge' (00F58C88) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/HeaderSplitter' (00F58DA0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/VertScrollbarGrip' (00F599A8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/HorzScrollbarGrip' (00F59CF0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/LargeLeftArrow' (00F59E08) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/LargeRightArrow' (00F59F20) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/LargeUpArrow' (00F5C5F8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/LargeDownArrow' (00F5CB70) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/SmallLeftArrow' (00F5DCF0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/SmallRightArrow' (00F5D0E8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/SmallUpArrow' (00F5C3C8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/SmallDownArrow' (00F5D548) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/EditBoxCaret' (00F5D318) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MouseArrow' (00F5C828) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MouseMoveCursor' (00F5D430) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MouseNoSoCursor' (00F5CC88) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MouseEsWeCursor' (00F5C940) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MouseNeSwCursor' (00F5D660) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MouseNwSeCursor' (00F5C710) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MouseTextBar' (00F5CA58) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabHorizontalTopFiller' (00F5D9A8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabHorizontalBottomFiller' (00F5D778) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabContentPaneUpperLeft' (00F5D890) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabContentPaneTop' (00F5CDA0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabContentPaneUpperRight' (00F5E038) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabContentPaneLeft' (00F5D200) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabContentPaneMiddle' (00F5DAC0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabContentPaneRight' (00F5E268) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabContentPaneLower' (00F5DBD8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabContentPaneLowerLeft' (00F5C4E0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabContentPaneLowerRight' (00F5CFD0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonUpperLeftNormal' (00F5CEB8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonUpperNormal' (00F5DE08) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonUpperRightNormal' (00F5DF20) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonLeftNormal' (00F5E150) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonMiddleNormal' (00F6C2F0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonRightNormal' (00F6D010) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonLowerLeftNormal' (00F6D470) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonLowerNormal' (00F6BA30) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonLowerRightNormal' (00F6D588) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonUpperLeftSelected' (00F6CBB0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonUpperSelected' (00F6C980) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonUpperRightSelected' (00F6BB48) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonLeftSelected' (00F6B6E8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonMiddleSelected' (00F6BD78) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonRightSelected' (00F6BC60) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonLowerLeftSelected' (00F6C520) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonLowerSelected' (00F6C0C0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonLowerRightSelected' (00F6B800) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonScrollLeftNormal' (00F6BE90) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonScrollRightNormal' (00F6B918) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonScrollLeftHover' (00F6C1D8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TabButtonScrollRightHover' (00F6D358) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TooltipTopLeft' (00F6BFA8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TooltipTopRight' (00F6C408) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TooltipBottomLeft' (00F6C638) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TooltipBottomRight' (00F6C750) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TooltipLeftEdge' (00F6C868) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TooltipRightEdge' (00F6CEF8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TooltipTopEdge' (00F6CA98) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TooltipBottomEdge' (00F6D240) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/TooltipMiddle' (00F6CCC8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MenuTopLeft' (00F6CDE0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MenuTopRight' (00F6D128) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MenuBottomLeft' (00F72AF0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MenuBottomRight' (00F73068) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MenuLeft' (00F73B58) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MenuRight' (00F73180) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MenuTop' (00F733B0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MenuBottom' (00F72000) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/PopupMenuFrameTopLeft' (00F72348) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/PopupMenuFrameTopRight' (00F734C8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/PopupMenuFrameBottomLeft' (00F73298) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/PopupMenuFrameBottomRight' (00F72690) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/PopupMenuFrameLeft' (00F71EE8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/PopupMenuFrameRight' (00F735E0) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/PopupMenuFrameTop' (00F736F8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/PopupMenuFrameBottom' (00F73810) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/PopupMenuArrowRight' (00F729D8) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/PopupMenuArrowLeft' (00F73C70) of type: BasicImage
29/08/2013 22:03:37 (Std)    [ImageManager] Created image: 'WindowsLook/MultiListSelectionBrush' (00F72C08) of type: BasicImage
29/08/2013 22:03:37 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
29/08/2013 22:03:37 (Std)    ===== Look and feel parsing completed =====
29/08/2013 22:03:37 (Std)    No window renderer factories specified for module 'CEGUICoreWindowRendererSet' - adding all available factories...
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/Button' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/Button' added. (00F558B0)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/Default' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/Default' added. (00F55018)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/Editbox' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/Editbox' added. (00F550E0)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/FrameWindow' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/FrameWindow' added. (00F54C30)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/ItemEntry' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/ItemEntry' added. (00F55978)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/ListHeader' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/ListHeader' added. (00F55A40)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/ListHeaderSegment' added. (00F54AA0)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/Listbox' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/Listbox' added. (00F54CF8)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/Menubar' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/Menubar' added. (00F554C8)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/MenuItem' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/MenuItem' added. (00F54528)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/MultiColumnList' added. (00F551A8)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/MultiLineEditbox' added. (00F545F0)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/PopupMenu' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/PopupMenu' added. (00F55338)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/ProgressBar' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/ProgressBar' added. (00F546B8)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/ScrollablePane' added. (00F55400)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/Scrollbar' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/Scrollbar' added. (00F54780)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/Slider' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/Slider' added. (00F54848)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/Static' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/Static' added. (00F54B68)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/StaticImage' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/StaticImage' added. (00F55BD0)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/StaticText' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/StaticText' added. (00F55D60)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/TabButton' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/TabButton' added. (00F55E28)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/TabControl' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/TabControl' added. (00F55EF0)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/Titlebar' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/Titlebar' added. (00F55FB8)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/ToggleButton' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/ToggleButton' added. (00F55C98)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/Tooltip' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/Tooltip' added. (00F56080)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/ItemListbox' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/ItemListbox' added. (00F56148)
29/08/2013 22:03:37 (Std)    Created WindowRendererFactory for 'Core/Tree' WindowRenderers.
29/08/2013 22:03:37 (Std)    WindowRendererFactory 'Core/Tree' added. (00F1FB60)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/Label' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'WindowsLook/Label' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/Button' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'WindowsLook/Button' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/Checkbox' using base type 'CEGUI/ToggleButton', window renderer 'Core/ToggleButton' Look'N'Feel 'WindowsLook/Checkbox' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/IconButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'WindowsLook/IconButton' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Core/ToggleButton' Look'N'Feel 'WindowsLook/RadioButton' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Core/FrameWindow' Look'N'Feel 'WindowsLook/FrameWindow' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Core/Titlebar' Look'N'Feel 'WindowsLook/Titlebar' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'WindowsLook/SystemButton' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'WindowsLook/Editbox' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Core/MultiLineEditbox' Look'N'Feel 'WindowsLook/MultiLineEditbox' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Core/Menubar' Look'N'Feel 'WindowsLook/Menubar' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Core/PopupMenu' Look'N'Feel 'WindowsLook/PopupMenu' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Core/MenuItem' Look'N'Feel 'WindowsLook/MenuItem' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'WindowsLook/ProgressBar' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'WindowsLook/VerticalScrollbar' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'WindowsLook/HorizontalScrollbar' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'WindowsLook/VerticalScrollbarThumb' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'WindowsLook/HorizontalScrollbarThumb' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Core/TabButton' Look'N'Feel 'WindowsLook/TabButton' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Core/TabControl' Look'N'Feel 'WindowsLook/TabControl' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'WindowsLook/TabContentPane' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'WindowsLook/TabButtonPane' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Core/Listbox' Look'N'Feel 'WindowsLook/ComboDropList' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Core/Default' Look'N'Feel 'WindowsLook/Combobox' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Core/Listbox' Look'N'Feel 'WindowsLook/Listbox' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Core/ListHeader' Look'N'Feel 'WindowsLook/ListHeader' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Core/ListHeaderSegment' Look'N'Feel 'WindowsLook/ListHeaderSegment' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Core/MultiColumnList' Look'N'Feel 'WindowsLook/MultiColumnList' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/Slider' using base type 'CEGUI/Slider', window renderer 'Core/Slider' Look'N'Feel 'WindowsLook/Slider' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'WindowsLook/SliderThumb' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Core/ScrollablePane' Look'N'Feel 'WindowsLook/ScrollablePane' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Core/Default' Look'N'Feel 'WindowsLook/Spinner' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Core/Tooltip' Look'N'Feel 'WindowsLook/Tooltip' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/Static' using base type 'DefaultWindow', window renderer 'Core/Static' Look'N'Feel 'WindowsLook/Static' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/StaticImage' using base type 'DefaultWindow', window renderer 'Core/StaticImage' Look'N'Feel 'WindowsLook/StaticImage' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/StaticText' using base type 'DefaultWindow', window renderer 'Core/StaticText' Look'N'Feel 'WindowsLook/StaticText' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Core/ItemListbox' Look'N'Feel 'WindowsLook/ItemListbox' and RenderEffect ''. (00C9C4D8)
29/08/2013 22:03:37 (Std)    Creating falagard mapping for type 'WindowsLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Core/ItemEntry' Look'N'Feel 'WindowsLook/ListboxItem' and RenderEffect ''. (00C9C4D8)


Return to “Help”

Who is online

Users browsing this forum: No registered users and 35 guests