getting stack overflow in Window::invalidateRenderingSurface

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

sudhakar
Just popping in
Just popping in
Posts: 17
Joined: Wed Dec 21, 2011 16:46

getting stack overflow in Window::invalidateRenderingSurface

Postby sudhakar » Tue Dec 17, 2013 11:22

I am trying to place an editbox to hold hexadecimal values.
when the edit box is clicked a hexadecimal keypad (customized) will pop-up and user can enter values.

But when I tried to set the Text in Edit Box by using the following code it is crashing with stack overfflow exception in CEGUI

codeWindow::invalidateRenderingSurface()



Code: Select all

String temp = ConversionUtils::UINTToHex( miValue, 4, true, true ) ;

//code causing the crash

Code: Select all

mpValueEdit->setText( ConvertToUtf8(temp) ) ;



Unhandled exception at 0x57fff609 (CEGUIBase_d.dll) in Launcher.exe: 0xC00000FD: Stack overflow.

Please let me know what could be the reason.


I am attaching the CEGUI.log .

Code: Select all

void Window::invalidateRenderingSurface()
{
    // invalidate our surface chain if we have one
    if (d_surface)
        d_surface->invalidate();
    // else look through the hierarchy for a surface chain to invalidate.
    else if (d_parent)
        d_parent->invalidateRenderingSurface();
}


call stack:


> CEGUIBase_d.dll!CEGUI::Window::invalidateRenderingSurface() Line 3537 C++
CEGUIBase_d.dll!CEGUI::Window::invalidateRenderingSurface() Line 3542 C++
CEGUIBase_d.dll!CEGUI::Window::invalidateRenderingSurface() Line 3542 C++
CEGUIBase_d.dll!CEGUI::Window::invalidateRenderingSurface() Line 3542 C++
CEGUIBase_d.dll!CEGUI::Window::invalidateRenderingSurface() Line 3542 C++
CEGUIBase_d.dll!CEGUI::Window::invalidateRenderingSurface() Line 3542 C++
CEGUIBase_d.dll!CEGUI::Window::invalidateRenderingSurface() Line 3542 C++
CEGUIBase_d.dll!CEGUI::Window::invalidate_impl(const bool recursive) Line 1178 C++
CEGUIBase_d.dll!CEGUI::Window::invalidate(const bool recursive) Line 1169 C++
CEGUIBase_d.dll!CEGUI::Window::invalidate() Line 1163 C++
CEGUIBase_d.dll!CEGUI::Window::onTextChanged(CEGUI::WindowEventArgs & e) Line 2560 C++
CEGUIBase_d.dll!CEGUI::Editbox::onTextChanged(CEGUI::WindowEventArgs & e) Line 835 C++
CEGUIBase_d.dll!CEGUI::Window::setText(const CEGUI::String & text) Line 880 + 0x13 bytes

C++
Control.dll!GUIWindow::HandleEditValueChanged(const

CEGUI::EventArgs & arEvent) Line 255 + 0x41 bytes C++
=========================================

My code:

Code: Select all

GDBOOL GUIWindow::HandleEditValueChanged( const CEGUI::EventArgs & arEvent )
{
   if( mbValueChangePending )
   {   
      miValue = static_cast<UINT32>(
                  ConversionUtils::StringToUINT64(mpValueEdit->getText().c_str(), 16 ) ) ;      

      miValue &= 0xFFFF;
      GDString temp = ConversionUtils::UINTToHex( miSeedValue   , 4, true, true ) ;
            
      mpValueEdit->setText( ConvertToUtf8(temp) ) ;

      mbValueChangePending   = false ;
   }
   return true ;
}


=========
[b]before my code in derived class the keyboard is transferring the data to Editbox as follows. But when I am trying to set the text again in edit box it is giving the exception.

Code: Select all

GDBOOL Keyboard::TransferData()[/b]
{
   if ( (mpEditbox != NULL))
    {
      
      GDString sData = GetData();
      mpEditbox->setText(ConvertToUtf8(sData));
      mpEditbox->setCaratIndex(sData.length());
      return true;
   }
   return false;
}


======

CEGUI.log:
================

Code: Select all

13/12/2013 16:20:49 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
13/12/2013 16:20:49 (Std)    +                     Crazy Eddie's GUI System - Event log                    +
13/12/2013 16:20:49 (Std)    +                          (http://www.cegui.org.uk/)                         +
13/12/2013 16:20:49 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

13/12/2013 16:20:49 (Std)    CEGUI::Logger singleton created. (1C148280)
13/12/2013 16:20:49 (Std)    
13/12/2013 16:20:49 (Std)    ********************************************************************************
13/12/2013 16:20:49 (Std)    * Important:                                                                   *
13/12/2013 16:20:49 (Std)    *     To get support at the CEGUI forums, you must post _at least_ the section *
13/12/2013 16:20:49 (Std)    *     of this log file indicated below.  Failure to do this will result in no  *
13/12/2013 16:20:49 (Std)    *     support being given; please do not waste our time.                       *
13/12/2013 16:20:49 (Std)    ********************************************************************************
13/12/2013 16:20:49 (Std)    ********************************************************************************
13/12/2013 16:20:49 (Std)    * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM       -------- *
13/12/2013 16:20:49 (Std)    ********************************************************************************
13/12/2013 16:20:49 (Std)    ---- Version 0.7.2 (Build: Feb 22 2013 Debug Microsoft Windows MSVC++ 10.0 32 bit) ----
13/12/2013 16:20:49 (Std)    ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ----
13/12/2013 16:20:49 (Std)    ---- XML Parser module is: CEGUI::TinyXMLParser - Official tinyXML based parser module for CEGUI ----
13/12/2013 16:20:49 (Std)    ---- Image Codec module is: TGAImageCodec - Official TGA image codec ----
13/12/2013 16:20:49 (Std)    ---- Scripting module is: None ----
13/12/2013 16:20:49 (Std)    ********************************************************************************
13/12/2013 16:20:49 (Std)    * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM         -------- *
13/12/2013 16:20:49 (Std)    ********************************************************************************
13/12/2013 16:20:49 (Std)    
13/12/2013 16:20:49 (Std)    ---- Begining CEGUI System initialisation ----
13/12/2013 16:20:49 (Std)    CEGUI::ImagesetManager singleton created (267DC7D0)
13/12/2013 16:20:49 (Std)    CEGUI::FontManager singleton created. (267DCDA8)
13/12/2013 16:20:49 (Std)    CEGUI::WindowFactoryManager singleton created
13/12/2013 16:20:49 (Std)    CEGUI::WindowManager singleton created (23C8DCD0)
13/12/2013 16:20:49 (Std)    CEGUI::SchemeManager singleton created. (23C8E110)
13/12/2013 16:20:49 (Std)    CEGUI::MouseCursor singleton created. (1C156998)
13/12/2013 16:20:49 (Std)    CEGUI::GlobalEventSet singleton created. (216F03E8)
13/12/2013 16:20:49 (Std)    CEGUI::AnimationManager singleton created (1C148480)
13/12/2013 16:20:49 (Std)    CEGUI::WidgetLookManager singleton created. (223966E8)
13/12/2013 16:20:49 (Std)    CEGUI::WindowRendererManager singleton created (216EFF68)
13/12/2013 16:20:49 (Std)    CEGUI::RenderEffectManager singleton created (1FFE1C98)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'DefaultWindow' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'DefaultWindow' windows added. (240CFB20)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'DragContainer' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'DragContainer' windows added. (21A0F958)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'ScrolledContainer' windows added. (21A0F828)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'ClippedContainer' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'ClippedContainer' windows added. (21A0FEA0)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/Checkbox' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/Checkbox' windows added. (21A0FC20)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (22131548)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (22131708)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (221318C8)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (22131A88)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (240DEC80)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (240DEE40)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (240DF000)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (240DF1C0)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (240DF380)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (23A02898)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (23A02B28)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (23A02CE8)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (23A02EA8)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (1C610170)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (1C610330)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (1C6104F0)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (1C6106B0)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (0CBD93B8)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (0CBD9578)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (0CBD9738)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (0CBD98F8)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (0CBD9AB8)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (223C5698)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (223C5858)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (223C5A18)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (223C5BD8)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (223C5D98)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (243CF698)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'HorizontalLayoutContainer' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows added. (243CF858)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'VerticalLayoutContainer' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'VerticalLayoutContainer' windows added. (243CFA18)
13/12/2013 16:20:49 (Std)    Created WindowFactory for 'GridLayoutContainer' windows.
13/12/2013 16:20:49 (Std)    WindowFactory for 'GridLayoutContainer' windows added. (243CFBD8)
13/12/2013 16:20:49 (Std)    Window type alias named 'DefaultGUISheet' added for window type 'DefaultWindow'.
13/12/2013 16:20:49 (Std)    CEGUI::System singleton created. (1FFE1E80)
13/12/2013 16:20:49 (Std)    ---- CEGUI System initialisation completed ----
13/12/2013 16:20:49 (Std)    
13/12/2013 16:20:49 (Std)    Started creation of Scheme from XML specification:
13/12/2013 16:20:49 (Std)    ---- CEGUI GUIScheme name: WindowsLookSkin
13/12/2013 16:20:49 (Std)    Started creation of Imageset from XML specification:
13/12/2013 16:20:49 (Std)    ---- CEGUI Imageset name: WindowsLook
13/12/2013 16:20:49 (Std)    ---- Source texture file: WindowsLook.tga in resource group: (Default)
13/12/2013 16:20:50 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
13/12/2013 16:20:50 (Std)    ===== Look and feel parsing completed =====
13/12/2013 16:20:50 (Std)    No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/Button' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/Button' added. (216F7918)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/Default' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/Default' added. (1FFD4E20)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/Editbox' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/Editbox' added. (1C7A9490)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/FrameWindow' added. (240DB618)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/ItemEntry' added. (23C8A0A0)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/ListHeader' added. (21AC0B08)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/ListHeaderSegment' added. (1C7C9720)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/Listbox' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/Listbox' added. (1F544028)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/Menubar' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/Menubar' added. (23FF3698)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/MenuItem' added. (20001678)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/MultiColumnList' added. (1F5EF6F0)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/MultiLineEditbox' added. (223BD038)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/PopupMenu' added. (1C2DE868)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/ProgressBar' added. (0CCD4720)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/ScrollablePane' added. (1F5E1498)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/Scrollbar' added. (1FFCA8B8)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/Slider' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/Slider' added. (1FFCA990)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/Static' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/Static' added. (20000938)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/StaticImage' added. (26ED6110)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/StaticText' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/StaticText' added. (1F9E0038)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/SystemButton' added. (1C7A2050)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/TabButton' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/TabButton' added. (1C7A2210)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/TabControl' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/TabControl' added. (1F5EE6E0)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/Titlebar' added. (1FCD7DE8)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/ToggleButton' added. (1FCD7FA8)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/Tooltip' added. (1C148630)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/ItemListbox' added. (1F5E76C8)
13/12/2013 16:20:50 (Std)    Created WindowRendererFactory for 'Falagard/Tree' WindowRenderers.
13/12/2013 16:20:50 (Std)    WindowRendererFactory 'Falagard/Tree' added. (1F5E7888)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/Button' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WindowsLook/Checkbox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/IconButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/IconButton' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WindowsLook/RadioButton' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'WindowsLook/FrameWindow' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'WindowsLook/Titlebar' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/SystemButton' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'WindowsLook/Editbox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' Look'N'Feel 'WindowsLook/MultiLineEditbox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Falagard/Menubar' Look'N'Feel 'WindowsLook/Menubar' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Falagard/PopupMenu' Look'N'Feel 'WindowsLook/PopupMenu' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Falagard/MenuItem' Look'N'Feel 'WindowsLook/MenuItem' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'WindowsLook/ProgressBar' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'WindowsLook/VerticalScrollbar' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'WindowsLook/HorizontalScrollbar' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/VerticalScrollbarThumb' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/HorizontalScrollbarThumb' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' Look'N'Feel 'WindowsLook/TabButton' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' Look'N'Feel 'WindowsLook/TabControl' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/TabContentPane' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/TabButtonPane' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'WindowsLook/ComboDropList' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/Combobox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' Look'N'Feel 'WindowsLook/Listbox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Falagard/ListHeader' Look'N'Feel 'WindowsLook/ListHeader' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Falagard/ListHeaderSegment' Look'N'Feel 'WindowsLook/ListHeaderSegment' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' Look'N'Feel 'WindowsLook/MultiColumnList' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'WindowsLook/Slider' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/SliderThumb' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' Look'N'Feel 'WindowsLook/ScrollablePane' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/Spinner' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' Look'N'Feel 'WindowsLook/Tooltip' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/Static' using base type 'DefaultWindow', window renderer 'Falagard/Static' Look'N'Feel 'WindowsLook/Static' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'WindowsLook/StaticImage' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' Look'N'Feel 'WindowsLook/StaticText' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Falagard/ItemListbox' Look'N'Feel 'WindowsLook/ItemListbox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Falagard/ItemEntry' Look'N'Feel 'WindowsLook/ListboxItem' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Creating falagard mapping for type 'WindowsLook/GroupBox' using base type 'CEGUI/GroupBox', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/GroupBox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:50 (Std)    Started creation of Scheme from XML specification:
13/12/2013 16:20:50 (Std)    ---- CEGUI GUIScheme name: SpieloLookSkin
13/12/2013 16:20:50 (Std)    Started creation of Imageset from XML specification:
13/12/2013 16:20:50 (Std)    ---- CEGUI Imageset name: SpieloLook
13/12/2013 16:20:50 (Std)    ---- Source texture file: SpieloLook.tga in resource group: (Default)
13/12/2013 16:20:51 (Std)    Started creation of Imageset from XML specification:
13/12/2013 16:20:51 (Std)    ---- CEGUI Imageset name: NewSpielo
13/12/2013 16:20:51 (Std)    ---- Source texture file: new_spielo.tga in resource group: (Default)
13/12/2013 16:20:51 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
13/12/2013 16:20:52 (Std)    ===== Look and feel parsing completed =====
13/12/2013 16:20:52 (Std)    No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'SpieloLook/Button' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'SpieloLook/Checkbox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/IconButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'SpieloLook/IconButton' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'SpieloLook/RadioButton' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'SpieloLook/FrameWindow' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'SpieloLook/Titlebar' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/CloseButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/SystemButton' Look'N'Feel 'SpieloLook/CloseButton' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'SpieloLook/Editbox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' Look'N'Feel 'SpieloLook/MultiLineEditbox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Falagard/Menubar' Look'N'Feel 'SpieloLook/Menubar' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Falagard/PopupMenu' Look'N'Feel 'SpieloLook/PopupMenu' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Falagard/MenuItem' Look'N'Feel 'SpieloLook/MenuItem' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'SpieloLook/ProgressBar' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'SpieloLook/VerticalScrollbar' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/VerticalScrollbarWithLine' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'SpieloLook/VerticalScrollbarWithLine' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'SpieloLook/HorizontalScrollbar' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'SpieloLook/VerticalScrollbarThumb' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'SpieloLook/HorizontalScrollbarThumb' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' Look'N'Feel 'SpieloLook/TabButton' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' Look'N'Feel 'SpieloLook/TabControl' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'SpieloLook/TabContentPane' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'SpieloLook/TabButtonPane' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'SpieloLook/ComboDropList' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'SpieloLook/Combobox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' Look'N'Feel 'SpieloLook/Listbox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Falagard/ListHeader' Look'N'Feel 'SpieloLook/ListHeader' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Falagard/ListHeaderSegment' Look'N'Feel 'SpieloLook/ListHeaderSegment' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' Look'N'Feel 'SpieloLook/MultiColumnList' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/MultiColumnListNoTitle' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' Look'N'Feel 'SpieloLook/MultiColumnListNoTitle' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'SpieloLook/Slider' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/SliderThumb' using base type 'CEGUI/SliderThumb', window renderer 'Falagard/Button' Look'N'Feel 'SpieloLook/SliderThumb' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' Look'N'Feel 'SpieloLook/ScrollablePane' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Default' Look'N'Feel 'SpieloLook/Spinner' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' Look'N'Feel 'SpieloLook/Tooltip' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/Static' using base type 'DefaultWindow', window renderer 'Falagard/Static' Look'N'Feel 'SpieloLook/Static' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'SpieloLook/StaticImage' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' Look'N'Feel 'SpieloLook/StaticText' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Falagard/ItemListbox' Look'N'Feel 'SpieloLook/ItemListbox' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Creating falagard mapping for type 'SpieloLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Falagard/ItemEntry' Look'N'Feel 'SpieloLook/ListboxItem' and RenderEffect ''. (044992D4)
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: ArialNB-10
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: ARIALNB.TTF in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 10
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: ArialNB-12
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: ARIALNB.TTF in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 12
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: ArialNB-14
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: ARIALNB.TTF in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 14
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: Sans-10
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: FreeSansBold.ttf in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 10
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: Sans-12
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: FreeSansBold.ttf in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 12
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: Sans-14
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: FreeSansBold.ttf in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 14
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: Sans-16
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: FreeSansBold.ttf in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 16
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: Sans-18
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: FreeSansBold.ttf in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 18
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: SansBold-10
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: FreeSansBold.ttf in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 10
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: SansBold-12
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: FreeSansBold.ttf in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 12
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: SansBold-14
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: FreeSansBold.ttf in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 14
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: SansBold-16
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: FreeSansBold.ttf in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 16
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: SansBold-18
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: FreeSansBold.ttf in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 18
13/12/2013 16:20:52 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:52 (Std)    ---- CEGUI font name: Mono-8
13/12/2013 16:20:52 (Std)    ----       Font type: FreeType
13/12/2013 16:20:52 (Std)    ----     Source file: FreeMono.ttf in resource group: (Default)
13/12/2013 16:20:52 (Std)    ---- Real point size: 8
13/12/2013 16:20:53 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:53 (Std)    ---- CEGUI font name: Mono-9
13/12/2013 16:20:53 (Std)    ----       Font type: FreeType
13/12/2013 16:20:53 (Std)    ----     Source file: FreeMono.ttf in resource group: (Default)
13/12/2013 16:20:53 (Std)    ---- Real point size: 9
13/12/2013 16:20:53 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:53 (Std)    ---- CEGUI font name: Mono-10
13/12/2013 16:20:53 (Std)    ----       Font type: FreeType
13/12/2013 16:20:53 (Std)    ----     Source file: FreeMono.ttf in resource group: (Default)
13/12/2013 16:20:53 (Std)    ---- Real point size: 10
13/12/2013 16:20:53 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:53 (Std)    ---- CEGUI font name: Mono-12
13/12/2013 16:20:53 (Std)    ----       Font type: FreeType
13/12/2013 16:20:53 (Std)    ----     Source file: FreeMono.ttf in resource group: (Default)
13/12/2013 16:20:53 (Std)    ---- Real point size: 12
13/12/2013 16:20:53 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:53 (Std)    ---- CEGUI font name: Mono-16
13/12/2013 16:20:53 (Std)    ----       Font type: FreeType
13/12/2013 16:20:53 (Std)    ----     Source file: FreeMono.ttf in resource group: (Default)
13/12/2013 16:20:53 (Std)    ---- Real point size: 16
13/12/2013 16:20:53 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:53 (Std)    ---- CEGUI font name: MonoBold-10
13/12/2013 16:20:53 (Std)    ----       Font type: FreeType
13/12/2013 16:20:53 (Std)    ----     Source file: FreeMonoBold.ttf in resource group: (Default)
13/12/2013 16:20:53 (Std)    ---- Real point size: 10
13/12/2013 16:20:54 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:54 (Std)    ---- CEGUI font name: MonoBold-12
13/12/2013 16:20:54 (Std)    ----       Font type: FreeType
13/12/2013 16:20:54 (Std)    ----     Source file: FreeMonoBold.ttf in resource group: (Default)
13/12/2013 16:20:54 (Std)    ---- Real point size: 12
13/12/2013 16:20:54 (Std)    Started creation of Font from XML specification:
13/12/2013 16:20:54 (Std)    ---- CEGUI font name: DejaVuSans-10
13/12/2013 16:20:54 (Std)    ----       Font type: FreeType
13/12/2013 16:20:54 (Std)    ----     Source file: DejaVuSans.ttf in resource group: (Default)
13/12/2013 16:20:54 (Std)    ---- Real point size: 10
13/12/2013 16:20:54 (Std)    Attempting to create Imageset 'Sans-10_auto_glyph_images_
' with texture only.
13/12/2013 16:20:55 (Std)    Attempting to create Imageset 'SansBold-18_auto_glyph_images_
' with texture only.
13/12/2013 16:20:55 (Std)    ---- Successfully completed loading of GUI layout from 'CasinoBackOfficeMainScreen.xml' ----
13/12/2013 16:20:55 (Std)    Attempting to create Imageset 'ArialNB-10_auto_glyph_images_ ' with texture only.
13/12/2013 16:20:55 (Std)    Attempting to create Imageset 'ArialNB-12_auto_glyph_images_ ' with texture only.
13/12/2013 16:20:55 (Std)    Attempting to create Imageset 'ArialNB-12_auto_glyph_images_ÿ' with texture only.
13/12/2013 16:20:56 (Std)    Attempting to create Imageset 'ArialNB-14_auto_glyph_images_ ' with texture only.
13/12/2013 16:20:56 (Std)    ---- Successfully completed loading of GUI layout from 'gamingMachineTab-Info.xml' ----
13/12/2013 16:20:56 (Std)    Attempting to create Imageset 'Mono-10_auto_glyph_images_
' with texture only.
13/12/2013 16:20:57 (Std)    Attempting to create Imageset 'MonoBold-10_auto_glyph_images_
' with texture only.
13/12/2013 16:20:58 (Std)    ---- Successfully completed loading of GUI layout from 'TestTab-TouchScreenPopup.xml' ----
13/12/2013 16:20:58 (Std)    Attempting to create Imageset 'Sans-14_auto_glyph_images_
' with texture only.
13/12/2013 16:20:59 (Std)    ---- Successfully completed loading of GUI layout from 'TabControl-LeftArrow.xml' ----
13/12/2013 16:21:00 (Std)    ---- Successfully completed loading of GUI layout from 'TabControl-RightArrow.xml' ----
13/12/2013 16:21:01 (Std)    ---- Successfully completed loading of GUI layout from 'TabControl-LeftArrow.xml' ----
13/12/2013 16:21:01 (Std)    ---- Successfully completed loading of GUI layout from 'TabControl-RightArrow.xml' ----
13/12/2013 16:21:02 (Std)    ---- Successfully completed loading of GUI layout from 'TabControl-LeftArrow.xml' ----
13/12/2013 16:21:02 (Std)    ---- Successfully completed loading of GUI layout from 'TabControl-RightArrow.xml' ----
13/12/2013 16:21:08 (Std)    Attempting to create Imageset 'Sans-12_auto_glyph_images_
' with texture only.
13/12/2013 16:21:08 (Std)    Attempting to create Imageset 'Sans-12_auto_glyph_images_ü' with texture only.
13/12/2013 16:21:11 (Std)    ---- Successfully completed loading of GUI layout from 'CasinoOptionsTab-Volume.xml' ----
13/12/2013 16:21:11 (Std)    Attempting to create Imageset 'Mono-12_auto_glyph_images_
' with texture only.
13/12/2013 16:21:17 (Std)    ---- Successfully completed loading of GUI layout from 'OptionsTab-ComponentChecksum.xml' ----
13/12/2013 16:21:24 (Std)    ---- Successfully completed loading of GUI layout from 'HexadecimalKeypad.xml' ----

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

Re: getting stack overflow in Window::invalidateRenderingSur

Postby Kulik » Tue Dec 17, 2013 16:08

Hi, this looks like a bug. However, could you update to our latest 0.7.x release to make sure this hasn't been fixed already?

It is not worth it for us to debug problems in old versions when there are newer versions around. 0.7.2 is very old.

http://cegui.org.uk/download/cegui-079

sudhakar
Just popping in
Just popping in
Posts: 17
Joined: Wed Dec 21, 2011 16:46

Re: getting stack overflow in Window::invalidateRenderingSur

Postby sudhakar » Wed Dec 18, 2013 07:34

currently we are using (in our comany) CEGUI 0.7.2 only. it seems we have have not adapted to latest version. hence i am not sure how to adapt new CEGUI release and i need to wait for that till the entire team use latest version.

My question is it seems mpEdiBox->setText(...) is working in some places of the code. and in my case it is not working here as i showed in the code.
what could be the reason ?

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

Re: getting stack overflow in Window::invalidateRenderingSur

Postby Kulik » Wed Dec 18, 2013 15:32

0.7.9 is API compatible, you should not have any major problems migrating.

It is likely that this has been fixed. I would have to go through the changelog to be sure. I really don't want to install an archaic CEGUI version here locally and try to debug this.


Return to “Help”

Who is online

Users browsing this forum: No registered users and 9 guests