[Solved] How to remove own managed ListboxTextItem from MCL

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

Oam
Not too shy to talk
Not too shy to talk
Posts: 23
Joined: Thu Nov 13, 2014 07:01

[Solved] How to remove own managed ListboxTextItem from MCL

Postby Oam » Sat Aug 01, 2015 12:18

Hello,

I'm utilizing the Multi Column List (MCL) with std::shared_ptr<CEGUI::ListboxTextItem> for being able to manage my own memory pieces, I've set the auto_delete = false. I'm currently simply attempting to just remove and clear my MCL.

I first tried to do a:

Code: Select all

MCL->resetList()
but that didn't remove anything from my MCL, now I'm trying:

Code: Select all

for (unsigned j = 0; j < gamesList->getRowCount(); ++j)
  {
    gamesList->removeRow(gamesList->getRowID(j));
  }


and likewise, that isn't removing anything from my MCL of ListboxTextItem that have auto_delete = false. (I haven't tried it yet setting auto_delete = true), however I would prefer to manage my own object.

Thank you for any insight.
Last edited by Oam on Tue Aug 04, 2015 13:45, edited 3 times in total.

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

Re: How to remove own managed ListboxTextItem from MCL

Postby Ident » Sat Aug 01, 2015 16:50

Can you reproduce this in the SampleBrowser for example by editing the HelloWorld demo? If not can you give us a code snippet that would create an MLC the way you want it to be created and resets the list afterwards, leading to the uwnanted result you get?

In short: we need a repro.
I looked at Demo6 which includes the MLC and also looked at code and can't find anything wrong.
CrazyEddie: "I don't like GUIs"

Oam
Not too shy to talk
Not too shy to talk
Posts: 23
Joined: Thu Nov 13, 2014 07:01

Re: How to remove own managed ListboxTextItem from MCL

Postby Oam » Sun Aug 02, 2015 02:58

Thank you for the insight and suggestion to try it out in the HelloWorld demo. Turns out I was just forgetting to clear one of my vectors, so it was technically clearing it, but the data was still there upon the re-addition of the refresh on my MCL.

Here was my test code for the HelloWorld.

HelloWorld.h

Code: Select all

/***********************************************************************
    created:    11/8/2012
    author:     Lukas E Meindl
*************************************************************************/
/***************************************************************************
 *   Copyright (C) 2004 - 2012 Paul D Turner & The CEGUI Development Team
 *
 *   Permission is hereby granted, free of charge, to any person obtaining
 *   a copy of this software and associated documentation files (the
 *   "Software"), to deal in the Software without restriction, including
 *   without limitation the rights to use, copy, modify, merge, publish,
 *   distribute, sublicense, and/or sell copies of the Software, and to
 *   permit persons to whom the Software is furnished to do so, subject to
 *   the following conditions:
 *
 *   The above copyright notice and this permission notice shall be
 *   included in all copies or substantial portions of the Software.
 *
 *   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 *   IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
 *   OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 *   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 *   OTHER DEALINGS IN THE SOFTWARE.
 ***************************************************************************/
#ifndef _Sample_Hello_World_h_
#define _Sample_Hello_World_h_

#include "SampleBase.h"
#include <vector>
#include <memory> /* std::shared_ptr */

namespace CEGUI
{
    class Window;
    class DefaultWindow;
    class ListboxTextItem;
    class MultiColumnList;
}

class HelloWorldDemo : public Sample
{
public:
    virtual bool initialise(CEGUI::GUIContext* guiContext);
    virtual void deinitialise();

private:
    bool handleHelloWorldClicked(const CEGUI::EventArgs& args);
    bool handleAddButtonClicked(const CEGUI::EventArgs& args);
    bool handleClearButtonClicked(const CEGUI::EventArgs& args);
    void GenerateAndSetListItem();

    CEGUI::DefaultWindow*      d_root;
    CEGUI::MultiColumnList* gamesList;
    unsigned listSize;
    std::vector<std::shared_ptr<CEGUI::ListboxTextItem> > currentListItems;
};

#endif  // end of guard _Sample_FirstWindow_h_


HelloWorld.cpp

Code: Select all

/***********************************************************************
    created:    11/8/2012
    author:     Lukas E Meindl
*************************************************************************/
/***************************************************************************
 *   Copyright (C) 2004 - 2012 Paul D Turner & The CEGUI Development Team
 *
 *   Permission is hereby granted, free of charge, to any person obtaining
 *   a copy of this software and associated documentation files (the
 *   "Software"), to deal in the Software without restriction, including
 *   without limitation the rights to use, copy, modify, merge, publish,
 *   distribute, sublicense, and/or sell copies of the Software, and to
 *   permit persons to whom the Software is furnished to do so, subject to
 *   the following conditions:
 *
 *   The above copyright notice and this permission notice shall be
 *   included in all copies or substantial portions of the Software.
 *
 *   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 *   IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
 *   OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 *   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 *   OTHER DEALINGS IN THE SOFTWARE.
 ***************************************************************************/
#include "HelloWorld.h"
#include "CEGUI/CEGUI.h"

#include <iostream>


/*************************************************************************
    Sample specific initialisation goes here.
*************************************************************************/
bool HelloWorldDemo::initialise(CEGUI::GUIContext* guiContext)
{
    using namespace CEGUI;

     d_usedFiles = CEGUI::String(__FILE__);

    // CEGUI relies on various systems being set-up, so this is what we do
    // here first.
    //
    // The first thing to do is load a CEGUI 'scheme' this is basically a file
    // that groups all the required resources and definitions for a particular
    // skin so they can be loaded / initialised easily
    //
    // So, we use the SchemeManager singleton to load in a scheme that loads the
    // imagery and registers widgets for the TaharezLook skin.  This scheme also
    // loads in a font that gets used as the system default.
    SchemeManager::getSingleton().createFromFile("TaharezLook.scheme");

    // The next thing we do is to set a default mouse cursor image.  This is
    // not strictly essential, although it is nice to always have a visible
    // cursor if a window or widget does not explicitly set one of its own.
    //
    // The TaharezLook Imageset contains an Image named "MouseArrow" which is
    // the ideal thing to have as a defult mouse cursor image.
    guiContext->getMouseCursor().setDefaultImage("TaharezLook/MouseArrow");

    // Now the system is initialised, we can actually create some UI elements, for
    // this first example, a full-screen 'root' window is set as the active GUI
    // sheet, and then a simple frame window will be created and attached to it.

    // All windows and widgets are created via the WindowManager singleton.
    WindowManager& winMgr = WindowManager::getSingleton();

    // Here we create a "DefaultWindow".  This is a native type, that is, it does
    // not have to be loaded via a scheme, it is always available.  One common use
    // for the DefaultWindow is as a generic container for other windows.  Its
    // size defaults to 1.0f x 1.0f using the Relative metrics mode, which means
    // when it is set as the root GUI sheet window, it will cover the entire display.
    // The DefaultWindow does not perform any rendering of its own, so is invisible.
    //
    // Create a DefaultWindow called 'Root'.
    d_root = (DefaultWindow*)winMgr.createWindow("DefaultWindow", "Root");

    // load font and setup default if not loaded via scheme
    Font& defaultFont = FontManager::getSingleton().createFromFile("DejaVuSans-12.font");
    // Set default font for the gui context
    guiContext->setDefaultFont(&defaultFont);

    // Set the root window as root of our GUI Context
    guiContext->setRootWindow(d_root);

    // A FrameWindow is a window with a frame and a titlebar which may be moved around
    // and resized.
    //
    // Create a FrameWindow in the TaharezLook style, and name it 'Demo Window'
    FrameWindow* wnd = (FrameWindow*)winMgr.createWindow("TaharezLook/FrameWindow", "Demo Window");

    // Here we attach the newly created FrameWindow to the previously created
    // DefaultWindow which we will be using as the root of the displayed gui.
    d_root->addChild(wnd);

    // Windows are in Relative metrics mode by default.  This means that we can
    // specify sizes and positions without having to know the exact pixel size
    // of the elements in advance.  The relative metrics mode co-ordinates are
    // relative to the parent of the window where the co-ordinates are being set.
    // This means that if 0.5f is specified as the width for a window, that window
    // will be half as its parent window.
    //
    // Here we set the FrameWindow so that it is half the size of the display,
    // and centered within the display.
    wnd->setPosition(UVector2(cegui_reldim(0.25f), cegui_reldim( 0.25f)));
    wnd->setSize(USize(cegui_reldim(0.5f), cegui_reldim( 0.5f)));

    // now we set the maximum and minum sizes for the new window.  These are
    // specified using relative co-ordinates, but the important thing to note
    // is that these settings are aways relative to the display rather than the
    // parent window.
    //
    // here we set a maximum size for the FrameWindow which is equal to the size
    // of the display, and a minimum size of one tenth of the display.
    wnd->setMaxSize(USize(cegui_reldim(1.0f), cegui_reldim( 1.0f)));
    wnd->setMinSize(USize(cegui_reldim(0.1f), cegui_reldim( 0.1f)));

    // As a final step in the initialisation of our sample window, we set the window's
    // text to "Hello World!", so that this text will appear as the caption in the
    // FrameWindow's titlebar.
    wnd->setText("Hello World!");

    wnd->subscribeEvent(CEGUI::Window::EventMouseClick,  Event::Subscriber(&HelloWorldDemo::handleHelloWorldClicked, this));

    listSize  = 0;
    gamesList = (MultiColumnList*)winMgr.createWindow("TaharezLook/MultiColumnList", "GameList");
    gamesList->setPosition(UVector2(cegui_reldim(0.125f), cegui_reldim(0.125f)));
    gamesList->setSize(USize(cegui_reldim(.75f), cegui_reldim(.75f)));
    gamesList->setShowHorzScrollbar(false);
    gamesList->addColumn("GAMENAME", 0, CEGUI::UDim(.32f, 0));
    gamesList->addColumn("MAPNAME", 1, CEGUI::UDim(.32f, 0));
    gamesList->addColumn("PLAYERS", 2, CEGUI::UDim(.32f, 0));
    gamesList->setSelectionMode(CEGUI::MultiColumnList::SelectionMode::RowSingle);
    wnd->addChild(gamesList);

    PushButton* addButton = (PushButton*)winMgr.createWindow("TaharezLook/Button", "AddButton");
    addButton->setPosition(UVector2(cegui_reldim(0.25f), cegui_reldim(0.9f)));
    addButton->setSize(USize(cegui_reldim(.15f), cegui_reldim(.08f)));
    addButton->setText("Add");
    addButton->subscribeEvent(CEGUI::PushButton::EventClicked, Event::Subscriber(&HelloWorldDemo::handleAddButtonClicked, this));
    wnd->addChild(addButton);

    PushButton* clearButton = (PushButton*)winMgr.createWindow("TaharezLook/Button", "ClearButton");
    clearButton->setPosition(UVector2(cegui_reldim(0.6f), cegui_reldim(0.9f)));
    clearButton->setSize(USize(cegui_reldim(.15f), cegui_reldim(.08f)));
    clearButton->setText("Reset");
    clearButton->subscribeEvent(CEGUI::PushButton::EventClicked, Event::Subscriber(&HelloWorldDemo::handleClearButtonClicked, this));
    wnd->addChild(clearButton);

    // return true so that the samples framework knows that initialisation was a
    // success, and that it should now run the sample.
    return true;
}


/*************************************************************************
    Cleans up resources allocated in the initialiseSample call.
*************************************************************************/
void HelloWorldDemo::deinitialise()
{
}

bool HelloWorldDemo::handleHelloWorldClicked(const CEGUI::EventArgs& args)
{
    std::cout << "Hello World!" << std::endl;

    return false;
}

bool HelloWorldDemo::handleAddButtonClicked(const CEGUI::EventArgs& args)
{
  GenerateAndSetListItem();

  return false;
}

bool HelloWorldDemo::handleClearButtonClicked(const CEGUI::EventArgs& args)
{
  gamesList->clearAllSelections();
  gamesList->resetList();

  listSize = 0;
  currentListItems.clear();

  return false;
}

void HelloWorldDemo::GenerateAndSetListItem()
{
  for (unsigned i = 0; i < 3; ++i)
  {
    unsigned rowId = gamesList->addRow();
    std::shared_ptr<CEGUI::ListboxTextItem> listPiece;
    std::stringstream testName;

    testName << "TestText" << i;

    listPiece = std::make_shared<CEGUI::ListboxTextItem>(testName.str(), rowId, nullptr, false, false);

    listPiece->setSelectionBrushImage("TaharezLook/MultiListSelectionBrush");
    gamesList->setItem(listPiece.get(), i, listSize);

    currentListItems.push_back(listPiece);
  }

  ++listSize;
}

/*************************************************************************
    Define the module function that returns an instance of the sample
*************************************************************************/
extern "C" SAMPLE_EXPORT Sample& getSampleInstance()
{
    static HelloWorldDemo sample;
    return sample;
}

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

Re: How to remove own managed ListboxTextItem from MCL

Postby Ident » Sun Aug 02, 2015 08:34

So there was no issue? Please mark the thread as [Solved]... if yes
CrazyEddie: "I don't like GUIs"

Oam
Not too shy to talk
Not too shy to talk
Posts: 23
Joined: Thu Nov 13, 2014 07:01

Re: How to remove own managed ListboxTextItem from MCL

Postby Oam » Sun Aug 02, 2015 10:42

That problem is definitely solved. However, it seems now occasionally my CEGUIBase0_d.dll will crash after inserting too many items into the Multi Column List at once. It's a little strange, I was able to catch it at the: CEGUI::System::getSingleton().renderAllGUIContexts(); at one point, and then further in it seems to crash unknowingly.

This is what I'm doing:

Code: Select all

void ActiveGamesMenuSheet::RefreshActiveGamesList(const std::vector<GameInfo>& gameInfos)
{
  // clear old info first
  gamesList->clearAllSelections();
  gamesList->resetList();

  currentListItems.clear();
  gameListCount = 0;
  // -----

  for (auto& info : gameInfos)
  {
    GenerateAndSetListItem(info);
  }
}

Where the GenerateAndSetListItem is defined as:

Code: Select all

void ActiveGamesMenuSheet::GenerateAndSetListItem(const GameInfo& gameInfo)

  for (unsigned i = 0; i < 3; ++i)
  {
    unsigned rowId = gamesList->addRow();
    std::shared_ptr<CEGUI::ListboxTextItem> listPiece;

    if (i < 2)
      listPiece = std::make_shared<CEGUI::ListboxTextItem>(*(&gameInfo.gameName + i), rowId, nullptr, false, false);
    else
      listPiece = std::make_shared<CEGUI::ListboxTextItem>(gameInfo.currentPlayers + '/' + gameInfo.maxPlayers, rowId, nullptr, false, false);

    listPiece->setSelectionBrushImage("TaharezLook/MultiListSelectionBrush");
    gamesList->setItem(listPiece.get(), i, gameListCount);

    currentListItems.push_back(listPiece);
  }

  ++gameListCount;
}

I'm spamming my Refresh button that calls the RefreshActiveGamesList function to test, which is where I'm thinking the crash is originating from. I'll see if I can reproduce in the HelloWorld example.

CEGUI.log

Code: Select all

02/08/2015 03:34:04 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
02/08/2015 03:34:04 (Std)    +                     Crazy Eddie's GUI System - Event log                    +
02/08/2015 03:34:04 (Std)    +                          (http://www.cegui.org.uk/)                         +
02/08/2015 03:34:04 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

02/08/2015 03:34:04 (Std)    CEGUI::Logger singleton created. (0CF7E5D0)
02/08/2015 03:34:04 (Std)    
02/08/2015 03:34:04 (Std)    ********************************************************************************
02/08/2015 03:34:04 (Std)    * Important:                                                                   *
02/08/2015 03:34:04 (Std)    *     To get support at the CEGUI forums, you must post _at least_ the section *
02/08/2015 03:34:04 (Std)    *     of this log file indicated below.  Failure to do this will result in no  *
02/08/2015 03:34:04 (Std)    *     support being given; please do not waste our time.                       *
02/08/2015 03:34:04 (Std)    ********************************************************************************
02/08/2015 03:34:04 (Std)    ********************************************************************************
02/08/2015 03:34:04 (Std)    * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM       -------- *
02/08/2015 03:34:04 (Std)    ********************************************************************************
02/08/2015 03:34:04 (Std)    ---- Version: 0.8.4 (Build: Nov 29 2014 Debug Microsoft Windows MSVC++ Great Scott! 32 bit) ----
02/08/2015 03:34:04 (Std)    ---- Renderer module is: CEGUI::Direct3D11Renderer - Official Direct3D 11 based 2nd generation renderer module. ----
02/08/2015 03:34:04 (Std)    ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
02/08/2015 03:34:04 (Std)    ---- Image Codec module is: SILLYImageCodec - Official SILLY based image codec ----
02/08/2015 03:34:04 (Std)    ---- Scripting module is: None ----
02/08/2015 03:34:04 (Std)    ********************************************************************************
02/08/2015 03:34:04 (Std)    * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM         -------- *
02/08/2015 03:34:04 (Std)    ********************************************************************************
02/08/2015 03:34:04 (Std)    
02/08/2015 03:34:04 (Std)    ---- Begining CEGUI System initialisation ----
02/08/2015 03:34:04 (Std)    [CEGUI::ImageManager] Singleton created (0CF7ED60)
02/08/2015 03:34:04 (Std)    [CEGUI::ImageManager] Registered Image type: BasicImage
02/08/2015 03:34:04 (Std)    CEGUI::FontManager singleton created. (0D04AE38)
02/08/2015 03:34:04 (Std)    CEGUI::WindowFactoryManager singleton created
02/08/2015 03:34:04 (Std)    CEGUI::WindowManager singleton created (0CFC7670)
02/08/2015 03:34:04 (Std)    CEGUI::SchemeManager singleton created. (0D04BBD0)
02/08/2015 03:34:04 (Std)    CEGUI::GlobalEventSet singleton created. (0CE61388)
02/08/2015 03:34:04 (Std)    CEGUI::AnimationManager singleton created (0CE8A800)
02/08/2015 03:34:04 (Std)    CEGUI::WidgetLookManager singleton created. (1032FDE0)
02/08/2015 03:34:04 (Std)    CEGUI::WindowRendererManager singleton created (1032FE60)
02/08/2015 03:34:04 (Std)    CEGUI::RenderEffectManager singleton created (0CE60B18)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'DefaultWindow' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'DefaultWindow' windows added. (0D0B9B10)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'DragContainer' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'DragContainer' windows added. (0D0B9BD8)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'ScrolledContainer' windows added. (0D0B9CA0)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'ClippedContainer' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'ClippedContainer' windows added. (0D0B9D68)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (0D0B9E30)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (0D0B9EF8)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (0D0B9FC0)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (0D0BA088)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (0D0BA218)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (0D0BA150)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (0D0BA2E0)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (0D0BA3A8)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (0D0BA470)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (0D0BA538)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (0D0BA600)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (0D0BA6C8)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (0D0BA790)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (0D0BA858)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (0D0BA920)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (0D0BA9E8)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (0D0BAAB0)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (0D0BAB78)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (0D0BAC40)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (0D0BAD08)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (0D0BADD0)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (0D0BAE98)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (103494E8)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (10349678)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/ToggleButton' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/ToggleButton' windows added. (103495B0)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (10349808)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (10349740)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (103498D0)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (10349998)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'LayoutCell' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'LayoutCell' windows added. (10349B28)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'HorizontalLayoutContainer' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows added. (10349BF0)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'VerticalLayoutContainer' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'VerticalLayoutContainer' windows added. (10349A60)
02/08/2015 03:34:04 (Std)    Created WindowFactory for 'GridLayoutContainer' windows.
02/08/2015 03:34:04 (Std)    WindowFactory for 'GridLayoutContainer' windows added. (10349CB8)
02/08/2015 03:34:04 (Std)    CEGUI::System singleton created. (1034FD20)
02/08/2015 03:34:04 (Std)    ---- CEGUI System initialisation completed ----
02/08/2015 03:34:04 (Std)    
02/08/2015 03:34:04 (Std)    Started creation of Scheme from XML specification:
02/08/2015 03:34:04 (Std)    ---- CEGUI GUIScheme name: TaharezLook
02/08/2015 03:34:04 (Std)    [ImageManager] Started creation of Imageset from XML specification:
02/08/2015 03:34:04 (Std)    [ImageManager] ---- CEGUI Imageset name: TaharezLook
02/08/2015 03:34:04 (Std)    [ImageManager] ---- Source texture file: TaharezLook.png
02/08/2015 03:34:04 (Std)    [ImageManager] ---- Source texture resource group: (Default)
02/08/2015 03:34:04 (Std)    [Direct3D11Renderer] Created texture: TaharezLook
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ClientBrush' (103D61E8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/GenericBrush' (0D0BF228) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/WindowLeftEdge' (1034D908) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/WindowRightEdge' (1034DA18) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopEdge' (103D6C08) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomEdge' (1040CF08) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopLeft' (1040D020) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopRight' (1040D250) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomLeft' (1040D138) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomRight' (1040D368) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftNormal' (1040D480) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddleNormal' (1040D598) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightNormal' (1040D6B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftPushed' (1040D7C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddlePushed' (1040D8E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightPushed' (1040D9F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftHighlight' (1040DB10) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddleHighlight' (1040DC28) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightHighlight' (1040DD40) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxNormal' (1040DE58) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxHover' (1040DF70) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxMark' (1040E1A0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonNormal' (1040E2B8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonHover' (1040E088) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonMark' (1040E3D0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarLeft' (1040E4E8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarMiddle' (1040E718) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarRight' (1040E600) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarLeft' (1040E948) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarMiddle' (1040E830) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarRight' (1040EA60) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/SysAreaMiddle' (1040EB78) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/SysAreaRight' (1040EDA8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/StaticLeft' (1040EC90) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/StaticRight' (103FAEE8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTop' (103FB000) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottom' (103FB230) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTopLeft' (103FB348) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTopRight' (103FB460) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottomLeft' (103FB118) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottomRight' (103FB578) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBackdrop' (103FB690) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarLeft' (103FB7A8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarMiddle' (103FB8C0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarRight' (103FB9D8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarDimSegment' (103FBAF0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarLitSegment' (103FBC08) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxLeft' (103FBD20) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxMiddle' (103FBE38) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxRight' (103FC068) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxCaret' (103FC180) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerUpNormal' (103FC298) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerDownNormal' (103FBF50) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerUpHover' (103FC3B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerDownHover' (103FC4C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TextSelectionBrush' (103FC5E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollTop' (103FC6F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollMiddle' (103FC928) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollBottom' (103FC810) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollBarSegment' (103FCA40) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollThumbNormal' (103FCB58) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollThumbHover' (103FCC70) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollUpNormal' (103FCD88) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollDownNormal' (103FCEE8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollUpHover' (103FD000) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollDownHover' (103FD118) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollBarSegment' (103FD230) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbNormal' (103FD348) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopNormal' (103FD460) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleNormal' (103FD578) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomNormal' (103FD690) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopHover' (103FD7A8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleHover' (103FD8C0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomHover' (103FD9D8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbHover' (103FDAF0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpNormal' (103FDC08) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownNormal' (103FDD20) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpHover' (103FDE38) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownHover' (103FDF50) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderBody' (103FE068) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderThumbNormal' (103FE180) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderThumbHover' (103FE298) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollBarSegment' (103FE3B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbNormal' (103FE4C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftNormal' (103FE5E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleNormal' (103FE6F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightNormal' (103FE810) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbHover' (103FE928) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftHover' (103FEA40) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleHover' (103FEB58) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightHover' (103FEC70) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftNormal' (103FED88) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightNormal' (10581020) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftHover' (10581138) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightHover' (10581250) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxLeft' (10581368) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxRight' (10581480) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTop' (105816B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottom' (105817C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTopLeft' (105818E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTopRight' (10581598) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottomLeft' (105819F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottomRight' (10581B10) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBackdrop' (10581C28) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxSelectionBrush' (10581D40) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxEditLeft' (10581E58) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxEditMiddle' (10581F70) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListButtonNormal' (10582088) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListButtonHover' (105821A0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListLeft' (105822B8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListRight' (105823D0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTop' (105824E8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottom' (10582600) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTopLeft' (10582718) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTopRight' (10582830) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottomLeft' (10582948) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottomRight' (10582A60) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBackdrop' (10582B78) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxSelectionBrush' (10582C90) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerLeft' (10582DA8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerMiddle' (10582EC0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerRight' (10585020) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropNormal' (10585138) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropHover' (10585250) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterNormal' (10585368) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterHover' (10585480) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSortUp' (10585598) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSortDown' (105856B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListLeft' (105857C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListRight' (105859F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTop' (105858E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottom' (10585C28) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTopLeft' (10585B10) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTopRight' (10585D40) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottomLeft' (10585E58) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottomRight' (10585F70) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBackdrop' (10586088) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListSelectionBrush' (105861A0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLeft' (105862B8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressMiddle' (105863D0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressRight' (105864E8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressQuarter' (10586600) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressHalf' (10586718) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight1' (10586830) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight2' (10586948) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight3' (10586A60) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight4' (10586B78) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight5' (10586C90) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight6' (10586DA8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight7' (10586EC0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight8' (10589020) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight9' (10589138) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight10' (10589250) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonNormal' (10589368) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonHover' (10589480) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonPressed' (10589598) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonNormal' (105896B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonHover' (105897C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonPressed' (105898E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxLeft' (105899F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxRight' (10589B10) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTop' (10589C28) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottom' (10589D40) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopLeft' (10589E58) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopRight' (10589F70) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomLeft' (1058A088) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomRight' (1058A1A0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBackdrop' (1058A2B8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxSelectionBrush' (1058A3D0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MouseTarget' (1058A4E8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MouseArrow' (1058A600) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MouseMoveCursor' (1058A830) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNoSoCursor' (1058A718) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MouseEsWeCursor' (1058A948) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNeSwCursor' (1058AA60) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNwSeCursor' (1058AB78) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MouseTextBar' (1058AC90) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabHorizontalFiller' (1058AEC0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperLeft' (1058ADA8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpper' (1058F020) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperRight' (1058F138) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLeft' (1058F250) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneRight' (1058F368) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLower' (1058F480) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerLeft' (1058F598) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerRight' (1058F6B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneMiddle' (1058F7C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftNormal' (1058F8E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightNormal' (1058F9F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftHover' (1058FB10) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightHover' (1058FC28) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLeftNormal' (1058FD40) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonRightNormal' (1058FE58) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperNormal' (1058FF70) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerNormal' (10590088) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftNormal' (105901A0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeft2Normal' (105902B8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightNormal' (105903D0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftNormal' (105904E8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightNormal' (10590600) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRight2Normal' (10590718) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonMiddleNormal' (10590830) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLeftSelected' (10590948) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonRightSelected' (10590A60) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperSelected' (10590B78) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerSelected' (10590C90) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftSelected' (10590DA8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightSelected' (10590EC0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftSelected' (10595020) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightSelected' (10595138) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonMiddleSelected' (10595250) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopLeft' (10595368) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopRight' (10595480) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomLeft' (10595598) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomRight' (105956B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipLeftEdge' (105957C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipRightEdge' (105958E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopEdge' (105959F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomEdge' (10595B10) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipMiddle' (10595C28) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTopLeft' (10595E58) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTopRight' (10595D40) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottomLeft' (10596088) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottomRight' (10595F70) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MenuLeft' (105961A0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MenuRight' (105962B8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTop' (105964E8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottom' (105963D0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/MenuMiddle' (10596718) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopLeft' (10596830) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopRight' (10596600) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomLeft' (10596948) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomRight' (10596A60) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameLeft' (10596B78) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameRight' (10596C90) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTop' (10596DA8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottom' (10596EC0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuMiddle' (10599020) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuArrowRight' (10599138) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuArrowLeft' (10599250) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TreeListClosed' (10599368) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'TaharezLook/TreeListOpened' (10599480) of type: BasicImage
02/08/2015 03:34:04 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
02/08/2015 03:34:04 (Std)    ===== Look and feel parsing completed =====
02/08/2015 03:34:04 (Std)    No window renderer factories specified for module 'CEGUICoreWindowRendererSet' - adding all available factories...
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/Button' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/Button' added. (105CD408)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/Default' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/Default' added. (105CD4D0)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/Editbox' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/Editbox' added. (105CD598)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/FrameWindow' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/FrameWindow' added. (105CD660)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/ItemEntry' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/ItemEntry' added. (105CD728)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/ListHeader' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/ListHeader' added. (105CD8B8)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/ListHeaderSegment' added. (105CD980)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/Listbox' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/Listbox' added. (105CD7F0)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/Menubar' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/Menubar' added. (105CDA48)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/MenuItem' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/MenuItem' added. (105CDB10)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/MultiColumnList' added. (105CDBD8)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/MultiLineEditbox' added. (105CDCA0)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/PopupMenu' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/PopupMenu' added. (105CDD68)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/ProgressBar' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/ProgressBar' added. (105CDEF8)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/ScrollablePane' added. (105CDE30)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/Scrollbar' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/Scrollbar' added. (105CDFC0)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/Slider' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/Slider' added. (105CE150)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/Static' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/Static' added. (105CE088)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/StaticImage' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/StaticImage' added. (105CE218)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/StaticText' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/StaticText' added. (105CE2E0)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/TabButton' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/TabButton' added. (105CE470)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/TabControl' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/TabControl' added. (105CE538)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/Titlebar' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/Titlebar' added. (105CE600)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/ToggleButton' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/ToggleButton' added. (105CE3A8)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/Tooltip' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/Tooltip' added. (105CE6C8)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/ItemListbox' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/ItemListbox' added. (105CE790)
02/08/2015 03:34:04 (Std)    Created WindowRendererFactory for 'Core/Tree' WindowRenderers.
02/08/2015 03:34:04 (Std)    WindowRendererFactory 'Core/Tree' added. (105CE858)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/Label' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Label' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/Button' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/Checkbox' using base type 'CEGUI/ToggleButton', window renderer 'Core/ToggleButton' Look'N'Feel 'TaharezLook/Checkbox' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/ImageButton' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Core/ToggleButton' Look'N'Feel 'TaharezLook/RadioButton' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Core/FrameWindow' Look'N'Feel 'TaharezLook/FrameWindow' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Core/Titlebar' Look'N'Feel 'TaharezLook/Titlebar' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'TaharezLook/Editbox' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Core/MultiLineEditbox' Look'N'Feel 'TaharezLook/MultiLineEditbox' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Core/Menubar' Look'N'Feel 'TaharezLook/Menubar' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Core/PopupMenu' Look'N'Feel 'TaharezLook/PopupMenu' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Core/MenuItem' Look'N'Feel 'TaharezLook/MenuItem' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/AltProgressBar' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/ProgressBar' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/VUMeter' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/VerticalScrollbar' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/HorizontalScrollbar' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/VerticalScrollbarThumb' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/HorizontalScrollbarThumb' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/LargeVerticalScrollbar' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/LargeVerticalScrollbarThumb' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Core/TabButton' Look'N'Feel 'TaharezLook/TabButton' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Core/TabControl' Look'N'Feel 'TaharezLook/TabControl' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/TabContentPane' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/TabButtonPane' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Core/Listbox' Look'N'Feel 'TaharezLook/ComboDropList' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'TaharezLook/ComboEditbox' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Combobox' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Core/Listbox' Look'N'Feel 'TaharezLook/Listbox' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Core/ListHeader' Look'N'Feel 'TaharezLook/ListHeader' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Core/ListHeaderSegment' Look'N'Feel 'TaharezLook/ListHeaderSegment' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Core/MultiColumnList' Look'N'Feel 'TaharezLook/MultiColumnList' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/Slider' using base type 'CEGUI/Slider', window renderer 'Core/Slider' Look'N'Feel 'TaharezLook/Slider' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/SliderThumb' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Core/ScrollablePane' Look'N'Feel 'TaharezLook/ScrollablePane' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Spinner' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Core/Tooltip' Look'N'Feel 'TaharezLook/Tooltip' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/StaticImage' using base type 'DefaultWindow', window renderer 'Core/StaticImage' Look'N'Feel 'TaharezLook/StaticImage' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/StaticText' using base type 'DefaultWindow', window renderer 'Core/StaticText' Look'N'Feel 'TaharezLook/StaticText' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Core/ItemListbox' Look'N'Feel 'TaharezLook/ItemListbox' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Core/ItemEntry' Look'N'Feel 'TaharezLook/ListboxItem' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/GroupBox' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/GroupBox' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'TaharezLook/Tree' using base type 'CEGUI/Tree', window renderer 'Core/Tree' Look'N'Feel 'TaharezLook/Tree' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Started creation of Scheme from XML specification:
02/08/2015 03:34:04 (Std)    ---- CEGUI GUIScheme name: AlfiskoSkin
02/08/2015 03:34:04 (Std)    [ImageManager] Started creation of Imageset from XML specification:
02/08/2015 03:34:04 (Std)    [ImageManager] ---- CEGUI Imageset name: AlfiskoSkin
02/08/2015 03:34:04 (Std)    [ImageManager] ---- Source texture file: AlfiskoSkin.png
02/08/2015 03:34:04 (Std)    [ImageManager] ---- Source texture resource group: (Default)
02/08/2015 03:34:04 (Std)    [Direct3D11Renderer] Created texture: AlfiskoSkin
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowB' (105996B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowL' (10599598) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowR' (105997C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowT' (105998E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/EditboxB' (105999F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/EditboxL' (10599B10) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/EditboxR' (10599C28) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/EditboxT' (10599D40) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowBL' (10599E58) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowBR' (10599F70) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowTL' (1059A088) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowTR' (1059A1A0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/EditboxBL' (1059A2B8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/EditboxBR' (1059A4E8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/EditboxTL' (1059A600) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/EditboxTR' (1059A718) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/MouseMove' (1059A830) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/MouseNeSw' (1059A948) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/NewImage1' (1059AA60) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/MouseArrow' (1059AB78) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowFill' (1059AC90) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/EditboxFill' (1059ADA8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowClipB' (1059AEC0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowClipL' (1059A3D0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowClipR' (10634AC8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/WindowClipT' (10634CF8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonHoverB' (10634E10) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonHoverL' (10634F28) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonHoverR' (10635040) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonHoverT' (10635158) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/GenericBrush' (10635270) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/MouseTextBar' (10635388) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonHoverBL' (106354A0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonHoverBR' (106355B8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonHoverTL' (106356D0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonHoverTR' (106357E8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonNormalB' (10635900) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonNormalL' (10635A18) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonNormalR' (10635B30) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonNormalT' (10635C48) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonPushedB' (10635D60) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonPushedL' (10635E78) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonPushedR' (10635F90) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonPushedT' (106360A8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/CheckboxHover' (106361C0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressFullB' (106362D8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressFullL' (106363F0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressFullR' (10636508) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressFullT' (10636620) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ScrollUpHover' (10636738) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonNormalBL' (10636850) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonNormalBR' (10636968) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonNormalTL' (10634BE0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonNormalTR' (10638AC8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonPushedBL' (10638CF8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonPushedBR' (10638E10) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonPushedTL' (10638F28) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonPushedTR' (10639040) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/CheckboxNormal' (10639158) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzScrollbarB' (10639270) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzScrollbarT' (10639388) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressEmptyB' (106394A0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressEmptyL' (106395B8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressEmptyR' (106396D0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressEmptyT' (106397E8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressFullBL' (10639900) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressFullBR' (10639A18) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressFullTL' (10639B30) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressFullTR' (10639C48) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressShadow' (10639D60) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ScrollUpNormal' (10639E78) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ScrollUpPushed' (10639F90) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarDummy1' (1063A0A8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertScrollbarL' (1063A1C0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertScrollbarR' (1063A2D8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/CheckboxChecked' (1063A3F0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbHoverB' (1063A508) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbHoverT' (1063A620) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressEmptyBL' (1063A738) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressEmptyBR' (1063A850) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressEmptyTL' (1063A968) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressEmptyTR' (10638BE0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ScrollDownHover' (1084ED68) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ScrollLeftHover' (1084EF98) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarActiveB' (1084F0B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarActiveL' (1084F1C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarActiveR' (1084F2E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarActiveT' (1084F3F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbHoverL' (1084F510) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbHoverR' (1084F628) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonHoverFill1' (1084F740) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonHoverFill2' (1084EE80) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzSliderTrackL' (1084F858) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzSliderTrackR' (1084F970) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbHoverBL' (1084FA88) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbHoverBR' (1084FBA0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbHoverTL' (1084FCB8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbHoverTR' (1084FDD0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbNormalB' (1084FEE8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbNormalT' (10850000) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbPushedB' (10850118) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbPushedT' (10850230) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbShadowL' (10850348) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbShadowR' (10850460) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressFullFill' (10850578) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/RadioButtonHover' (10850690) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ScrollDownNormal' (108507A8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ScrollDownPushed' (108508C0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ScrollLeftNormal' (108509D8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ScrollLeftPushed' (10850AF0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ScrollRightHover' (10850C08) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarActiveBL' (10852D68) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarActiveBR' (10852E80) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarActiveTL' (10852F98) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarActiveTR' (108530B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertSliderTrackB' (108531C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertSliderTrackT' (108532E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbHoverBL' (108533F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbHoverBR' (10853510) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbHoverTL' (10853628) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbHoverTR' (10853740) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbNormalL' (10853858) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbNormalR' (10853970) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbPushedL' (10853A88) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbPushedR' (10853BA0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbShadowB' (10853CB8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbShadowT' (10853DD0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonNormalFill1' (10853EE8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonNormalFill2' (10854000) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonPushedFill1' (10854118) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ButtonPushedFill2' (10854230) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/CloseButtonNormal' (10854348) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/CloseButtonPushed' (10854460) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzSliderShadowL' (10854578) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzSliderShadowR' (10854690) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbNormalBL' (108547A8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbNormalBR' (108548C0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbNormalTL' (108549D8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbNormalTR' (10854AF0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbPushedBL' (10854C08) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbPushedBR' (10856D68) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbPushedTL' (10856E80) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzThumbPushedTR' (10856F98) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ProgressEmptyFill' (108570B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/RadioButtonNormal' (108571C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ScrollRightNormal' (108572E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/ScrollRightPushed' (108573F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarInactiveB' (10857510) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarInactiveL' (10857628) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarInactiveR' (10857740) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarInactiveT' (10857858) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertSliderShadowB' (10857970) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertSliderShadowT' (10857A88) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbNormalBL' (10857BA0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbNormalBR' (10857CB8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbNormalTL' (10857DD0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbNormalTR' (10857EE8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbPushedBL' (10858000) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbPushedBR' (10858118) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbPushedTL' (10858230) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertThumbPushedTR' (10858348) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzScrollbarFill1' (10858460) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzScrollbarFill2' (10858578) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/RadioButtonChecked' (10858690) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarInactiveBL' (108587A8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarInactiveBR' (108588C0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarInactiveTL' (108589D8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarInactiveTR' (10858AF0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertScrollbarFill1' (10858C08) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertScrollbarFill2' (10858D68) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzSliderTrackFill' (10858E80) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarActiveFill1' (10858F98) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarActiveFill2' (108590B0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertSliderTrackFill' (108591C8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzSliderThumbHover' (108592E0) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertSliderThumbHover' (108593F8) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzSliderThumbNormal' (10859510) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/HorzSliderThumbPushed' (10859628) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarInactiveFill1' (10859740) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/TitlebarInactiveFill2' (10859858) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertSliderThumbNormal' (10859970) of type: BasicImage
02/08/2015 03:34:04 (Std)    [ImageManager] Created image: 'AlfiskoSkin/VertSliderThumbPushed' (10859A88) of type: BasicImage
02/08/2015 03:34:04 (Std)    ---- Returning existing instance of Font named 'DejaVuSans-12'.
02/08/2015 03:34:04 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
02/08/2015 03:34:04 (Std)    ===== Look and feel parsing completed =====
02/08/2015 03:34:04 (Std)    No window renderer factories specified for module 'CEGUICoreWindowRendererSet' - adding all available factories...
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/Label' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'AlfiskoSkin/Label' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/Button' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'AlfiskoSkin/Button' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'AlfiskoSkin/ImageButton' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Core/ToggleButton' Look'N'Feel 'AlfiskoSkin/RadioButton' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/Checkbox' using base type 'CEGUI/ToggleButton', window renderer 'Core/ToggleButton' Look'N'Feel 'AlfiskoSkin/Checkbox' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Core/Titlebar' Look'N'Feel 'AlfiskoSkin/Titlebar' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Core/FrameWindow' Look'N'Feel 'AlfiskoSkin/FrameWindow' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/Editbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'AlfiskoSkin/Editbox' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'AlfiskoSkin/VerticalScrollbarThumb' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'AlfiskoSkin/VerticalScrollbar' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'AlfiskoSkin/HorizontalScrollbarThumb' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'AlfiskoSkin/HorizontalScrollbar' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Core/MultiLineEditbox' Look'N'Feel 'AlfiskoSkin/MultiLineEditbox' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'AlfiskoSkin/ProgressBar' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/HorizontalSliderThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'AlfiskoSkin/HorizontalSliderThumb' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/HorizontalSlider' using base type 'CEGUI/Slider', window renderer 'Core/Slider' Look'N'Feel 'AlfiskoSkin/HorizontalSlider' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/VerticalSliderThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'AlfiskoSkin/VerticalSliderThumb' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/VerticalSlider' using base type 'CEGUI/Slider', window renderer 'Core/Slider' Look'N'Feel 'AlfiskoSkin/VerticalSlider' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'AlfiskoSkin/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Core/MenuItem' Look'N'Feel 'AlfiskoSkin/MenuItem' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Started creation of Scheme from XML specification:
02/08/2015 03:34:04 (Std)    ---- CEGUI GUIScheme name: Generic
02/08/2015 03:34:04 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
02/08/2015 03:34:04 (Std)    ===== Look and feel parsing completed =====
02/08/2015 03:34:04 (Std)    No window renderer factories specified for module 'CEGUICoreWindowRendererSet' - adding all available factories...
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'Generic/Label' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'Generic/Label' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'Generic/Image' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'Generic/Image' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    Creating falagard mapping for type 'Generic/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'Generic/ImageButton' and RenderEffect ''. (002CBCC4)
02/08/2015 03:34:04 (Std)    ---- Successfully completed loading of GUI layout from 'GAM300_BaseStartMenu.layout' ----
02/08/2015 03:34:04 (Std)    ---- Successfully completed loading of GUI layout from 'GAM300_GameMenu.layout' ----
02/08/2015 03:34:04 (Std)    [Direct3D11Renderer] Created texture: DejaVuSans-10_auto_glyph_images_32
02/08/2015 03:34:04 (Std)    ---- Successfully completed loading of GUI layout from 'GAM300_ActiveGamesMenu.layout' ----
02/08/2015 03:34:04 (Std)    ---- Successfully completed loading of GUI layout from 'GAM300_WaitProgress.layout' ----
02/08/2015 03:34:05 (Std)    [Direct3D11Renderer] Created texture: Jura-13_auto_glyph_images_32
02/08/2015 03:34:05 (Std)    [Direct3D11Renderer] Created texture: Jura-18_auto_glyph_images_32
Last edited by Oam on Sun Aug 02, 2015 10:47, edited 2 times in total.

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

Re: How to remove own managed ListboxTextItem from MCL

Postby Ident » Sun Aug 02, 2015 10:44

Crash..? That can mean anything. What is it?
CrazyEddie: "I don't like GUIs"

Oam
Not too shy to talk
Not too shy to talk
Posts: 23
Joined: Thu Nov 13, 2014 07:01

Re: How to remove own managed ListboxTextItem from MCL

Postby Oam » Sun Aug 02, 2015 10:49

It looks like it is a vector subscript out of range crash, but it happens somewhere after the CEGUI::System::getSingleton().renderAllGUIContexts(); It happens occasionally tho, might have something to do with my binaries, my Helloworld example code seems to work fine within the sample browser when adding lots of items, clearing the list, repeat.
Last edited by Oam on Sun Aug 02, 2015 10:55, edited 1 time in total.

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

Re: How to remove own managed ListboxTextItem from MCL

Postby Ident » Sun Aug 02, 2015 10:55

What is the exception or what type of error do you get. Is it a memory access violation? Heap corruption?

If it happens at a seemingly random point it can very likely have to do with heap corruptions, e.g. deleting things that will later be accessed through a pointer somewhere. Any chance this is the case in your code?
CrazyEddie: "I don't like GUIs"

Oam
Not too shy to talk
Not too shy to talk
Posts: 23
Joined: Thu Nov 13, 2014 07:01

Re: How to remove own managed ListboxTextItem from MCL

Postby Oam » Sun Aug 02, 2015 11:01

I don't believe I have non-managed memory anywhere, but it's definitely possible

Code: Select all

Unhandled exception at 0x03123F59 (CEGUIBase-0_d.dll) in Editor.exe: 0xC0000005: Access violation reading location 0xDDDDDDE5.

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

Re: How to remove own managed ListboxTextItem from MCL

Postby Ident » Sun Aug 02, 2015 11:16

Looks like an increment of a pointer to 0xDDDDDDDD (predefined) if you ask me. More info on predefined memory codes: http://www.nobugs.org/developer/win32/d ... html#table


Therefore it hints to memory mismanagement if you ask me. Didn't you find the memory adress curious? What if you restart the program a couple times, does it always land on that address? If yes then you can be sure this is related to messed up memory addresses. Try to rebuild the entire solution (clean + rebuild), maybe it helps if some library was cached. Otherwise check your memory handling.
CrazyEddie: "I don't like GUIs"

Oam
Not too shy to talk
Not too shy to talk
Posts: 23
Joined: Thu Nov 13, 2014 07:01

Re: How to remove own managed ListboxTextItem from MCL

Postby Oam » Sun Aug 02, 2015 11:26

Yea, definitely a bit strange and curious. I loaded up my CEGUIBase0_d.pdb, it relates to:

glyph = getGlypthData(text[c])

CEGUI Font.cpp

Code: Select all

float Font::getTextExtent(const String& text, float x_scale) const
{
    const FontGlyph* glyph;
    float cur_extent = 0, adv_extent = 0, width;

    for (size_t c = 0; c < text.length(); ++c)
    {
        glyph = getGlyphData(text[c]); // Crash on operator[]

        if (glyph)
        {
            width = glyph->getRenderedAdvance(x_scale);

            if (adv_extent + width > cur_extent)
                cur_extent = adv_extent + width;

            adv_extent += glyph->getAdvance(x_scale);
        }
    }

    return ceguimax(adv_extent, cur_extent);
}


Originating from MultiColumnList.cpp, line 1544: Sizef sz(item->getPixelSize());

I'll have to re-look at my GenerateAndSetListItem function.


Return to “Help”

Who is online

Users browsing this forum: Google [Bot] and 6 guests