Page 1 of 3
[RESOLVED][Bug] ItemListbox redraw issue
Posted: Sun Aug 02, 2015 17:53
by Alain B
EDIT: This has been fixed by
cfab39dac3b7. See page 3 for workarounds on prior versions.
Original message below:
_____________________________________
Hello,
I just ported my application from Ogre 1.8 and CEGUI 0.7 to Ogre 1.9 and CEGUI 0.8.4
Code: Select all
02/08/2015 22:49:27 (Std) ---- Version: 0.8.4 (Build: Aug 1 2015 GNU/Linux g++ 4.8.4 64 bit) ----
02/08/2015 22:49:27 (Std) ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ----
02/08/2015 22:49:27 (Std) ---- XML Parser module is: CEGUI::XercesParser - Official Xerces-C++ based parser module for CEGUI ----
02/08/2015 22:49:27 (Std) ---- Image Codec module is: OgreImageCodec - Integrated ImageCodec using the Ogre engine. ----
02/08/2015 22:49:27 (Std) ---- Scripting module is: None ----One difference that I have noticed is that all the ItemListbox widgets in my application have stopped rendering their last item entry.
I have written a sample that reproduces this behavior.
Here's the extract regarding the ItemListbox widget:
Code: Select all
CEGUI::ItemListbox * p_list = static_cast<CEGUI::ItemListbox *>(
CEGUI::WindowManager::getSingleton().createWindow("TaharezLook/ItemListbox", "test_listbox"));
p_list->setSize(CEGUI::USize(CEGUI::UDim(1.f,0),CEGUI::UDim(1.f,0)));
CEGUI::System::getSingleton().getDefaultGUIContext().setRootWindow(p_list);
for(unsigned i = 1; i <= 3; ++i)
{
std::ostringstream oss;
oss << "item #" << i;
std::string text = oss.str();
CEGUI::ItemEntry * p_itm =
static_cast<CEGUI::ItemEntry *>(
CEGUI::WindowManager::getSingleton().createWindow("TaharezLook/ListboxItem", text));
p_itm->setText(text);
p_list->addItem(p_itm);
}
p_list->invalidate();
p_list->show();
// Enabling the next two lines solves the bug
// CEGUI::WindowEventArgs args(box.listbox());
// CEGUI::System::getSingleton().getDefaultGUIContext().onRootWindowChanged(args);On my machine, this code shows a single listbox with only two items ("item #1" and "item #2") instead of the expected three.
Enabling the last two commented lines solves the problem, but doesn't seem very mmm... clean since
onRootWindowChanged is
protected.
There must be some piece of code triggered by the call to onRootWindowChanged that forces a full redraw/refresh of the view. What is that piece of code? How can I call it outside of onRootWindowChanged?Invalidate doesn't either work as I'd expect in this case...
Here's the full sample that reproduces it on my machine (a Gentoo linux box, Ogre and CEGUI compiled by portage) :
Code: Select all
// Hack to access GUIContext::onRootWindowChanged
#define protected public
#include <sstream>
#include <Ogre.h>
#include <CEGUI/CEGUI.h>
#include <CEGUI/RendererModules/Ogre/Renderer.h>
const char * const kMAIN_WINDOW_NAME = "test_window";
int main()
{
Ogre::Root root;
Ogre::ConfigFile cf;
cf.load("resources.cfg");
Ogre::ConfigFile::SectionIterator seci = cf.getSectionIterator();
Ogre::String secName, typeName, archName;
while (seci.hasMoreElements())
{
secName = seci.peekNextKey();
Ogre::ConfigFile::SettingsMultiMap *settings = seci.getNext();
Ogre::ConfigFile::SettingsMultiMap::iterator i;
for (i = settings->begin(); i != settings->end(); ++i)
{
typeName = i->first;
archName = i->second;
Ogre::ResourceGroupManager::getSingleton().addResourceLocation(
archName, typeName, secName);
}
}
const Ogre::RenderSystemList& r_renderSystemList = root.getAvailableRenderers();
if(0 == r_renderSystemList.size())
{
std::cerr << "No rendersystem was found." << std::endl;
exit(EXIT_FAILURE);
}
root.setRenderSystem(r_renderSystemList[0]);
root.initialise(false);
Ogre::RenderWindow * p_window = root.createRenderWindow(kMAIN_WINDOW_NAME, 800, 600, false);
Ogre::ResourceGroupManager::getSingleton().initialiseAllResourceGroups();
Ogre::SceneManager * p_sceneManager = root.createSceneManager(Ogre::ST_GENERIC);
Ogre::Camera * p_camera = p_sceneManager->createCamera("test_camera");
p_camera->setPosition(Ogre::Vector3(0,0,80));
p_camera->lookAt(Ogre::Vector3(0,0,0));
p_camera->setNearClipDistance(5);
Ogre::Viewport * p_viewport = p_window->addViewport(p_camera);
p_camera->setAspectRatio(Ogre::Real(p_viewport->getActualWidth()) / Ogre::Real(p_viewport->getActualHeight()));
CEGUI::OgreRenderer::bootstrapSystem(*p_window);
// Ressources
CEGUI::ImageManager::setImagesetDefaultResourceGroup("Imagesets");
CEGUI::Font::setDefaultResourceGroup("Fonts");
CEGUI::Scheme::setDefaultResourceGroup("Schemes");
CEGUI::WidgetLookManager::setDefaultResourceGroup("LookNFeel");
CEGUI::WindowManager::setDefaultResourceGroup("Layouts");
CEGUI::ScriptModule::setDefaultResourceGroup("LuaScripts");
CEGUI::SchemeManager::getSingleton().createFromFile( "TaharezLook.scheme" );
CEGUI::System::getSingleton().getDefaultGUIContext().getMouseCursor().setDefaultImage( "TaharezLook/MouseArrow" );
CEGUI::FontManager::getSingleton().createFromFile( "DejaVuSans-10.font" );
CEGUI::System::getSingleton().getDefaultGUIContext().setDefaultFont( "DejaVuSans-10" );
CEGUI::ItemListbox * p_list = static_cast<CEGUI::ItemListbox *>(
CEGUI::WindowManager::getSingleton().createWindow("TaharezLook/ItemListbox", "test_listbox"));
p_list->setSize(CEGUI::USize(CEGUI::UDim(1.f,0),CEGUI::UDim(1.f,0)));
CEGUI::System::getSingleton().getDefaultGUIContext().setRootWindow(p_list);
for(unsigned i = 1; i <= 3; ++i)
{
std::ostringstream oss;
oss << "item #" << i;
std::string text = oss.str();
CEGUI::ItemEntry * p_itm =
static_cast<CEGUI::ItemEntry *>(
CEGUI::WindowManager::getSingleton().createWindow("TaharezLook/ListboxItem", text));
p_itm->setText(text);
p_list->addItem(p_itm);
}
p_list->invalidate();
p_list->show();
// Enabling the next two lines solves the bug
// CEGUI::WindowEventArgs args(box.listbox());
// CEGUI::System::getSingleton().getDefaultGUIContext().onRootWindowChanged(args);
root.startRendering();
}
Re: [Bug ?] Possible ItemListbox regression on 0.8.4
Posted: Sun Aug 02, 2015 18:19
by lucebac
You shouldn't have the ItemList as the app's root window. I'd recommend to first set some DefaultWindow as root window and then add the ItemList to this DefaultWindow.
The DefaultWindow should have relative sizes of width 100% and height 100% to completely fill the app's window.
Re: [Bug ?] Possible ItemListbox regression on 0.8.4
Posted: Sun Aug 02, 2015 19:22
by Alain B
Thank you lucebac, but it seems you didn't understand my issue.
In my application, I do precisely as you recomend. The code copied in my first post is the
most simple sample that reproduces the issue on my machine.
EDIT:
- I added a DefaultWindow as the root window and as a parent for the listbox. If the listbox is linked to the default window before items are added to the listbox, I observe the same issue as before.
- However, if the listbox is linked to the default window after items are added to the listbox, I observe all expected items in the list box.
- I'll edit the original post to make the question more clear.
Re: [Bug ?] Possible ItemListbox regression on 0.8.4
Posted: Sun Aug 02, 2015 20:33
by lucebac
Code: Select all
CEGUI::ItemListbox * p_list = static_cast<CEGUI::ItemListbox *>(
CEGUI::WindowManager::getSingleton().createWindow("TaharezLook/ItemListbox", "test_listbox"));
[...]
CEGUI::System::getSingleton().getDefaultGUIContext().setRootWindow(p_list);
From there I can clearly say that you make the ItemListBox the root window. Please try the following:
Code: Select all
CEGUI::DefaultWindow* p_root = static_cast<CEGUI::DefaultWindow*>(
CEGUI::WindowManager::getSingleton().createWindow("DefaultWindow", "root"));
CEGUI::System::getSingleton().getDefaultGUIContext().setRootWindow(p_root);
[...]
CEGUI::ItemListbox * p_list = static_cast<CEGUI::ItemListbox *>(
CEGUI::WindowManager::getSingleton().createWindow("TaharezLook/ItemListbox", "test_listbox"));
p_root->addChild(p_list);
Anyways, where is your CEGUI log?
Re: [Bug ?] Possible ItemListbox regression on 0.8.4
Posted: Sun Aug 02, 2015 20:54
by Alain B
lucebac wrote:From there I can clearly say that you make the ItemListBox the root window. Please try the following:
Already did. Please see the EDIT in my previous post.
Anyways, where is your CEGUI log?
Here it is. I didn't see anything interesting in it.
Code: Select all
02/08/2015 22:49:27 (Std) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
02/08/2015 22:49:27 (Std) + Crazy Eddie's GUI System - Event log +
02/08/2015 22:49:27 (Std) + (http://www.cegui.org.uk/) +
02/08/2015 22:49:27 (Std) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
02/08/2015 22:49:27 (Std) CEGUI::Logger singleton created. (0x26a3440)
02/08/2015 22:49:27 (Std)
02/08/2015 22:49:27 (Std) ********************************************************************************
02/08/2015 22:49:27 (Std) * Important: *
02/08/2015 22:49:27 (Std) * To get support at the CEGUI forums, you must post _at least_ the section *
02/08/2015 22:49:27 (Std) * of this log file indicated below. Failure to do this will result in no *
02/08/2015 22:49:27 (Std) * support being given; please do not waste our time. *
02/08/2015 22:49:27 (Std) ********************************************************************************
02/08/2015 22:49:27 (Std) ********************************************************************************
02/08/2015 22:49:27 (Std) * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM -------- *
02/08/2015 22:49:27 (Std) ********************************************************************************
02/08/2015 22:49:27 (Std) ---- Version: 0.8.4 (Build: Aug 1 2015 GNU/Linux g++ 4.8.4 64 bit) ----
02/08/2015 22:49:27 (Std) ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ----
02/08/2015 22:49:27 (Std) ---- XML Parser module is: CEGUI::XercesParser - Official Xerces-C++ based parser module for CEGUI ----
02/08/2015 22:49:27 (Std) ---- Image Codec module is: OgreImageCodec - Integrated ImageCodec using the Ogre engine. ----
02/08/2015 22:49:27 (Std) ---- Scripting module is: None ----
02/08/2015 22:49:27 (Std) ********************************************************************************
02/08/2015 22:49:27 (Std) * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM -------- *
02/08/2015 22:49:27 (Std) ********************************************************************************
02/08/2015 22:49:27 (Std)
02/08/2015 22:49:27 (Std) ---- Begining CEGUI System initialisation ----
02/08/2015 22:49:27 (Std) [CEGUI::ImageManager] Singleton created (0x26f1120)
02/08/2015 22:49:27 (Std) [CEGUI::ImageManager] Registered Image type: BasicImage
02/08/2015 22:49:27 (Std) CEGUI::FontManager singleton created. (0x26970b0)
02/08/2015 22:49:27 (Std) CEGUI::WindowFactoryManager singleton created
02/08/2015 22:49:27 (Std) CEGUI::WindowManager singleton created (0x26971e0)
02/08/2015 22:49:27 (Std) CEGUI::SchemeManager singleton created. (0x268e3e0)
02/08/2015 22:49:27 (Std) CEGUI::GlobalEventSet singleton created. (0x2698160)
02/08/2015 22:49:27 (Std) CEGUI::AnimationManager singleton created (0x26f11a0)
02/08/2015 22:49:27 (Std) CEGUI::WidgetLookManager singleton created. (0x26980c0)
02/08/2015 22:49:27 (Std) CEGUI::WindowRendererManager singleton created (0x268e510)
02/08/2015 22:49:27 (Std) CEGUI::RenderEffectManager singleton created (0x268f1f0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'DefaultWindow' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'DefaultWindow' windows added. (0x26f3e30)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'DragContainer' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'DragContainer' windows added. (0x26f40f0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'ScrolledContainer' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'ScrolledContainer' windows added. (0x26f42d0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'ClippedContainer' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'ClippedContainer' windows added. (0x26f4470)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/PushButton' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/PushButton' windows added. (0x26f4610)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/RadioButton' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/RadioButton' windows added. (0x26f47b0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/Combobox' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/Combobox' windows added. (0x26f4a70)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/ComboDropList' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/ComboDropList' windows added. (0x26f4c10)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/Editbox' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/Editbox' windows added. (0x26f4db0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/FrameWindow' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/FrameWindow' windows added. (0x26f4f50)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/ItemEntry' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/ItemEntry' windows added. (0x26f50f0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/Listbox' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/Listbox' windows added. (0x26f5290)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/ListHeader' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/ListHeader' windows added. (0x26f5430)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (0x26f55d0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/Menubar' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/Menubar' windows added. (0x26f5770)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/PopupMenu' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/PopupMenu' windows added. (0x26f5910)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/MenuItem' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/MenuItem' windows added. (0x26f5ab0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/MultiColumnList' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/MultiColumnList' windows added. (0x26f5d60)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (0x26f5f00)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/ProgressBar' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/ProgressBar' windows added. (0x26f60a0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/ScrollablePane' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/ScrollablePane' windows added. (0x26f6240)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/Scrollbar' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/Scrollbar' windows added. (0x26f63e0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/Slider' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/Slider' windows added. (0x26f6580)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/Spinner' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/Spinner' windows added. (0x26f6720)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/TabButton' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/TabButton' windows added. (0x26f68c0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/TabControl' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/TabControl' windows added. (0x26f6a60)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/Thumb' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/Thumb' windows added. (0x26f6c00)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/Titlebar' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/Titlebar' windows added. (0x26f6da0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/ToggleButton' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/ToggleButton' windows added. (0x26f6f40)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/Tooltip' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/Tooltip' windows added. (0x26f70e0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/ItemListbox' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/ItemListbox' windows added. (0x26f7280)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/GroupBox' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/GroupBox' windows added. (0x26f7420)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'CEGUI/Tree' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'CEGUI/Tree' windows added. (0x26f75c0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'LayoutCell' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'LayoutCell' windows added. (0x26f5c50)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'HorizontalLayoutContainer' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'HorizontalLayoutContainer' windows added. (0x26f7a50)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'VerticalLayoutContainer' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'VerticalLayoutContainer' windows added. (0x26f7bf0)
02/08/2015 22:49:27 (Std) Created WindowFactory for 'GridLayoutContainer' windows.
02/08/2015 22:49:27 (Std) WindowFactory for 'GridLayoutContainer' windows added. (0x26f7d90)
02/08/2015 22:49:27 (Std) CEGUI::System singleton created. (0x26a7a80)
02/08/2015 22:49:27 (Std) ---- CEGUI System initialisation completed ----
02/08/2015 22:49:27 (Std)
02/08/2015 22:49:27 (Std) XercesParser::initialiseSchema - Attempting to load schema from file 'GUIScheme.xsd'.
02/08/2015 22:49:27 (Std) XercesParser::initialiseSchema - XML schema file 'GUIScheme.xsd' has been initialised.
02/08/2015 22:49:27 (Std) Started creation of Scheme from XML specification:
02/08/2015 22:49:27 (Std) ---- CEGUI GUIScheme name: TaharezLook
02/08/2015 22:49:27 (Std) XercesParser::initialiseSchema - Attempting to load schema from file 'Imageset.xsd'.
02/08/2015 22:49:27 (Std) XercesParser::initialiseSchema - XML schema file 'Imageset.xsd' has been initialised.
02/08/2015 22:49:27 (Std) [ImageManager] Started creation of Imageset from XML specification:
02/08/2015 22:49:27 (Std) [ImageManager] ---- CEGUI Imageset name: TaharezLook
02/08/2015 22:49:27 (Std) [ImageManager] ---- Source texture file: TaharezLook.png
02/08/2015 22:49:27 (Std) [ImageManager] ---- Source texture resource group: (Default)
02/08/2015 22:49:27 (Std) [OgreRenderer] Created texture: TaharezLook
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ClientBrush' (0x271c1d0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/GenericBrush' (0x271c0b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/WindowLeftEdge' (0x270e130) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/WindowRightEdge' (0x271b340) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/WindowTopEdge' (0x271ad00) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/WindowBottomEdge' (0x271c960) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/WindowTopLeft' (0x270e380) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/WindowTopRight' (0x270e590) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/WindowBottomLeft' (0x270e7a0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/WindowBottomRight' (0x270e9b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ButtonLeftNormal' (0x270ebc0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ButtonMiddleNormal' (0x270edd0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ButtonRightNormal' (0x270efe0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ButtonLeftPushed' (0x270f1f0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ButtonMiddlePushed' (0x270f400) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ButtonRightPushed' (0x270f610) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ButtonLeftHighlight' (0x270f820) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ButtonMiddleHighlight' (0x270fa30) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ButtonRightHighlight' (0x270fdf0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/CheckboxNormal' (0x27101b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/CheckboxHover' (0x27103c0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/CheckboxMark' (0x27105d0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/RadioButtonNormal' (0x27107e0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/RadioButtonHover' (0x27109f0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/RadioButtonMark' (0x2710c00) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TitlebarLeft' (0x2710e10) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TitlebarMiddle' (0x27114d0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TitlebarRight' (0x27111b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/NewTitlebarLeft' (0x271d310) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/NewTitlebarMiddle' (0x27067b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/NewTitlebarRight' (0x27069c0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/SysAreaMiddle' (0x2706bd0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/SysAreaRight' (0x2706f70) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/StaticLeft' (0x2707180) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/StaticRight' (0x2707390) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/StaticTop' (0x27075a0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/StaticBottom' (0x27077b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/StaticTopLeft' (0x27079c0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/StaticTopRight' (0x2707bd0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/StaticBottomLeft' (0x2707de0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/StaticBottomRight' (0x2708180) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/StaticBackdrop' (0x271d190) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ProgressBarLeft' (0x2708390) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ProgressBarMiddle' (0x27085a0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ProgressBarRight' (0x27087b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ProgressBarDimSegment' (0x27089c0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ProgressBarLitSegment' (0x2708d80) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/EditBoxLeft' (0x27090b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/EditBoxMiddle' (0x27092c0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/EditBoxRight' (0x27094d0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/EditBoxCaret' (0x27096e0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/SpinnerUpNormal' (0x27098f0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/SpinnerDownNormal' (0x2709b00) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/SpinnerUpHover' (0x2709d10) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/SpinnerDownHover' (0x2709f20) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TextSelectionBrush' (0x270a130) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollTop' (0x270a340) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollMiddle' (0x270a550) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollBottom' (0x270a760) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollBarSegment' (0x270a970) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollThumbNormal' (0x270aca0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollThumbHover' (0x270afd0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollUpNormal' (0x270b490) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollDownNormal' (0x270b6a0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollUpHover' (0x270b9d0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollDownHover' (0x270bbe0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollBarSegment' (0x270bf80) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbNormal' (0x270c280) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopNormal' (0x2704ca0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleNormal' (0x270ca50) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomNormal' (0x270cea0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopHover' (0x27d97d0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleHover' (0x27d9b30) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomHover' (0x27d9ec0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbHover' (0x27da250) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpNormal' (0x27da460) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownNormal' (0x27da670) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpHover' (0x27daa10) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownHover' (0x27dac20) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertSliderBody' (0x27daf70) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertSliderThumbNormal' (0x27db180) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/VertSliderThumbHover' (0x27db390) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollBarSegment' (0x27db9e0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbNormal' (0x27dbc90) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftNormal' (0x27dc300) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleNormal' (0x27dc5c0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightNormal' (0x27dca10) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbHover' (0x27dcda0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftHover' (0x27dcfb0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleHover' (0x27dd4b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightHover' (0x27dd840) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftNormal' (0x27dda50) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightNormal' (0x27ddc60) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftHover' (0x27ddfb0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightHover' (0x27de300) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ListboxLeft' (0x27de650) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ListboxRight' (0x271af10) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ListboxTop' (0x27dec30) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ListboxBottom' (0x27ded50) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ListboxTopLeft' (0x27def60) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ListboxTopRight' (0x27df170) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ListboxBottomLeft' (0x27df380) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ListboxBottomRight' (0x27df590) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ListboxBackdrop' (0x27df7a0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ListboxSelectionBrush' (0x27df9b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxEditLeft' (0x27dfbc0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxEditMiddle' (0x27dfdd0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListButtonNormal' (0x27dffe0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListButtonHover' (0x27e03d0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListLeft' (0x27e0720) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListRight' (0x27e0930) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListTop' (0x27e0b40) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListBottom' (0x27e0d50) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListTopLeft' (0x27e0f60) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListTopRight' (0x27e1170) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListBottomLeft' (0x27e1510) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListBottomRight' (0x27e1860) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListBackdrop' (0x27e1bb0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxSelectionBrush' (0x27e1f50) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxDividerLeft' (0x27e22a0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxDividerMiddle' (0x27de860) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxDividerRight' (0x27e2970) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropNormal' (0x27e2b80) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropHover' (0x27e2ed0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterNormal' (0x27e3220) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterHover' (0x27e3570) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/HeaderBarSortUp' (0x27e38c0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/HeaderBarSortDown' (0x27e3ad0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiListLeft' (0x27e3ce0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiListRight' (0x27e3ef0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiListTop' (0x27e4100) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiListBottom' (0x27e4310) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiListTopLeft' (0x27e4520) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiListTopRight' (0x27e4730) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiListBottomLeft' (0x27e4940) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiListBottomRight' (0x27e4b50) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiListBackdrop' (0x27e4d60) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiListSelectionBrush' (0x27e5100) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLeft' (0x27e5450) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressMiddle' (0x27e5660) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressRight' (0x27e5870) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressQuarter' (0x27e5a80) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressHalf' (0x27e5c90) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight1' (0x27e5ea0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight2' (0x27e60b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight3' (0x27e62c0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight4' (0x27e64d0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight5' (0x27e66e0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight6' (0x27e68f0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight7' (0x27e6b00) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight8' (0x27e24b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight9' (0x27e2850) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight10' (0x27e72f0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/CloseButtonNormal' (0x27e7500) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/CloseButtonHover' (0x27e7710) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/CloseButtonPressed' (0x27e7920) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/NewCloseButtonNormal' (0x27e7b30) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/NewCloseButtonHover' (0x27e7d40) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/NewCloseButtonPressed' (0x27e7f50) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxLeft' (0x27e81f0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxRight' (0x27e8520) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTop' (0x27e8850) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottom' (0x27e8bf0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopLeft' (0x27e8fe0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopRight' (0x27e9330) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomLeft' (0x27e9810) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomRight' (0x27e9c30) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBackdrop' (0x27e9fa0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxSelectionBrush' (0x27ea340) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MouseTarget' (0x27eac40) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MouseArrow' (0x271cff0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MouseMoveCursor' (0x27eb170) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MouseNoSoCursor' (0x27eb380) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MouseEsWeCursor' (0x27eb590) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MouseNeSwCursor' (0x27eb7a0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MouseNwSeCursor' (0x27eb9b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MouseTextBar' (0x27ebbc0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabHorizontalFiller' (0x27eae50) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperLeft' (0x27ea880) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneUpper' (0x27ebdd0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperRight' (0x27ebef0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneLeft' (0x27ec100) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneRight' (0x27ec310) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneLower' (0x27ec520) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerLeft' (0x27ec730) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerRight' (0x27eca80) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneMiddle' (0x27ecdd0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftNormal' (0x27e6d10) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightNormal' (0x27ed730) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftHover' (0x27e7100) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightHover' (0x27edc40) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLeftNormal' (0x27edf90) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonRightNormal' (0x27ee1a0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperNormal' (0x27ee3b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerNormal' (0x27ee6e0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftNormal' (0x27eeba0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeft2Normal' (0x27eef90) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightNormal' (0x27ef2e0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftNormal' (0x27ef630) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightNormal' (0x27ef980) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerRight2Normal' (0x27efe60) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonMiddleNormal' (0x27ea1b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLeftSelected' (0x27f0370) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonRightSelected' (0x27f0710) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperSelected' (0x27f0a60) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerSelected' (0x27f0db0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftSelected' (0x27f1290) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightSelected' (0x27f16b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftSelected' (0x27f1a20) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightSelected' (0x27f1d90) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonMiddleSelected' (0x27f2100) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TooltipTopLeft' (0x27f2310) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TooltipTopRight' (0x27f2520) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TooltipBottomLeft' (0x27f2730) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TooltipBottomRight' (0x27f2940) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TooltipLeftEdge' (0x27f2b50) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TooltipRightEdge' (0x27f2d60) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TooltipTopEdge' (0x27f2f70) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TooltipBottomEdge' (0x27f3180) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TooltipMiddle' (0x27f3390) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MenuTopLeft' (0x27f35a0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MenuTopRight' (0x27f37b0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MenuBottomLeft' (0x27f39c0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MenuBottomRight' (0x27f3bd0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MenuLeft' (0x27f3de0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MenuRight' (0x27f3ff0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MenuTop' (0x27f4200) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MenuBottom' (0x27f4410) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/MenuMiddle' (0x27f4620) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopLeft' (0x27f4830) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopRight' (0x27f4a40) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomLeft' (0x27f4e30) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomRight' (0x27f5180) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameLeft' (0x27ecfe0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameRight' (0x27ed1f0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTop' (0x27ed400) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottom' (0x27ed610) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuMiddle' (0x27f5ee0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuArrowRight' (0x27f60f0) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuArrowLeft' (0x27f6300) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TreeListClosed' (0x27f6510) of type: BasicImage
02/08/2015 22:49:27 (Std) [ImageManager] Created image: 'TaharezLook/TreeListOpened' (0x27f6720) of type: BasicImage
02/08/2015 22:49:27 (Std) XercesParser::initialiseSchema - Attempting to load schema from file 'Font.xsd'.
02/08/2015 22:49:27 (Std) XercesParser::initialiseSchema - XML schema file 'Font.xsd' has been initialised.
02/08/2015 22:49:27 (Std) XercesParser::initialiseSchema - Attempting to load schema from file 'Falagard.xsd'.
02/08/2015 22:49:27 (Std) XercesParser::initialiseSchema - XML schema file 'Falagard.xsd' has been initialised.
02/08/2015 22:49:27 (Std) ===== Falagard 'root' element: look and feel parsing begins =====
02/08/2015 22:49:27 (Std) ===== Look and feel parsing completed =====
02/08/2015 22:49:27 (Std) No window renderer factories specified for module 'CEGUICoreWindowRendererSet' - adding all available factories...
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/Button' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/Button' added. (0x28bc550)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/Default' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/Default' added. (0x2704a10)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/Editbox' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/Editbox' added. (0x2704ad0)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/FrameWindow' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/FrameWindow' added. (0x27e26c0)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/ItemEntry' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/ItemEntry' added. (0x27e2780)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/ListHeader' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/ListHeader' added. (0x27efcd0)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/ListHeaderSegment' added. (0x27efd90)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/Listbox' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/Listbox' added. (0x27f1100)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/Menubar' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/Menubar' added. (0x27f11c0)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/MenuItem' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/MenuItem' added. (0x2711020)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/MultiColumnList' added. (0x27110e0)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/MultiLineEditbox' added. (0x27eea10)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/PopupMenu' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/PopupMenu' added. (0x27eead0)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/ProgressBar' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/ProgressBar' added. (0x27d99a0)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/ScrollablePane' added. (0x27d9a60)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/Scrollbar' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/Scrollbar' added. (0x28c8ad0)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/Slider' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/Slider' added. (0x26ffe40)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/Static' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/Static' added. (0x2a6efb0)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/StaticImage' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/StaticImage' added. (0x2717720)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/StaticText' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/StaticText' added. (0x2a6f1d0)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/TabButton' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/TabButton' added. (0x2718cc0)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/TabControl' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/TabControl' added. (0x2704460)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/Titlebar' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/Titlebar' added. (0x2718930)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/ToggleButton' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/ToggleButton' added. (0x2737020)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/Tooltip' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/Tooltip' added. (0x27047c0)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/ItemListbox' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/ItemListbox' added. (0x28bc360)
02/08/2015 22:49:27 (Std) Created WindowRendererFactory for 'Core/Tree' WindowRenderers.
02/08/2015 22:49:27 (Std) WindowRendererFactory 'Core/Tree' added. (0x2850220)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/Label' using base type 'DefaultWindow', window renderer 'Core/Default' Lo
ok'N'Feel 'TaharezLook/Label' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/Button' using base type 'CEGUI/PushButton', window renderer 'Core/Button'
Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/Checkbox' using base type 'CEGUI/ToggleButton', window renderer 'Core/Tog
gleButton' Look'N'Feel 'TaharezLook/Checkbox' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Core/Bu
tton' Look'N'Feel 'TaharezLook/ImageButton' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Core/T
oggleButton' Look'N'Feel 'TaharezLook/RadioButton' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Core/F
rameWindow' Look'N'Feel 'TaharezLook/FrameWindow' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Core/Titleba
r' Look'N'Feel 'TaharezLook/Titlebar' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox'
Look'N'Feel 'TaharezLook/Editbox' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window render
er 'Core/MultiLineEditbox' Look'N'Feel 'TaharezLook/MultiLineEditbox' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Core/Menubar'
Look'N'Feel 'TaharezLook/Menubar' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Core/Popup
Menu' Look'N'Feel 'TaharezLook/PopupMenu' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Core/MenuIte
m' Look'N'Feel 'TaharezLook/MenuItem' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window rendere
r 'Core/ProgressBar' Look'N'Feel 'TaharezLook/AltProgressBar' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/P
rogressBar' Look'N'Feel 'TaharezLook/ProgressBar' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Core/Progr
essBar' Look'N'Feel 'TaharezLook/VUMeter' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Co
re/Scrollbar' Look'N'Feel 'TaharezLook/VerticalScrollbar' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer '
Core/Scrollbar' Look'N'Feel 'TaharezLook/HorizontalScrollbar' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'C
ore/Button' Look'N'Feel 'TaharezLook/VerticalScrollbarThumb' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer
'Core/Button' Look'N'Feel 'TaharezLook/HorizontalScrollbarThumb' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window rendere
r 'Core/Scrollbar' Look'N'Feel 'TaharezLook/LargeVerticalScrollbar' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window render
er 'Core/Button' Look'N'Feel 'TaharezLook/LargeVerticalScrollbarThumb' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Core/TabBu
tton' Look'N'Feel 'TaharezLook/TabButton' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Core/Tab
Control' Look'N'Feel 'TaharezLook/TabControl' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Core/De
fault' Look'N'Feel 'TaharezLook/TabContentPane' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Core/Def
ault' Look'N'Feel 'TaharezLook/TabButtonPane' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Co
re/Listbox' Look'N'Feel 'TaharezLook/ComboDropList' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Core/Edit
box' Look'N'Feel 'TaharezLook/ComboEditbox' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Core/Default
' Look'N'Feel 'TaharezLook/Combobox' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Core/Listbox'
Look'N'Feel 'TaharezLook/Listbox' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Core/Lis
tHeader' Look'N'Feel 'TaharezLook/ListHeader' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window rend
erer 'Core/ListHeaderSegment' Look'N'Feel 'TaharezLook/ListHeaderSegment' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer
'Core/MultiColumnList' Look'N'Feel 'TaharezLook/MultiColumnList' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/Slider' using base type 'CEGUI/Slider', window renderer 'Core/Slider' Loo
k'N'Feel 'TaharezLook/Slider' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button'
Look'N'Feel 'TaharezLook/SliderThumb' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer '
Core/ScrollablePane' Look'N'Feel 'TaharezLook/ScrollablePane' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Core/Default'
Look'N'Feel 'TaharezLook/Spinner' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Core/Tooltip'
Look'N'Feel 'TaharezLook/Tooltip' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/StaticImage' using base type 'DefaultWindow', window renderer 'Core/Stati
cImage' Look'N'Feel 'TaharezLook/StaticImage' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/StaticText' using base type 'DefaultWindow', window renderer 'Core/Static
Text' Look'N'Feel 'TaharezLook/StaticText' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Core/I
temListbox' Look'N'Feel 'TaharezLook/ItemListbox' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Core/Ite
mEntry' Look'N'Feel 'TaharezLook/ListboxItem' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/GroupBox' using base type 'DefaultWindow', window renderer 'Core/Default'
Look'N'Feel 'TaharezLook/GroupBox' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) Creating falagard mapping for type 'TaharezLook/Tree' using base type 'CEGUI/Tree', window renderer 'Core/Tree' Look'N'Fe
el 'TaharezLook/Tree' and RenderEffect ''. (0x7ffd3a97abe0)
02/08/2015 22:49:27 (Std) XercesParser::initialiseSchema - Attempting to load schema from file 'Font.xsd'.
02/08/2015 22:49:27 (Std) XercesParser::initialiseSchema - XML schema file 'Font.xsd' has been initialised.
02/08/2015 22:49:27 (Std) [OgreRenderer] Created texture: DejaVuSans-10_auto_glyph_images_32
Re: [Bug] ItemListbox redraw regression on 0.8.4
Posted: Sun Aug 02, 2015 21:56
by lucebac
Hm. Have you tried running the WidgetDemo and checked whether your bug occurs there as well?
Re: [Bug] ItemListbox redraw regression on 0.8.4
Posted: Sun Aug 02, 2015 22:07
by Alain B
lucebac wrote:Hm. Have you tried running the WidgetDemo and checked whether your bug occurs there as well?
No. I'll be away from my machine for the next few days. Anyway, whether this bug happens with another sample code will mostly depend on the order of operations that code uses (see previous posts).
The most interesting information for now is whether my bug affects other setups too, or only my machine.
In the former case, this means this is a CEGUI or Ogre bug (and I tend to lean that way as this looks like a case of
sequential coupling, for now).
In the latter case, this means this is either a video card (software or hardware) issue or that something is wrong with the binaries built on my machine.
Re: [Bug] ItemListbox redraw regression on 0.8.4
Posted: Mon Aug 03, 2015 18:02
by Ident
What happens if you choose CEGUI's OpenGL Renderer, instead of the Ogre Renderer, with the same code?
Re: [Bug] ItemListbox redraw regression on 0.8.4
Posted: Sun Aug 09, 2015 12:02
by Alain B
Hello Ident.
Thank you for the reply. I had thought to try what you propose, but didn't have enough time then. I'll try ASAP and post the results.
Re: [Bug] ItemListbox redraw regression on 0.8.4
Posted: Sun Aug 09, 2015 14:50
by Ident
Okay good, just report back asap and we will try to help asap.
The reason why I asked you about the other Renderer is so that we can narrow down the issue. I want to find out if this is purely a rendering issue or one in CEGUI Core (unlikely).
Re: [Bug] ItemListbox redraw regression on 0.8.4
Posted: Sun Aug 09, 2015 15:16
by Alain B
Yes, we understood each other.
I just spent a couple hours trying to get CEGUI's OpenGL renderer to work with either SDL or by talking directly to glut, to no avail.
I've never used CEGUI with anything other than Ogre. If I send you SDL/glut code, would you have time to review it?
(I leeched most of the SDL code from
here.)
Re: [Bug] ItemListbox redraw regression on 0.8.4
Posted: Sun Aug 09, 2015 15:21
by Ident
No, unfortunately I dont have time for this. If you have a properly coded and working solution make a PR. However, there is currently a PR for SDL2 pending. Do you use SDL1 or SDL2? If you use SDL2 there are solutions out there already.
Edit: Mandatory link -
https://bitbucket.org/cegui/cegui/pull- ... e-and-sdl2This has not been merged but we are soon merging it.
Re: [Bug] ItemListbox redraw regression on 0.8.4
Posted: Sun Aug 09, 2015 16:04
by Alain B
I've been using Gentoo's libsdl-1.2.15 package.
I'm done for today. I'd rather not move to SDL 2 or replace my distro's package with git code for now.
I'll see when I have more time.
Re: [Bug] ItemListbox redraw regression on 0.8.4
Posted: Sun Aug 09, 2015 16:12
by Ident
Just to clarify, whether you use SDL1, SDL2, freeglut, openglut, glfw, whatever else, it does simply not matter. The only difference is how you handle input, create your window, notify CEGUi of changes etc.
What matters is that there is an OpenGL context and CEGUI only depends on OpenGL. The PR changes I asked for would be for the application templates and sample browser. Nothing in CEGUI needs to be changed in order for it to work in SDL1 and it has been used with SDL1 many times. If you didn't change any OpenGL states then CEGUI should just render correctly.
Re: [Bug] ItemListbox redraw regression on 0.8.4
Posted: Sun Aug 09, 2015 16:35
by Alain B
Well, now I am lost.
Compiling the SDL code
previously linked, only changing stuff related to resource loading, gives me a black window where the GUI takes only one ninth of the window (one third in height, on third in width) with the mouse cursor inverted on both X and Y axes.
Since the GUI is so small, when adding my item listbox code, I can't figure out how many items are rendered in the list.
Code: Select all
09/08/2015 18:31:49 (Std) ---- Version: 0.8.4 (Build: Aug 9 2015 GNU/Linux g++ 4.8.4 64 bit) ----
09/08/2015 18:31:49 (Std) ---- Renderer module is: CEGUI::OpenGLRenderer - Official OpenGL based 2nd generation renderer module. TextureTarget support enabled via FBO extension. --
--
09/08/2015 18:31:49 (Std) ---- XML Parser module is: CEGUI::XercesParser - Official Xerces-C++ based parser module for CEGUI ----
09/08/2015 18:31:49 (Std) ---- Image Codec module is: STBImageCodec - stb_image.c based image codec ----
09/08/2015 18:31:49 (Std) ---- Scripting module is: None ----