[Solved] Programmatically-created Window Is Blank White Box

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

mithryanna
Just popping in
Just popping in
Posts: 13
Joined: Fri Jun 25, 2010 15:00
Location: USA

[Solved] Programmatically-created Window Is Blank White Box

Postby mithryanna » Wed Jun 30, 2010 14:11

This is killing me. We have been working on making our own skin. The parts we have finished are fine. We made a layout and it's loading and displaying fine. I wanted to add some functionality to the GUI, so I put in a button and attached an event to it. When I click the button I want it to create a new window. Well, it is doing that... in a way. Setting the size and position are working for sure... The strange thing is, the "window" is a big white box. That is, the skin is not applying, or maybe it isn't rendering right... I'm really not sure! From what I can tell I've done everything I see in tutorials and guides but for whatever reason my FrameWindow is not displaying properly. Just to make sure it wasn't a problem with our skin I tried using WindowsLook instead (yes, we have that scheme loaded) and I get the same result: blank white box.

where we load fonts and schemes and such, and I am attaching my event to my button. the button itself is in the layout.

Code: Select all

if (!_ceguiInstance->loadScheme("IsLook.scheme") ||
        !_ceguiInstance->loadFont("Agencyr-10.font") ||
        !_ceguiInstance->loadScheme("WindowsLook.scheme") /*TEMP*/ ||
   !_ceguiInstance->loadLayout("IsLook.layout"))
    {
   // TODO: handle error
    }

    CeguiEventCallback* eventCallback = new CeguiEventCallback();
    addEventHandler(eventCallback);
    _ceguiInstance->setEventCallback(eventCallback);

    KeyBindEventCallback* keyBindEventCallback = new KeyBindEventCallback();
    keyBindEventCallback->addKeyBind(osgGA::GUIEventAdapter::KEY_F1, 0, new F1KeyBindFunctor());
    addEventHandler(keyBindEventCallback);

    //Lauren's test of adding an event to crew log button
    CEGUI::WindowManager& winMgr = CEGUI::WindowManager::getSingleton();
    CEGUI::Window* window = winMgr.getWindow("CrewLogButton");
    window->subscribeEvent(CEGUI::PushButton::EventClicked, CEGUI::Event::Subscriber(&UiManager::LaurensTestStuff, this));


the handler function... note that it doesn't check if the window exists already, so clicking the button twice does break the program. not worried about that yet.

Code: Select all

bool UiManager::LaurensTestStuff(const CEGUI::EventArgs& e)
{
    //check if the crew log window already exists
    //if not open, create crew log window and add to ui
    CEGUI::WindowManager& winMgr = CEGUI::WindowManager::getSingleton();
    CEGUI::FrameWindow* crewLog = static_cast<CEGUI::FrameWindow*>(winMgr.createWindow("IsLook/FrameWindow", "crewLogTest"));
    CEGUI::System::getSingleton().getGUISheet()->addChildWindow(crewLog);
    // position a quarter of the way in from the top-left of parent.
    crewLog->setPosition( CEGUI::UVector2( CEGUI::UDim( 0.25f, 0 ), CEGUI::UDim( 0.25f, 0 ) ) );

    // set size to be half the size of the parent
    crewLog->setSize( CEGUI::UVector2( CEGUI::UDim( 0.5f, 0 ), CEGUI::UDim( 0.5f, 0 ) ) );
    crewLog->setTitleBarEnabled(true);
    crewLog->setCloseButtonEnabled(true);
    //crewLog->setAlpha(0.6);
    crewLog->setText("Crew Log");

    return true;
}


It's probably also important to note we're using open scene graph and not ogre. But since we got everything else (from the layout) rendering just fine, that shouldn't be the issue.

Am I just missing something completely obvious here?

EDIT: and the CEGUI log

Code: Select all

30/06/2010 12:20:05 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
30/06/2010 12:20:05 (Std)    +                     Crazy Eddie's GUI System - Event log                    +
30/06/2010 12:20:05 (Std)    +                          (http://www.cegui.org.uk/)                         +
30/06/2010 12:20:05 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

30/06/2010 12:20:05 (Std)    CEGUI::Logger singleton created. (02B05538)
30/06/2010 12:20:05 (Std)    
30/06/2010 12:20:05 (Std)    ********************************************************************************
30/06/2010 12:20:05 (Std)    * Important:                                                                   *
30/06/2010 12:20:05 (Std)    *     To get support at the CEGUI forums, you must post _at least_ the section *
30/06/2010 12:20:05 (Std)    *     of this log file indicated below.  Failure to do this will result in no  *
30/06/2010 12:20:05 (Std)    *     support being given; please do not waste our time.                       *
30/06/2010 12:20:05 (Std)    ********************************************************************************
30/06/2010 12:20:05 (Std)    ********************************************************************************
30/06/2010 12:20:05 (Std)    * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM       -------- *
30/06/2010 12:20:05 (Std)    ********************************************************************************
30/06/2010 12:20:05 (Std)    ---- Version 0.7.1 (Build: Jan 27 2010 Microsoft Windows MSVC++ 8.0 32 bit) ----
30/06/2010 12:20:05 (Std)    ---- Renderer module is: CEGUI::OpenGLRenderer - Official OpenGL based 2nd generation renderer module.  TextureTarget support enabled via FBO extension. ----
30/06/2010 12:20:05 (Std)    ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
30/06/2010 12:20:05 (Std)    ---- Image Codec module is: SILLYImageCodec - Official SILLY based image codec ----
30/06/2010 12:20:05 (Std)    ---- Scripting module is: None ----
30/06/2010 12:20:05 (Std)    ********************************************************************************
30/06/2010 12:20:05 (Std)    * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM         -------- *
30/06/2010 12:20:05 (Std)    ********************************************************************************
30/06/2010 12:20:05 (Std)    
30/06/2010 12:20:05 (Std)    ---- Begining CEGUI System initialisation ----
30/06/2010 12:20:05 (Std)    CEGUI::ImagesetManager singleton created (046E8978)
30/06/2010 12:20:05 (Std)    CEGUI::FontManager singleton created. (046E8C58)
30/06/2010 12:20:05 (Std)    CEGUI::WindowFactoryManager singleton created
30/06/2010 12:20:05 (Std)    CEGUI::WindowManager singleton created (02B06098)
30/06/2010 12:20:05 (Std)    CEGUI::SchemeManager singleton created. (046EA668)
30/06/2010 12:20:05 (Std)    CEGUI::MouseCursor singleton created. (046E91E8)
30/06/2010 12:20:05 (Std)    CEGUI::GlobalEventSet singleton created. (02B060F0)
30/06/2010 12:20:05 (Std)    CEGUI::WidgetLookManager singleton created. (046EA9D0)
30/06/2010 12:20:05 (Std)    CEGUI::WindowRendererManager singleton created (046EA9F8)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'DefaultWindow' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'DefaultWindow' windows added. (046EAE10)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'DragContainer' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'DragContainer' windows added. (046EAF90)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'ScrolledContainer' windows added. (046EB110)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'ClippedContainer' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'ClippedContainer' windows added. (046EB290)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/Checkbox' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/Checkbox' windows added. (046EB410)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (046EB590)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (046EB710)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (046EB898)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (046EBB50)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (046B2020)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (046B20D8)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (046B23A0)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (046B2520)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (046B26A0)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (046B2820)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (046B29A0)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (046B2C38)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (046B2CF0)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (046B2E70)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (046B2FF0)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (046B3170)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (046B32F0)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (046B3470)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (046B35F0)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (046B3770)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (046B38F0)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (046B3A70)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (046B3BF0)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (046B3D70)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (046B3FB0)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (046B4130)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (046B42B0)
30/06/2010 12:20:05 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
30/06/2010 12:20:05 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (046B4430)
30/06/2010 12:20:05 (Std)    Window type alias named 'DefaultGUISheet' added for window type 'DefaultWindow'.
30/06/2010 12:20:05 (Std)    CEGUI::System singleton created. (02B050E0)
30/06/2010 12:20:05 (Std)    ---- CEGUI System initialisation completed ----
30/06/2010 12:20:05 (Std)    
30/06/2010 12:20:05 (Std)    Started creation of Scheme from XML specification:
30/06/2010 12:20:05 (Std)    ---- CEGUI GUIScheme name: IsLook
30/06/2010 12:20:05 (Std)    Started creation of Imageset from XML specification:
30/06/2010 12:20:05 (Std)    ---- CEGUI Imageset name: IsLook
30/06/2010 12:20:05 (Std)    ---- Source texture file: IsLook.tga in resource group: (Default)
30/06/2010 12:20:05 (Std)    Started creation of Imageset from XML specification:
30/06/2010 12:20:05 (Std)    ---- CEGUI Imageset name: IsOverlay
30/06/2010 12:20:05 (Std)    ---- Source texture file: IsOverlay.tga in resource group: (Default)
30/06/2010 12:20:05 (Std)    Started creation of Imageset from XML specification:
30/06/2010 12:20:05 (Std)    ---- CEGUI Imageset name: WindowsLook
30/06/2010 12:20:05 (Std)    ---- Source texture file: WindowsLook.tga in resource group: (Default)
30/06/2010 12:20:05 (Std)    Started creation of Font from XML specification:
30/06/2010 12:20:05 (Std)    ---- CEGUI font name: DejaVuSans-10
30/06/2010 12:20:05 (Std)    ----       Font type: FreeType
30/06/2010 12:20:05 (Std)    ----     Source file: DejaVuSans.ttf in resource group: (Default)
30/06/2010 12:20:05 (Std)    ---- Real point size: 10
30/06/2010 12:20:05 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
30/06/2010 12:20:05 (Std)    ===== Look and feel parsing completed =====
30/06/2010 12:20:05 (Std)    No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/Button' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/Button' added. (0557C258)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/Default' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/Default' added. (046F22F0)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/Editbox' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/Editbox' added. (04714350)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/FrameWindow' added. (05592280)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/ItemEntry' added. (0558FB40)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/ListHeader' added. (04704478)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/ListHeaderSegment' added. (05590B10)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/Listbox' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/Listbox' added. (02A5BAA8)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/Menubar' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/Menubar' added. (046B6DE0)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/MenuItem' added. (02A58FF8)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/MultiColumnList' added. (0557F380)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/MultiLineEditbox' added. (05581878)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/PopupMenu' added. (0559E468)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/ProgressBar' added. (055A3E58)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/ScrollablePane' added. (0556A040)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/Scrollbar' added. (0556A1C0)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/Slider' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/Slider' added. (0470F148)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/Static' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/Static' added. (0470F2C8)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/StaticImage' added. (0470F448)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/StaticText' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/StaticText' added. (0470F5C8)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/SystemButton' added. (0470F748)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/TabButton' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/TabButton' added. (0470F800)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/TabControl' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/TabControl' added. (046EC188)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/Titlebar' added. (046EC308)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/ToggleButton' added. (046EC488)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/Tooltip' added. (046EC608)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/ItemListbox' added. (0559EA70)
30/06/2010 12:20:05 (Std)    Created WindowRendererFactory for 'Falagard/Tree' WindowRenderers.
30/06/2010 12:20:05 (Std)    WindowRendererFactory 'Falagard/Tree' added. (0559EBF0)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' and Look'N'Feel 'IsLook/Button'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' and Look'N'Feel 'IsLook/Checkbox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' and Look'N'Feel 'IsLook/ImageButton'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' and Look'N'Feel 'IsLook/RadioButton'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' and Look'N'Feel 'IsLook/FrameWindow'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' and Look'N'Feel 'IsLook/Titlebar'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' and Look'N'Feel 'IsLook/Button'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' and Look'N'Feel 'IsLook/Editbox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' and Look'N'Feel 'IsLook/MultiLineEditbox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Falagard/Menubar' and Look'N'Feel 'IsLook/Menubar'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Falagard/PopupMenu' and Look'N'Feel 'IsLook/PopupMenu'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Falagard/MenuItem' and Look'N'Feel 'IsLook/MenuItem'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' and Look'N'Feel 'IsLook/AltProgressBar'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' and Look'N'Feel 'IsLook/ProgressBar'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' and Look'N'Feel 'IsLook/VUMeter'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' and Look'N'Feel 'IsLook/VerticalScrollbar'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' and Look'N'Feel 'IsLook/HorizontalScrollbar'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' and Look'N'Feel 'IsLook/VerticalScrollbarThumb'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' and Look'N'Feel 'IsLook/HorizontalScrollbarThumb'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' and Look'N'Feel 'IsLook/LargeVerticalScrollbar'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' and Look'N'Feel 'IsLook/LargeVerticalScrollbarThumb'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' and Look'N'Feel 'IsLook/TabButton'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' and Look'N'Feel 'IsLook/TabControl'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' and Look'N'Feel 'IsLook/TabContentPane'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' and Look'N'Feel 'IsLook/TabButtonPane'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' and Look'N'Feel 'IsLook/ComboDropList'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' and Look'N'Feel 'IsLook/ComboEditbox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' and Look'N'Feel 'IsLook/Combobox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' and Look'N'Feel 'IsLook/Listbox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Falagard/ListHeader' and Look'N'Feel 'IsLook/ListHeader'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Falagard/ListHeaderSegment' and Look'N'Feel 'IsLook/ListHeaderSegment'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' and Look'N'Feel 'IsLook/MultiColumnList'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' and Look'N'Feel 'IsLook/Slider'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' and Look'N'Feel 'IsLook/SliderThumb'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' and Look'N'Feel 'IsLook/ScrollablePane'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Default' and Look'N'Feel 'IsLook/Spinner'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' and Look'N'Feel 'IsLook/Tooltip'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' and Look'N'Feel 'IsLook/StaticImage'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' and Look'N'Feel 'IsLook/StaticText'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Falagard/ItemListbox' and Look'N'Feel 'IsLook/ItemListbox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Falagard/ItemEntry' and Look'N'Feel 'IsLook/ListboxItem'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/GroupBox' using base type 'CEGUI/GroupBox', window renderer 'Falagard/Default' and Look'N'Feel 'IsLook/GroupBox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'IsLook/Tree' using base type 'CEGUI/Tree', window renderer 'Falagard/Tree' and Look'N'Feel 'IsLook/Tree'. (0012DB40)
30/06/2010 12:20:05 (Std)    Started creation of Font from XML specification:
30/06/2010 12:20:05 (Std)    ---- CEGUI font name: Agensyr-10
30/06/2010 12:20:05 (Std)    ----       Font type: FreeType
30/06/2010 12:20:05 (Std)    ----     Source file: Agencyr.ttf in resource group: (Default)
30/06/2010 12:20:05 (Std)    ---- Real point size: 10
30/06/2010 12:20:05 (Std)    Started creation of Scheme from XML specification:
30/06/2010 12:20:05 (Std)    ---- CEGUI GUIScheme name: WindowsLookSkin
30/06/2010 12:20:05 (Std)    Started creation of Imageset from XML specification:
30/06/2010 12:20:05 (Std)    ---- CEGUI Imageset name: WindowsLook
30/06/2010 12:20:05 (Std)    ---- Source texture file: WindowsLook.tga in resource group: (Default)
30/06/2010 12:20:05 (Std)    ---- Returning existing instance of Imageset named 'WindowsLook'.
30/06/2010 12:20:05 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
30/06/2010 12:20:05 (Std)    ===== Look and feel parsing completed =====
30/06/2010 12:20:05 (Std)    No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' and Look'N'Feel 'WindowsLook/Button'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' and Look'N'Feel 'WindowsLook/Checkbox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/IconButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' and Look'N'Feel 'WindowsLook/IconButton'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' and Look'N'Feel 'WindowsLook/RadioButton'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' and Look'N'Feel 'WindowsLook/FrameWindow'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' and Look'N'Feel 'WindowsLook/Titlebar'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' and Look'N'Feel 'WindowsLook/SystemButton'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' and Look'N'Feel 'WindowsLook/Editbox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' and Look'N'Feel 'WindowsLook/MultiLineEditbox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Falagard/Menubar' and Look'N'Feel 'WindowsLook/Menubar'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Falagard/PopupMenu' and Look'N'Feel 'WindowsLook/PopupMenu'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Falagard/MenuItem' and Look'N'Feel 'WindowsLook/MenuItem'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' and Look'N'Feel 'WindowsLook/ProgressBar'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' and Look'N'Feel 'WindowsLook/VerticalScrollbar'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' and Look'N'Feel 'WindowsLook/HorizontalScrollbar'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' and Look'N'Feel 'WindowsLook/VerticalScrollbarThumb'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' and Look'N'Feel 'WindowsLook/HorizontalScrollbarThumb'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' and Look'N'Feel 'WindowsLook/TabButton'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' and Look'N'Feel 'WindowsLook/TabControl'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' and Look'N'Feel 'WindowsLook/TabContentPane'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' and Look'N'Feel 'WindowsLook/TabButtonPane'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' and Look'N'Feel 'WindowsLook/ComboDropList'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' and Look'N'Feel 'WindowsLook/Combobox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' and Look'N'Feel 'WindowsLook/Listbox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Falagard/ListHeader' and Look'N'Feel 'WindowsLook/ListHeader'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Falagard/ListHeaderSegment' and Look'N'Feel 'WindowsLook/ListHeaderSegment'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' and Look'N'Feel 'WindowsLook/MultiColumnList'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' and Look'N'Feel 'WindowsLook/Slider'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' and Look'N'Feel 'WindowsLook/SliderThumb'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' and Look'N'Feel 'WindowsLook/ScrollablePane'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Default' and Look'N'Feel 'WindowsLook/Spinner'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' and Look'N'Feel 'WindowsLook/Tooltip'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/Static' using base type 'DefaultWindow', window renderer 'Falagard/Static' and Look'N'Feel 'WindowsLook/Static'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' and Look'N'Feel 'WindowsLook/StaticImage'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' and Look'N'Feel 'WindowsLook/StaticText'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Falagard/ItemListbox' and Look'N'Feel 'WindowsLook/ItemListbox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Falagard/ItemEntry' and Look'N'Feel 'WindowsLook/ListboxItem'. (0012DB40)
30/06/2010 12:20:05 (Std)    Creating falagard mapping for type 'WindowsLook/GroupBox' using base type 'CEGUI/GroupBox', window renderer 'Falagard/Default' and Look'N'Feel 'WindowsLook/GroupBox'. (0012DB40)
30/06/2010 12:20:05 (Std)    Attempting to create Imageset 'DejaVuSans-10_auto_glyph_images_ ' with texture only.
30/06/2010 12:20:05 (Std)    Attempting to create Imageset 'Agensyr-10_auto_glyph_images_ ' with texture only.
30/06/2010 12:20:05 (Std)    ---- Successfully completed loading of GUI layout from 'IsLook.layout' ----
30/06/2010 12:20:17 (Error)   CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIImageset.cpp(133) : Imageset::getImage - The Image named 'CloseButtonPushed' could not be found in Imageset 'IsLook'.
30/06/2010 12:20:17 (Error)   CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIImageset.cpp(133) : Imageset::getImage - The Image named 'CloseButtonPushed' could not be found in Imageset 'IsLook'.
30/06/2010 12:20:17 (Error)   CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIImageset.cpp(133) : Imageset::getImage - The Image named 'CloseButtonPushed' could not be found in Imageset 'IsLook'.
30/06/2010 12:20:24 (Std)    ---- Begining CEGUI System destruction ----
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/Tree' windows removed. (046B4430)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/Tree' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/Thumb' windows removed. (046B3BF0)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/Thumb' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/Slider' windows removed. (046B35F0)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/Slider' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/Editbox' windows removed. (046B2020)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/Editbox' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/Listbox' windows removed. (046B2520)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/Listbox' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/Menubar' windows removed. (046B29A0)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/Menubar' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/Spinner' windows removed. (046B3770)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/Spinner' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/Tooltip' windows removed. (046B3FB0)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/Tooltip' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'DefaultWindow' windows removed. (046EAE10)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'DefaultWindow' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'DragContainer' windows removed. (046EAF90)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'DragContainer' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/Checkbox' windows removed. (046EB410)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/Checkbox' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/Combobox' windows removed. (046EB898)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/Combobox' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/GroupBox' windows removed. (046B42B0)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/GroupBox' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/MenuItem' windows removed. (046B2CF0)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/MenuItem' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/Titlebar' windows removed. (046B3D70)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/Titlebar' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows removed. (046B23A0)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/ItemEntry' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows removed. (046B2C38)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/PopupMenu' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows removed. (046B3470)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/Scrollbar' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/TabButton' windows removed. (046B38F0)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/TabButton' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/ListHeader' windows removed. (046B26A0)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/ListHeader' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/PushButton' windows removed. (046EB590)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/PushButton' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/TabControl' windows removed. (046B3A70)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/TabControl' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'ClippedContainer' windows removed. (046EB290)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'ClippedContainer' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows removed. (046B20D8)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/FrameWindow' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows removed. (046B4130)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/ItemListbox' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows removed. (046B3170)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/ProgressBar' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/RadioButton' windows removed. (046EB710)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/RadioButton' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'ScrolledContainer' windows removed. (046EB110)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'ScrolledContainer' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows removed. (046EBB50)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/ComboDropList' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows removed. (046B32F0)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/ScrollablePane' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows removed. (046B2E70)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/MultiColumnList' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows removed. (046B2FF0)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/MultiLineEditbox' windows.
30/06/2010 12:20:24 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows removed. (046B2820)
30/06/2010 12:20:24 (Std)    Deleted WindowFactory for 'CEGUI/ListHeaderSegment' windows.
30/06/2010 12:20:24 (Std)    ---- Begining cleanup of GUI Scheme system ----
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/Button' WindowRenderers removed. (0557C258)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/Button' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/Default' WindowRenderers removed. (046F22F0)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/Default' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/Editbox' WindowRenderers removed. (04714350)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/Editbox' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers removed. (05592280)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers removed. (0558FB40)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers removed. (04704478)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers removed. (05590B10)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/Listbox' WindowRenderers removed. (02A5BAA8)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/Listbox' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/Menubar' WindowRenderers removed. (046B6DE0)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/Menubar' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers removed. (02A58FF8)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers removed. (0557F380)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers removed. (05581878)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers removed. (0559E468)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers removed. (055A3E58)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers removed. (0556A040)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers removed. (0556A1C0)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/Slider' WindowRenderers removed. (0470F148)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/Slider' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/Static' WindowRenderers removed. (0470F2C8)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/Static' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers removed. (0470F448)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/StaticText' WindowRenderers removed. (0470F5C8)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/StaticText' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers removed. (0470F748)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/TabButton' WindowRenderers removed. (0470F800)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/TabButton' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/TabControl' WindowRenderers removed. (046EC188)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/TabControl' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers removed. (046EC308)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers removed. (046EC488)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers removed. (046EC608)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers removed. (0559EA70)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers.
30/06/2010 12:20:24 (Std)    WindowRendererFactory for 'Falagard/Tree' WindowRenderers removed. (0559EBF0)
30/06/2010 12:20:24 (Std)    Deleted WindowRendererFactory for 'Falagard/Tree' WindowRenderers.
30/06/2010 12:20:24 (Std)    CEGUI::SchemeManager singleton destroyed. (046EA668)
30/06/2010 12:20:24 (Std)    CEGUI::WindowManager singleton destroyed (02B06098)
30/06/2010 12:20:24 (Std)    CEGUI::WindowFactoryManager singleton destroyed
30/06/2010 12:20:24 (Std)    CEGUI::WidgetLookManager singleton destroyed. (046EA9D0)
30/06/2010 12:20:24 (Std)    CEGUI::WindowRendererManager singleton destroyed (046EA9F8)
30/06/2010 12:20:24 (Std)    ---- Begining cleanup of Font system ----
30/06/2010 12:20:24 (Std)    CEGUI::FontManager singleton destroyed. (046E8C58)
30/06/2010 12:20:24 (Std)    CEGUI::MouseCursor singleton destroyed. (046E91E8)
30/06/2010 12:20:24 (Std)    ---- Begining cleanup of Imageset system ----
30/06/2010 12:20:24 (Std)    CEGUI::ImagesetManager singleton destroyed (046E8978)
30/06/2010 12:20:24 (Std)    CEGUI::GlobalEventSet singleton destroyed. (02B060F0)
30/06/2010 12:20:24 (Std)    CEGUI::System singleton destroyed. (02B050E0)
30/06/2010 12:20:24 (Std)    ---- CEGUI System destruction completed ----
30/06/2010 12:20:24 (Std)    CEGUI::Logger singleton destroyed. (02B05538)
Last edited by mithryanna on Thu Jul 01, 2010 15:04, edited 1 time in total.

Jamarr
CEGUI MVP
CEGUI MVP
Posts: 812
Joined: Tue Jun 03, 2008 23:59
Location: USA

Re: Programmatically-created Window Is A Blank White Box...

Postby Jamarr » Wed Jun 30, 2010 20:14

Hi mithryanna, unfortunately I cannot be of much help with this issue. However, CE should be back on the forums in early July and will probably be able to help you with this.

Typically rendering issues like these are caused by mis-managed or inconsistent state within the Renderer. It could be that when you first load the layout your render state is not corrupt and so the windows in your layout are properly cached to texture. Later on, when creating the new window, your renderer state may now be corrupt at which point caching the new window to texture and/or rendering the window-texture does not produce the desired results. You might try setting the "AutoRenderingSurface" property to "False" for the FrameWindow in your looknfeel (I am sure you can do this programatically, but I am only vaguely familiar with v0.7.1). This should disable texture-caching for all FrameWindows. If this setting has any affect, it almost certainly suggests a mis-managed texture-related render state.

As this issue sounded familiar to me, I did a quick search on the forums for "createWindow" and found this thread. As eluded too in this thread, I think it would be beneficial to load your skin in one of the CEGUI samples to see if you can/not reproduce the issue there. If your window displays correctly, again, it almost certainly suggests a mis-managed rendering state.

I also noticed some exceptions in your error log, "The Image named 'CloseButtonPushed' could not be found in Imageset 'IsLook'". These should be unrelated to the issue you described.
If somebody helps you by replying to your thread, upvote him/her as a thanks! Make sure to include your CEGUI.log and everything you tried when posting! And remember that we are not magicians!

User avatar
CrazyEddie
CEGUI Project Lead
Posts: 6760
Joined: Wed Jan 12, 2005 12:06
Location: England
Contact:

Re: Programmatically-created Window Is A Blank White Box...

Postby CrazyEddie » Thu Jul 01, 2010 09:31

It could be a bug related to detection of supported facilities on the hardware - there were some related issues a while ago. So you might try the updated code - either v0-7 branch or a snapshot release.

Another possibility is the enable the extra state init settings, which can be enabled via CEGUI::OpenGLRenderer::enableExtraStateSettings.

CE.

mithryanna
Just popping in
Just popping in
Posts: 13
Joined: Fri Jun 25, 2010 15:00
Location: USA

Re: Programmatically-created Window Is A Blank White Box...

Postby mithryanna » Thu Jul 01, 2010 14:24

Thanks for the replies, Jamarr and CE! I will try your suggestions and let you know what happens.

mithryanna
Just popping in
Just popping in
Posts: 13
Joined: Fri Jun 25, 2010 15:00
Location: USA

Re: Programmatically-created Window Is A Blank White Box...

Postby mithryanna » Thu Jul 01, 2010 15:03

Jamarr was spot-on.

I tried enabling extra state settings first and didn't see a difference. When I added in the autorendering trick as follows:

Code: Select all

CEGUI::FrameWindow* crewLog = static_cast<CEGUI::FrameWindow*>(winMgr.createWindow("IsLook/FrameWindow", "crewLogTest"));
crewLog->setUsingAutoRenderingSurface(false);
CEGUI::System::getSingleton().getGUISheet()->addChildWindow(crewLog);


the window displayed properly! One of my teammates suggested commenting out that fix and trying something else to confirm a hunch of his:

Code: Select all

is_graphics::GraphicsManager::getInstance()->getViewer()->getCamera()->getGraphicsContext()->makeCurrent();


Added that to the start of the handler function and that also worked. You were right about it being a rendering issue.

Thanks, guys! I appreciate the quick responses. :)


Return to “Help”

Who is online

Users browsing this forum: Bing [Bot] and 3 guests