I'm upgrading from CEGUI 0.6.2 to 0.7.5, and one of my widgets now has something odd going on with its text colours that I can't figure out.
In the snapshot below, two of my "Entry" widgets are stacked one above the other, and everything is correct except that the text colours are wrong (there's actually a second set of text there too but it's too faint to see). What seems to be happening is that the text colour is being multiplied by itself before being used?!?!? Eg: in the snapshot below I've used the colour FFFF8040 (ie: [1.0, 0.5, 0.25]), but the colour on screen is FFFF4010 (ie: [1.0, 0.25, 0.0625])....
![Image](http://www.thewestinsider.com/stuff/mEntry.png)
Now my widget looknfeel xml is rather long-winded (as there's lots of different ways the widget can be configured), but if you search for "BLAH" in my looknfeel code below you'll only find it twice - once where I set this value and once where I use it. The rest of the script isn't really doing anything complex.
You'll see I've also tried putting in a <Colours> element rather than using a <ColourProperty> (which is now commented out) - this gives the same result, so nothing to do with it being read from of property or the property being modified.
Code: Select all
<WidgetLook name="Airway/mEntry">
<PropertyDefinition name="BLAH" initialValue="FFFF8040" redrawOnWrite="true" />
<PropertyDefinition name="NormalTitleColour" initialValue="FFABB0B4" redrawOnWrite="true" />
<PropertyDefinition name="HoverTitleColour" initialValue="FFEF7300" redrawOnWrite="true" />
<PropertyDefinition name="SelectedTitleColour" initialValue="FFEF7300" redrawOnWrite="true" />
<PropertyDefinition name="DisabledTitleColour" initialValue="FFABB0B4" redrawOnWrite="true" />
<PropertyDefinition name="NormalDescriptionColour" initialValue="FFABB0B4" redrawOnWrite="true" />
<PropertyDefinition name="HoverDescriptionColour" initialValue="FFFFFFFF" redrawOnWrite="true" />
<PropertyDefinition name="SelectedDescriptionColour" initialValue="FFFFFFFF" redrawOnWrite="true" />
<PropertyDefinition name="DisabledDescriptionColour" initialValue="FFABB0B4" redrawOnWrite="true" />
<PropertyDefinition name="ScoreColour" initialValue="FFFF0000" redrawOnWrite="true" />
<PropertyDefinition name="HasStub" initialValue="1" redrawOnWrite="true" layoutOnWrite="true"/>
<PropertyDefinition name="HasThumbnail" initialValue="1" redrawOnWrite="true" layoutOnWrite="true"/>
<PropertyDefinition name="HasScore" initialValue="1" redrawOnWrite="true" layoutOnWrite="true"/>
<PropertyDefinition name="ScoreWidth" initialValue="22" redrawOnWrite="true" layoutOnWrite="true"/>
<PropertyDefinition name="Title" initialValue="Entry" redrawOnWrite="true" />
<PropertyDefinition name="Description" initialValue="Description..." redrawOnWrite="true" />
<PropertyDefinition name="Score" initialValue="" redrawOnWrite="true" />
<PropertyDefinition name="TitleFont" initialValue="VerdanaBold-11" redrawOnWrite="true" />
<PropertyDefinition name="DescriptionFont" initialValue="Verdana-11" redrawOnWrite="true" />
<PropertyDefinition name="ScoreFont" initialValue="VerdanaBold-11" redrawOnWrite="true" />
<PropertyLinkDefinition name="Thumbnail" widget="__auto_thumb__" targetProperty="Thumbnail" redrawOnWrite="true" layoutOnWrite="true"/>
<!--Following properties are just for storage and aren't displayed-->
<PropertyDefinition name="FileName" initialValue="" redrawOnWrite="false" layoutOnWrite="false"/>
<Child type="Airway/mStub" nameSuffix="__auto_stub__">
<!-- Will display if HasStub == 1 (will shunt off left edge if HasStub == 0)-->
<Area>
<Dim type="LeftEdge">
<ImageDim imageset="Airway" image="mStub_Background" dimension="Width">
<DimOperator op="Multiply">
<PropertyDim name="HasStub" >
<DimOperator op="Subtract">
<AbsoluteDim value="1"/>
</DimOperator>
</PropertyDim>
</DimOperator>
</ImageDim>
</Dim>
<Dim type="TopEdge">
<AbsoluteDim value="0"/>
</Dim>
<Dim type="RightEdge">
<ImageDim imageset="Airway" image="mStub_Background" dimension="Width">
<DimOperator op="Multiply">
<PropertyDim name="HasStub" />
</DimOperator>
</ImageDim>
</Dim>
<Dim type="BottomEdge">
<UnifiedDim scale="1" type="Height"/>
</Dim>
</Area>
</Child>
<ImagerySection name="unselected_no_stub_if_needed">
<!-- Will display if HasStub == 0 (will shunt off left edge if HasStub == 1)-->
<FrameComponent>
<Area>
<Dim type="LeftEdge">
<AbsoluteDim value="0" >
<DimOperator op="Subtract">
<ImageDim imageset="Airway" image="mRoundRect4px_TL_VLight" dimension="Width">
<DimOperator op="Multiply">
<PropertyDim name="HasStub" />
</DimOperator>
</ImageDim>
</DimOperator>
</AbsoluteDim>
</Dim>
<Dim type="TopEdge">
<AbsoluteDim value="0"/>
</Dim>
<Dim type="RightEdge">
<ImageDim imageset="Airway" image="mRoundRect4px_TL_VLight" dimension="Width">
<DimOperator op="Subtract">
<ImageDim imageset="Airway" image="mRoundRect4px_TL_VLight" dimension="Width">
<DimOperator op="Multiply">
<PropertyDim name="HasStub" />
</DimOperator>
</ImageDim>
</DimOperator>
</ImageDim>
</Dim>
<Dim type="BottomEdge">
<UnifiedDim scale="1" type="Height"/>
</Dim>
</Area>
<Image type="TopLeftCorner" imageset="Airway" image="mRoundRect4px_TL_VLight" />
<Image type="BottomLeftCorner" imageset="Airway" image="mRoundRect4px_BL_VLight" />
<Image type="LeftEdge" imageset="Airway" image="mRoundRect4px_L_VLight" />
</FrameComponent>
</ImagerySection>
<ImagerySection name="selected_no_stub_if_needed">
<!-- Will display if HasStub == 0 (will shunt off left edge if HasStub == 1)-->
<FrameComponent>
<Area>
<Dim type="LeftEdge">
<AbsoluteDim value="0" >
<DimOperator op="Subtract">
<ImageDim imageset="Airway" image="mRoundRect4px_TL_Dark" dimension="Width">
<DimOperator op="Multiply">
<PropertyDim name="HasStub" />
</DimOperator>
</ImageDim>
</DimOperator>
</AbsoluteDim>
</Dim>
<Dim type="TopEdge">
<AbsoluteDim value="0"/>
</Dim>
<Dim type="RightEdge">
<ImageDim imageset="Airway" image="mRoundRect4px_TL_Dark" dimension="Width">
<DimOperator op="Subtract">
<ImageDim imageset="Airway" image="mRoundRect4px_TL_Dark" dimension="Width">
<DimOperator op="Multiply">
<PropertyDim name="HasStub" />
</DimOperator>
</ImageDim>
</DimOperator>
</ImageDim>
</Dim>
<Dim type="BottomEdge">
<UnifiedDim scale="1" type="Height"/>
</Dim>
</Area>
<Image type="TopLeftCorner" imageset="Airway" image="mRoundRect4px_TL_Dark" />
<Image type="BottomLeftCorner" imageset="Airway" image="mRoundRect4px_BL_Dark" />
<Image type="LeftEdge" imageset="Airway" image="mRoundRect4px_L_Dark" />
</FrameComponent>
</ImagerySection>
<Child type="Airway/Thumbnail" nameSuffix="__auto_thumb__">
<!-- Will display if HasThumbnail == 1 (will shunt off the top if HasThumbnail == 0)-->
<Area>
<Dim type="LeftEdge">
<WidgetDim widget="__auto_stub__" dimension="RightEdge">
<DimOperator op="Add">
<ImageDim imageset="Airway" image="mRoundRect4px_TL_VLight" dimension="Width">
<DimOperator op="Subtract">
<ImageDim imageset="Airway" image="mRoundRect4px_TL_VLight" dimension="Width">
<DimOperator op="Multiply">
<PropertyDim name="HasStub" />
</DimOperator>
</ImageDim>
</DimOperator>
</ImageDim>
</DimOperator>
</WidgetDim>
</Dim>
<Dim type="Width">
<UnifiedDim scale="1" type="Height">
<DimOperator op="Multiply">
<AbsoluteDim value="1.3333"/>
</DimOperator>
</UnifiedDim>
</Dim>
<Dim type="TopEdge">
<UnifiedDim scale="1" type="Height" >
<DimOperator op="Multiply">
<PropertyDim name="HasThumbnail" >
<DimOperator op="Subtract">
<AbsoluteDim value="1" />
</DimOperator>
</PropertyDim>
</DimOperator>
</UnifiedDim>
</Dim>
<Dim type="BottomEdge">
<UnifiedDim scale="1" type="Height" >
<DimOperator op="Multiply">
<PropertyDim name="HasThumbnail" />
</DimOperator>
</UnifiedDim>
</Dim>
</Area>
</Child>
<ImagerySection name="unselected_background">
<FrameComponent>
<Area>
<Dim type="LeftEdge">
<WidgetDim widget="__auto_stub__" dimension="RightEdge">
<DimOperator op="Add">
<ImageDim imageset="Airway" image="mRoundRect4px_TL_VLight" dimension="Width">
<DimOperator op="Subtract">
<ImageDim imageset="Airway" image="mRoundRect4px_TL_VLight" dimension="Width">
<DimOperator op="Multiply">
<PropertyDim name="HasStub" />
</DimOperator>
</ImageDim>
</DimOperator>
</ImageDim>
</DimOperator>
</WidgetDim>
</Dim>
<Dim type="TopEdge">
<AbsoluteDim value="0"/>
</Dim>
<Dim type="RightEdge">
<UnifiedDim scale="1" type="Width">
<DimOperator op="Subtract">
<PropertyDim name="HasScore">
<DimOperator op="Multiply">
<PropertyDim name="ScoreWidth">
<DimOperator op="Add">
<AbsoluteDim value="2"/>
</DimOperator>
</PropertyDim>
</DimOperator>
</PropertyDim>
</DimOperator>
</UnifiedDim>
</Dim>
<Dim type="BottomEdge">
<UnifiedDim scale="1" type="Height"/>
</Dim>
</Area>
<Image type="TopRightCorner" imageset="Airway" image="mRoundRect4px_TR_VLight" />
<Image type="BottomRightCorner" imageset="Airway" image="mRoundRect4px_BR_VLight" />
<Image type="RightEdge" imageset="Airway" image="mRoundRect4px_R_VLight" />
<Image type="TopEdge" imageset="Airway" image="mRoundRect4px_T_VLight" />
<Image type="BottomEdge" imageset="Airway" image="mRoundRect4px_B_VLight" />
<Image type="Background" imageset="Airway" image="mBGGreyVLight" />
</FrameComponent>
<FrameComponent>
<!-- Score Background -->
<Area>
<Dim type="LeftEdge">
<UnifiedDim scale="1" type="Width">
<DimOperator op="Subtract">
<PropertyDim name="HasScore">
<DimOperator op="Multiply">
<PropertyDim name="ScoreWidth"/>
</DimOperator>
</PropertyDim>
</DimOperator>
</UnifiedDim>
</Dim>
<Dim type="TopEdge">
<AbsoluteDim value="0"/>
</Dim>
<Dim type="RightEdge">
<UnifiedDim scale="1" type="Width"/>
</Dim>
<Dim type="BottomEdge">
<UnifiedDim scale="1" type="Height"/>
</Dim>
</Area>
<Image type="TopLeftCorner" imageset="Airway" image="mRoundRect4px_TL_VLight" />
<Image type="BottomLeftCorner" imageset="Airway" image="mRoundRect4px_BL_VLight" />
<Image type="TopRightCorner" imageset="Airway" image="mRoundRect4px_TR_VLight" />
<Image type="BottomRightCorner" imageset="Airway" image="mRoundRect4px_BR_VLight" />
<Image type="LeftEdge" imageset="Airway" image="mRoundRect4px_L_VLight" />
<Image type="RightEdge" imageset="Airway" image="mRoundRect4px_R_VLight" />
<Image type="TopEdge" imageset="Airway" image="mRoundRect4px_T_VLight" />
<Image type="BottomEdge" imageset="Airway" image="mRoundRect4px_B_VLight" />
<Image type="Background" imageset="Airway" image="mBGGreyVLight" />
</FrameComponent>
</ImagerySection>
<ImagerySection name="selected_background">
<FrameComponent>
<Area>
<Dim type="LeftEdge">
<WidgetDim widget="__auto_stub__" dimension="RightEdge">
<DimOperator op="Add">
<ImageDim imageset="Airway" image="mRoundRect4px_TL_Dark" dimension="Width">
<DimOperator op="Subtract">
<ImageDim imageset="Airway" image="mRoundRect4px_TL_Dark" dimension="Width">
<DimOperator op="Multiply">
<PropertyDim name="HasStub" />
</DimOperator>
</ImageDim>
</DimOperator>
</ImageDim>
</DimOperator>
</WidgetDim>
</Dim>
<Dim type="TopEdge">
<AbsoluteDim value="0"/>
</Dim>
<Dim type="RightEdge">
<UnifiedDim scale="1" type="Width">
<DimOperator op="Subtract">
<PropertyDim name="HasScore">
<DimOperator op="Multiply">
<PropertyDim name="ScoreWidth">
<DimOperator op="Add">
<AbsoluteDim value="2"/>
</DimOperator>
</PropertyDim>
</DimOperator>
</PropertyDim>
</DimOperator>
</UnifiedDim>
</Dim>
<Dim type="BottomEdge">
<UnifiedDim scale="1" type="Height"/>
</Dim>
</Area>
<Image type="TopRightCorner" imageset="Airway" image="mRoundRect4px_TR_Dark" />
<Image type="BottomRightCorner" imageset="Airway" image="mRoundRect4px_BR_Dark" />
<Image type="RightEdge" imageset="Airway" image="mRoundRect4px_R_Dark" />
<Image type="TopEdge" imageset="Airway" image="mRoundRect4px_T_Dark" />
<Image type="BottomEdge" imageset="Airway" image="mRoundRect4px_B_Dark" />
<Image type="Background" imageset="Airway" image="mBGGreyDark" />
</FrameComponent>
<FrameComponent>
<!-- Score Background -->
<Area>
<Dim type="LeftEdge">
<UnifiedDim scale="1" type="Width">
<DimOperator op="Subtract">
<PropertyDim name="HasScore">
<DimOperator op="Multiply">
<PropertyDim name="ScoreWidth"/>
</DimOperator>
</PropertyDim>
</DimOperator>
</UnifiedDim>
</Dim>
<Dim type="TopEdge">
<AbsoluteDim value="0"/>
</Dim>
<Dim type="RightEdge">
<UnifiedDim scale="1" type="Width"/>
</Dim>
<Dim type="BottomEdge">
<UnifiedDim scale="1" type="Height"/>
</Dim>
</Area>
<Image type="TopLeftCorner" imageset="Airway" image="mRoundRect4px_TL_Dark" />
<Image type="BottomLeftCorner" imageset="Airway" image="mRoundRect4px_BL_Dark" />
<Image type="TopRightCorner" imageset="Airway" image="mRoundRect4px_TR_Dark" />
<Image type="BottomRightCorner" imageset="Airway" image="mRoundRect4px_BR_Dark" />
<Image type="LeftEdge" imageset="Airway" image="mRoundRect4px_L_Dark" />
<Image type="RightEdge" imageset="Airway" image="mRoundRect4px_R_Dark" />
<Image type="TopEdge" imageset="Airway" image="mRoundRect4px_T_Dark" />
<Image type="BottomEdge" imageset="Airway" image="mRoundRect4px_B_Dark" />
<Image type="Background" imageset="Airway" image="mBGGreyDark" />
</FrameComponent>
</ImagerySection>
<ImagerySection name="title">
<TextComponent>
<Area>
<Dim type="LeftEdge" >
<WidgetDim widget="__auto_thumb__" dimension="RightEdge">
<DimOperator op="Add">
<AbsoluteDim value="7" />
</DimOperator>
</WidgetDim>
</Dim>
<Dim type="TopEdge" >
<AbsoluteDim value="6" />
</Dim>
<Dim type="RightEdge" >
<UnifiedDim scale="1" type="Width">
<DimOperator op="Subtract">
<PropertyDim name="HasScore">
<DimOperator op="Multiply">
<PropertyDim name="ScoreWidth">
<DimOperator op="Add">
<AbsoluteDim value="4"/>
</DimOperator>
</PropertyDim>
</DimOperator>
</PropertyDim>
</DimOperator>
</UnifiedDim>
</Dim>
<Dim type="Height" >
<AbsoluteDim value="13" />
</Dim>
</Area>
<TextProperty name="Title"/>
<FontProperty name="TitleFont"/>
<VertFormat type="TopAligned" />
<HorzFormat type="LeftAligned" />
</TextComponent>
</ImagerySection>
<ImagerySection name="description">
<TextComponent>
<Area>
<Dim type="LeftEdge" >
<WidgetDim widget="__auto_thumb__" dimension="RightEdge">
<DimOperator op="Add">
<AbsoluteDim value="7" />
</DimOperator>
</WidgetDim>
</Dim>
<Dim type="TopEdge" >
<AbsoluteDim value="20" />
</Dim>
<Dim type="RightEdge" >
<UnifiedDim scale="1" type="Width">
<DimOperator op="Subtract">
<PropertyDim name="HasScore">
<DimOperator op="Multiply">
<PropertyDim name="ScoreWidth">
<DimOperator op="Add">
<AbsoluteDim value="4"/>
</DimOperator>
</PropertyDim>
</DimOperator>
</PropertyDim>
</DimOperator>
</UnifiedDim>
</Dim>
<Dim type="Height" >
<AbsoluteDim value="26" />
</Dim>
</Area>
<TextProperty name="Description"/>
<FontProperty name="DescriptionFont"/>
<VertFormat type="TopAligned" />
<HorzFormat type="WordWrapLeftAligned" />
</TextComponent>
</ImagerySection>
<ImagerySection name="score">
<TextComponent>
<Area>
<Dim type="LeftEdge">
<UnifiedDim scale="1" type="Width">
<DimOperator op="Subtract">
<PropertyDim name="HasScore">
<DimOperator op="Multiply">
<PropertyDim name="ScoreWidth"/>
</DimOperator>
</PropertyDim>
</DimOperator>
</UnifiedDim>
</Dim>
<Dim type="TopEdge">
<AbsoluteDim value="0"/>
</Dim>
<Dim type="RightEdge">
<UnifiedDim scale="1" type="Width"/>
</Dim>
<Dim type="BottomEdge">
<UnifiedDim scale="1" type="Height"/>
</Dim>
</Area>
<TextProperty name="Score"/>
<FontProperty name="ScoreFont"/>
<VertFormat type="CentreAligned" />
<HorzFormat type="CentreAligned" />
</TextComponent>
</ImagerySection>
<StateImagery name="Normal">
<Layer>
<Section section="unselected_no_stub_if_needed" />
<Section section="unselected_background" />
<Section section="title">
<ColourProperty name="BLAH" />
<!--
<Colours topLeft="FF00FFFF" topRight="FF00FFFF" bottomLeft="FF00FFFF" bottomRight="FF00FFFF" />
-->
</Section>
<Section section="description">
<ColourProperty name="NormalDescriptionColour" />
</Section>
<Section section="score">
<ColourProperty name="ScoreColour" />
</Section>
</Layer>
</StateImagery>
<StateImagery name="Hover">
<Layer>
<Section section="unselected_no_stub_if_needed" />
<Section section="unselected_background" />
<Section section="title">
<!--
<ColourProperty name="HoverTitleColour" />
-->
<Colours topLeft="FF00FF00" topRight="FF00FF00" bottomLeft="FF00FF00" bottomRight="FF00FF00" />
</Section>
<Section section="description">
<ColourProperty name="HoverDescriptionColour" />
</Section>
<Section section="score">
<ColourProperty name="ScoreColour" />
</Section>
</Layer>
</StateImagery>
<StateImagery name="Disabled">
<Layer>
<Section section="unselected_no_stub_if_needed" />
<Section section="unselected_background" />
<Section section="title">
<ColourProperty name="DisabledTitleColour" />
</Section>
<Section section="description">
<ColourProperty name="DisabledDescriptionColour" />
</Section>
<Section section="score">
<ColourProperty name="DisabledDescriptionColour" />
</Section>
</Layer>
</StateImagery>
<StateImagery name="SelectedNormal">
<Layer>
<Section section="selected_no_stub_if_needed" />
<Section section="selected_background" />
<Section section="title">
<ColourProperty name="SelectedTitleColour" />
</Section>
<Section section="description">
<ColourProperty name="SelectedDescriptionColour" />
</Section>
<Section section="score">
<ColourProperty name="ScoreColour" />
</Section>
</Layer>
</StateImagery>
<StateImagery name="SelectedHover">
<Layer>
<Section section="selected_no_stub_if_needed" />
<Section section="selected_background" />
<Section section="title">
<ColourProperty name="SelectedTitleColour" />
</Section>
<Section section="description">
<ColourProperty name="SelectedDescriptionColour" />
</Section>
<Section section="score">
<ColourProperty name="ScoreColour" />
</Section>
</Layer>
</StateImagery>
<StateImagery name="SelectedDisabled">
<Layer>
<Section section="selected_no_stub_if_needed" />
<Section section="selected_background" />
<Section section="title">
<ColourProperty name="DisabledTitleColour" />
</Section>
<Section section="description">
<ColourProperty name="DisabledDescriptionColour" />
</Section>
<Section section="score">
<ColourProperty name="ScoreColour" />
</Section>
</Layer>
</StateImagery>
</WidgetLook>
And here's my log file (sorry - this could have been cleaner too
![Sad :(](./images/smilies/icon_sad.gif)
Code: Select all
29/11/2011 14:15:47 (Std) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
29/11/2011 14:15:47 (Std) + Crazy Eddie's GUI System - Event log +
29/11/2011 14:15:47 (Std) + (http://www.cegui.org.uk/) +
29/11/2011 14:15:47 (Std) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
29/11/2011 14:15:47 (Std) CEGUI::Logger singleton created. (010D1900)
29/11/2011 14:15:47 (Std)
29/11/2011 14:15:47 (Std) ********************************************************************************
29/11/2011 14:15:47 (Std) * Important: *
29/11/2011 14:15:47 (Std) * To get support at the CEGUI forums, you must post _at least_ the section *
29/11/2011 14:15:47 (Std) * of this log file indicated below. Failure to do this will result in no *
29/11/2011 14:15:47 (Std) * support being given; please do not waste our time. *
29/11/2011 14:15:47 (Std) ********************************************************************************
29/11/2011 14:15:47 (Std) ********************************************************************************
29/11/2011 14:15:47 (Std) * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM -------- *
29/11/2011 14:15:47 (Std) ********************************************************************************
29/11/2011 14:15:47 (Std) ---- Version 0.7.5 (Build: Nov 16 2011 Microsoft Windows MSVC++ 10.0 32 bit) ----
29/11/2011 14:15:47 (Std) ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ----
29/11/2011 14:15:47 (Std) ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
29/11/2011 14:15:47 (Std) ---- Image Codec module is: SILLYImageCodec - Official SILLY based image codec ----
29/11/2011 14:15:47 (Std) ---- Scripting module is: None ----
29/11/2011 14:15:47 (Std) ********************************************************************************
29/11/2011 14:15:47 (Std) * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM -------- *
29/11/2011 14:15:47 (Std) ********************************************************************************
29/11/2011 14:15:47 (Std)
29/11/2011 14:15:47 (Std) ---- Begining CEGUI System initialisation ----
29/11/2011 14:15:47 (Std) CEGUI::ImagesetManager singleton created (010D05C0)
29/11/2011 14:15:47 (Std) CEGUI::FontManager singleton created. (010EE698)
29/11/2011 14:15:47 (Std) CEGUI::WindowFactoryManager singleton created
29/11/2011 14:15:47 (Std) CEGUI::WindowManager singleton created (07E883E0)
29/11/2011 14:15:47 (Std) CEGUI::SchemeManager singleton created. (07E76288)
29/11/2011 14:15:47 (Std) CEGUI::MouseCursor singleton created. (07E764F8)
29/11/2011 14:15:47 (Std) CEGUI::GlobalEventSet singleton created. (07E882F0)
29/11/2011 14:15:47 (Std) CEGUI::AnimationManager singleton created (010EE908)
29/11/2011 14:15:47 (Std) CEGUI::WidgetLookManager singleton created. (010B5038)
29/11/2011 14:15:47 (Std) CEGUI::WindowRendererManager singleton created (010EE2F8)
29/11/2011 14:15:47 (Std) CEGUI::RenderEffectManager singleton created (010EE3A0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'DefaultWindow' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'DefaultWindow' windows added. (010A7BE0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'DragContainer' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'DragContainer' windows added. (01112520)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'ScrolledContainer' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'ScrolledContainer' windows added. (011126A0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'ClippedContainer' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'ClippedContainer' windows added. (01112820)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/Checkbox' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/Checkbox' windows added. (011129A0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/PushButton' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/PushButton' windows added. (01112B20)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/RadioButton' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/RadioButton' windows added. (01112CA0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/Combobox' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/Combobox' windows added. (01112E20)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/ComboDropList' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/ComboDropList' windows added. (01112FA0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/Editbox' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/Editbox' windows added. (01113120)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/FrameWindow' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/FrameWindow' windows added. (011132A0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/ItemEntry' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/ItemEntry' windows added. (01113420)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/Listbox' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/Listbox' windows added. (011135A0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/ListHeader' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/ListHeader' windows added. (01113720)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (011138A0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/Menubar' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/Menubar' windows added. (01113A20)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/PopupMenu' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/PopupMenu' windows added. (01113BA0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/MenuItem' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/MenuItem' windows added. (01113D20)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/MultiColumnList' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/MultiColumnList' windows added. (01113EA0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (01114020)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/ProgressBar' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/ProgressBar' windows added. (011141A0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/ScrollablePane' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/ScrollablePane' windows added. (01114320)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/Scrollbar' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/Scrollbar' windows added. (011144A0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/Slider' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/Slider' windows added. (01114620)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/Spinner' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/Spinner' windows added. (011147A0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/TabButton' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/TabButton' windows added. (01114920)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/TabControl' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/TabControl' windows added. (01114AA0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/Thumb' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/Thumb' windows added. (01114C20)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/Titlebar' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/Titlebar' windows added. (01114DA0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/Tooltip' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/Tooltip' windows added. (01114FE0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/ItemListbox' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/ItemListbox' windows added. (01115160)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/GroupBox' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/GroupBox' windows added. (011152E0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'CEGUI/Tree' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'CEGUI/Tree' windows added. (01115460)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'HorizontalLayoutContainer' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'HorizontalLayoutContainer' windows added. (011155E0)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'VerticalLayoutContainer' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'VerticalLayoutContainer' windows added. (01115760)
29/11/2011 14:15:47 (Std) Created WindowFactory for 'GridLayoutContainer' windows.
29/11/2011 14:15:47 (Std) WindowFactory for 'GridLayoutContainer' windows added. (011158E0)
29/11/2011 14:15:47 (Std) Window type alias named 'DefaultGUISheet' added for window type 'DefaultWindow'.
29/11/2011 14:15:47 (Std) CEGUI::System singleton created. (0107FA90)
29/11/2011 14:15:47 (Std) ---- CEGUI System initialisation completed ----
29/11/2011 14:15:47 (Std)
29/11/2011 14:15:47 (Std) Started creation of Scheme from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI GUIScheme name: Airway
29/11/2011 14:15:47 (Std) Started creation of Imageset from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI Imageset name: Airway
29/11/2011 14:15:47 (Std) ---- Source texture file: Airway.png in resource group: (Default)
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: VerdanaBold-11
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: verdanab.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 8
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: Verdana-11
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: verdana.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 8
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: VerdanaBold-14
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: verdanab.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 9
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: Verdana-14
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: verdana.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 9
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: VerdanaBold-16
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: verdanab.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 11
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: Verdana-16
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: verdana.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 11
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: VerdanaBold-30
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: verdanab.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 18
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: Verdana-30
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: verdana.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 18
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: BlueHighway-14
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: bluehigh.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 14
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: BlueHighway-30
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: bluehigh.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 30
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: BlueHighway-24
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: bluehigh.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 24
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: BlueHighway-20
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: bluehigh.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 20
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: BlueHighway-16
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: bluehigh.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 16
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: BlueHighway-12
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: bluehigh.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 12
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: BlueHighway-10
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: bluehigh.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 10
29/11/2011 14:15:47 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:47 (Std) ---- CEGUI font name: BlueHighway-8
29/11/2011 14:15:47 (Std) ---- Font type: FreeType
29/11/2011 14:15:47 (Std) ---- Source file: bluehigh.ttf in resource group: (Default)
29/11/2011 14:15:47 (Std) ---- Real point size: 8
29/11/2011 14:15:47 (Std) ===== Falagard 'root' element: look and feel parsing begins =====
29/11/2011 14:15:48 (Std) ===== Look and feel parsing completed =====
29/11/2011 14:15:48 (Std) No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/Button' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/Button' added. (08E87A28)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/Default' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/Default' added. (08EED4C0)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/Editbox' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/Editbox' added. (08FF17A0)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/FrameWindow' added. (090476D8)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/ItemEntry' added. (0902DA58)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/ListHeader' added. (0902DB10)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/ListHeaderSegment' added. (09045170)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/Listbox' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/Listbox' added. (08FD04D0)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/Menubar' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/Menubar' added. (08FD0588)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/MenuItem' added. (0902E3E8)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/MultiColumnList' added. (07F93820)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/MultiLineEditbox' added. (08EED2E0)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/PopupMenu' added. (07E9A6B0)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/ProgressBar' added. (08EEC1B0)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/ScrollablePane' added. (08EEC330)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/Scrollbar' added. (08EEC4B0)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/Slider' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/Slider' added. (08EEC630)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/Static' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/Static' added. (09033240)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/StaticImage' added. (090333C0)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/StaticText' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/StaticText' added. (09033540)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/SystemButton' added. (090336C0)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/TabButton' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/TabButton' added. (09033840)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/TabControl' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/TabControl' added. (0903FBD0)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/Titlebar' added. (0903FD50)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/ToggleButton' added. (0903FED0)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/Tooltip' added. (09040050)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/ItemListbox' added. (090401D0)
29/11/2011 14:15:48 (Std) Created WindowRendererFactory for 'Falagard/Tree' WindowRenderers.
29/11/2011 14:15:48 (Std) WindowRendererFactory 'Falagard/Tree' added. (01115C88)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/VerticalTab' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'Airway/VerticalTab' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/VTab_Tab' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'Airway/VTab_Tab' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/VTab_Panel' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'Airway/VTab_Panel' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/Thumbnail' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'Airway/Thumbnail' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/FilePreview' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'Airway/FilePreview' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/FileSelected' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'Airway/FileSelected' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/SessionPreview' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'Airway/SessionPreview' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'Airway/Slider' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'Airway/SliderThumb' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'Airway/Button' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'Airway/FrameWindow' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'Airway/Titlebar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/SystemButton' Look'N'Feel 'Airway/Button' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'Airway/ImageButton' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'Airway/VerticalScrollbar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'Airway/HorizontalScrollbar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'Airway/VerticalScrollbarThumb' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'Airway/HorizontalScrollbarThumb' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'Airway/ComboDropList' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'Airway/ComboEditbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'Airway/Combobox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'Airway/Editbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'Airway/Checkbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'Airway/RadioButton' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/PaneBorder' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'Airway/PaneBorder' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' Look'N'Feel 'Airway/ScrollablePane' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/ScrollableBorderedPane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' Look'N'Feel 'Airway/ScrollableBorderedPane' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' Look'N'Feel 'Airway/StaticText' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'Airway/StaticImage' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/OutlinedText' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'Airway/OutlinedText' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/ColoredArea' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'Airway/ColoredArea' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' Look'N'Feel 'Airway/Listbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mTabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' Look'N'Feel 'Airway/mTabButton' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mTabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' Look'N'Feel 'Airway/mTabControl' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mTabContentPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'Airway/mTabContentPane' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mTabButtonPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'Airway/mTabButtonPane' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mFakeTabButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'Airway/mFakeTabButton' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'Airway/mButton' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mToolIcon' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'Airway/mToolIcon' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mImageButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'Airway/mImageButton' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mBorder1' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'Airway/mBorder1' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mFloatingPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'Airway/mFloatingPane' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'Airway/mVerticalScrollbar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mHorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'Airway/mHorizontalScrollbar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'Airway/mVerticalScrollbarThumb' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mHorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'Airway/mHorizontalScrollbarThumb' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' Look'N'Feel 'Airway/mScrollablePane' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'Airway/mComboDropList' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'Airway/mComboEditbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mCombobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'Airway/mCombobox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mEditbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'Airway/mEditbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mMultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' Look'N'Feel 'Airway/mMultiLineEditbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mSlider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'Airway/mSlider' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mSliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'Airway/mSliderThumb' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mCheckbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'Airway/mCheckbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mGenericPreview' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'Airway/mGenericPreview' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mFilePreview' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'Airway/mFilePreview' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mSessionPreview' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'Airway/mSessionPreview' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mPlayback' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'Airway/mPlayback' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mPlaybackThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'Airway/mPlaybackThumb' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mTitlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'Airway/mTitlebar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mFrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'Airway/mFrameWindow' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mStub' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'Airway/mStub' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/mEntry' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'Airway/mEntry' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'Airway/Task' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'Airway/Task' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Started creation of Scheme from XML specification:
29/11/2011 14:15:48 (Std) ---- CEGUI GUIScheme name: TaharezLook
29/11/2011 14:15:48 (Std) Started creation of Imageset from XML specification:
29/11/2011 14:15:48 (Std) ---- CEGUI Imageset name: TaharezLook
29/11/2011 14:15:48 (Std) ---- Source texture file: TaharezLook.tga in resource group: (Default)
29/11/2011 14:15:48 (Std) ===== Falagard 'root' element: look and feel parsing begins =====
29/11/2011 14:15:48 (Std) ===== Look and feel parsing completed =====
29/11/2011 14:15:48 (Std) No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'TaharezLook/Checkbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/ImageButton' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'TaharezLook/RadioButton' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'TaharezLook/FrameWindow' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'TaharezLook/Titlebar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/SystemButton' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'TaharezLook/Editbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' Look'N'Feel 'TaharezLook/MultiLineEditbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Falagard/Menubar' Look'N'Feel 'TaharezLook/Menubar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Falagard/PopupMenu' Look'N'Feel 'TaharezLook/PopupMenu' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Falagard/MenuItem' Look'N'Feel 'TaharezLook/MenuItem' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/AltProgressBar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/ProgressBar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/VUMeter' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/VerticalScrollbar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/HorizontalScrollbar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/VerticalScrollbarThumb' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/HorizontalScrollbarThumb' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/LargeVerticalScrollbar' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/LargeVerticalScrollbarThumb' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' Look'N'Feel 'TaharezLook/TabButton' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' Look'N'Feel 'TaharezLook/TabControl' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/TabContentPane' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/TabButtonPane' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'TaharezLook/ComboDropList' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'TaharezLook/ComboEditbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/Combobox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' Look'N'Feel 'TaharezLook/Listbox' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Falagard/ListHeader' Look'N'Feel 'TaharezLook/ListHeader' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Falagard/ListHeaderSegment' Look'N'Feel 'TaharezLook/ListHeaderSegment' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' Look'N'Feel 'TaharezLook/MultiColumnList' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'TaharezLook/Slider' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/SliderThumb' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' Look'N'Feel 'TaharezLook/ScrollablePane' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/Spinner' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' Look'N'Feel 'TaharezLook/Tooltip' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'TaharezLook/StaticImage' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Creating falagard mapping for type 'TaharezLook/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' Look'N'Feel 'TaharezLook/StaticText' and RenderEffect ''. (002ECDDC)
29/11/2011 14:15:48 (Std) Started creation of Font from XML specification:
29/11/2011 14:15:48 (Std) ---- CEGUI font name: VerdanaBold-11
29/11/2011 14:15:48 (Std) ---- Font type: FreeType
29/11/2011 14:15:48 (Std) ---- Source file: verdanab.ttf in resource group: (Default)
29/11/2011 14:15:48 (Std) ---- Real point size: 8
29/11/2011 14:15:48 (Std) ---- Returning existing instance of Font named 'VerdanaBold-11'.
29/11/2011 14:15:48 (Std) BasicRenderedStringParser::processControlString: unable to make sense of control string 'Esc'. Ignoring!
29/11/2011 14:15:48 (Std) Attempting to create Imageset 'VerdanaBold-14_auto_glyph_images_ ' with texture only.
29/11/2011 14:15:48 (Std) BasicRenderedStringParser::processControlString: unable to make sense of control string 'Esc'. Ignoring!
29/11/2011 14:15:48 (Std) Attempting to create Imageset 'BlueHighway-14_auto_glyph_images_ ' with texture only.
29/11/2011 14:15:48 (Error) ScrolledContainerProperties::ChildExtentsArea property does not support being set.
29/11/2011 14:15:48 (Std) Attempting to create Imageset 'VerdanaBold-11_auto_glyph_images_ ' with texture only.
29/11/2011 14:15:48 (Std) Attempting to create Imageset 'Verdana-11_auto_glyph_images_ ' with texture only.
29/11/2011 14:15:48 (Error) ScrolledContainerProperties::ChildExtentsArea property does not support being set.
29/11/2011 14:15:49 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(124) : There is no Property named 'HorizontalSlider' available in the set.
29/11/2011 14:15:49 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(124) : There is no Property named 'HorizontalSlider' available in the set.
29/11/2011 14:15:49 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(124) : There is no Property named 'HorizontalSlider' available in the set.
29/11/2011 14:15:50 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(124) : There is no Property named 'HorizontalSlider' available in the set.
29/11/2011 14:15:50 (Error) ScrolledContainerProperties::ChildExtentsArea property does not support being set.
29/11/2011 14:15:50 (Std) Attempting to create Imageset 'Verdana-14_auto_glyph_images_ ' with texture only.
29/11/2011 14:15:50 (Std) Attempting to create Imageset 'VerdanaBold-16_auto_glyph_images_ ' with texture only.
29/11/2011 14:15:51 (Error) ScrolledContainerProperties::ChildExtentsArea property does not support being set.
29/11/2011 14:15:52 (Error) ScrolledContainerProperties::ChildExtentsArea property does not support being set.
29/11/2011 14:15:53 (Error) ScrolledContainerProperties::ChildExtentsArea property does not support being set.
29/11/2011 14:15:53 (Error) ScrolledContainerProperties::ChildExtentsArea property does not support being set.
29/11/2011 14:15:53 (Error) ScrolledContainerProperties::ChildExtentsArea property does not support being set.
29/11/2011 14:15:53 (Error) ScrolledContainerProperties::ChildExtentsArea property does not support being set.
29/11/2011 14:15:53 (Std) ---- Successfully completed loading of GUI layout from 'Airway.layout' ----
29/11/2011 14:15:54 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:54 (Std) Attempting to create Imageset 'thumb_.._.._tutorials_Basic-Airway-Anatomy_thumb.png' using image file '../../tutorials/Basic Airway Anatomy/thumb.png'.
29/11/2011 14:15:54 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:54 (Std) Attempting to create Imageset 'thumb_.._.._tutorials_Basic-Airway-Anatomy_Oral-Bronchoscopy_thumb.png' using image file '../../tutorials/Basic Airway Anatomy/Oral Bronchoscopy/thumb.png'.
29/11/2011 14:15:54 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:54 (Std) Attempting to create Imageset 'thumb_.._.._tutorials_Basic-Airway-Anatomy_Nasal-Bronchoscopy_thumb.png' using image file '../../tutorials/Basic Airway Anatomy/Nasal Bronchoscopy/thumb.png'.
29/11/2011 14:15:54 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:54 (Std) Attempting to create Imageset 'thumb_.._.._tutorials_Basic-Airway-Anatomy_Identify-Lung-Segments---Guided_thumb.png' using image file '../../tutorials/Basic Airway Anatomy/Identify Lung Segments - Guided/thumb.png'.
29/11/2011 14:15:54 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:54 (Std) Attempting to create Imageset 'thumb_.._.._tutorials_Basic-Airway-Anatomy_Identify-Lung-Segments---Test_thumb.png' using image file '../../tutorials/Basic Airway Anatomy/Identify Lung Segments - Test/thumb.png'.
29/11/2011 14:15:54 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:54 (Std) Attempting to create Imageset 'thumb_.._.._tutorials_Sampler-Set-1_thumb.png' using image file '../../tutorials/Sampler Set 1/thumb.png'.
29/11/2011 14:15:55 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:55 (Std) Attempting to create Imageset 'thumb_.._.._tutorials_Sampler-Set-1_Pain-on-Swallowing_thumb.png' using image file '../../tutorials/Sampler Set 1/Pain on Swallowing/thumb.png'.
29/11/2011 14:15:55 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:55 (Std) Attempting to create Imageset 'thumb_.._.._tutorials_Sampler-Set-1_Hoarse_thumb.png' using image file '../../tutorials/Sampler Set 1/Hoarse/thumb.png'.
29/11/2011 14:15:55 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:55 (Std) Attempting to create Imageset 'thumb_.._.._tutorials_Sampler-Set-1_Positioning-for-an-ET-Tube-1_thumb.png' using image file '../../tutorials/Sampler Set 1/Positioning for an ET Tube 1/thumb.png'.
29/11/2011 14:15:55 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:55 (Std) Attempting to create Imageset 'thumb_.._.._tutorials_Sampler-Set-1_Positioning-for-an-ET-Tube-2_thumb.png' using image file '../../tutorials/Sampler Set 1/Positioning for an ET Tube 2/thumb.png'.
29/11/2011 14:15:55 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:55 (Std) Attempting to create Imageset 'thumb_.._.._tutorials_Sampler-Set-1_Using-a-Berman-Airway_thumb.png' using image file '../../tutorials/Sampler Set 1/Using a Berman Airway/thumb.png'.
29/11/2011 14:15:55 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:55 (Std) Attempting to create Imageset 'thumb_.._.._tutorials_Sampler-Set-1_Using-a-Laryngeal-Mask_thumb.png' using image file '../../tutorials/Sampler Set 1/Using a Laryngeal Mask/thumb.png'.
29/11/2011 14:15:55 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:56 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:56 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:56 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:56 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:56 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:57 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:57 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:57 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:57 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:57 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:57 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:57 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:57 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:57 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:57 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:58 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:58 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:58 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:58 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:58 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:58 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:58 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:58 (Error) CEGUI::UnknownObjectException in file ..\..\..\cegui\src\CEGUIPropertySet.cpp(109) : There is no Property named 'HasThumbnail' available in the set.
29/11/2011 14:15:58 (Std) Attempting to create Imageset '.._.._media_gui_Welcome.png' using image file '../../media/gui/Welcome.png'.
29/11/2011 14:15:59 (Std) Attempting to create Imageset 'Lidocaine' using image file '../../media/gui/Lidocaine.png'.
29/11/2011 14:15:59 (Std) Attempting to create Imageset 'Verdana-16_auto_glyph_images_ ' with texture only.