Page 1 of 1

[SOLVED] Label colour of pushed ToggleButton too dark

Posted: Fri May 11, 2012 19:21
by BrightBit
Hello again,

I created a ToggleButton that allows the definition of a text colour for its 'pushed' state. However, it looks as if the the text/label is drawn twice and the colours of these two labels are multiplied. I defined a middle grey value (0.5, i.e. #FF808080) for the pushed state but the final result on screen is a much darker grey (0.25, i.e. #FF404040). Using a normal button instead of a toggle buttons works just fine. It's only the ToggleButton that behaves differently.

Here's the corresponding entry of my looknfeel file (simplified for convenience):

Code: Select all

<WidgetLook name="BNBWidgets/ToggleButton">
   <!-- unimportant defintions commented out for simplicity -->
   <PropertyDefinition name="HoverTextColour" initialValue="FFFFFFFF" redrawOnWrite="true" />
   <PropertyDefinition name="PushedTextColour" initialValue="FF808080" redrawOnWrite="true" />
   <PropertyDefinition name="MaleGender" initialValue="Male" redrawOnWrite="true" />
   <PropertyDefinition name="FemaleGender" initialValue="Female" redrawOnWrite="true" />

   <ImagerySection name="labelMale">
      <TextComponent>
         <Area><!-- unimportant area dims --></Area>
         <VertFormat type="CentreAligned" />
         <HorzFormat type="WordWrapCentreAligned" />
         <TextProperty name="MaleGender" />
      </TextComponent>
   </ImagerySection>
   <ImagerySection name="labelMale_pushed">
      <TextComponent>
         <Area><!-- unimportant area dims --></Area>
         <VertFormat type="CentreAligned" />
         <HorzFormat type="WordWrapCentreAligned" />
         <TextProperty name="MaleGender" />
      </TextComponent>
   </ImagerySection>
   <ImagerySection name="labelFemale">
      <TextComponent>
         <Area><!-- unimportant area dims --></Area>
         <VertFormat type="CentreAligned" />
         <HorzFormat type="WordWrapCentreAligned" />
         <TextProperty name="FemaleGender" />
      </TextComponent>
   </ImagerySection>
   <ImagerySection name="labelFemale_pushed">
      <TextComponent>
         <Area><!-- unimportant area dims --></Area>
         <VertFormat type="CentreAligned" />
         <HorzFormat type="WordWrapCentreAligned" />
         <TextProperty name="FemaleGender" />
      </TextComponent>
   </ImagerySection>

   <ImagerySection name="normal">
      <FrameComponent>
         <Area><!-- unimportant area dims --></Area>
         <!-- unimportant image tags -->
      </FrameComponent>
   </ImagerySection>
   <ImagerySection name="hover">
      <FrameComponent>
         <Area><!-- unimportant area dims --></Area>
         <!-- unimportant image tags -->
      </FrameComponent>
   </ImagerySection>
   <ImagerySection name="pushed">
      <FrameComponent>
         <Area><!-- unimportant area dims --></Area>
         <!-- unimportant image tags -->
      </FrameComponent>
   </ImagerySection>
   <StateImagery name="Normal">
      <Layer>
         <Section section="normal" />
         <Section section="labelMale">  <ColourProperty name="NormalTextColour" /> </Section>
      </Layer>
   </StateImagery>
   <StateImagery name="Hover">
      <Layer>
         <Section section="normal" />
         <Section section="labelMale">  <ColourProperty name="HoverTextColour" /> </Section>
      </Layer>
   </StateImagery>
   <StateImagery name="Disabled">
      <Layer>
         <Section section="normal" />
         <Section section="labelMale">  <ColourProperty name="DisabledTextColour" /> </Section>
      </Layer>
   </StateImagery>
   <StateImagery name="Pushed">
      <Layer>
         <Section section="pushed" />
         <Section section="labelMale_pushed">  <ColourProperty name="PushedTextColour" /> </Section>
      </Layer>
   </StateImagery>
   <StateImagery name="SelectedNormal">
      <Layer>
         <Section section="normal" />
         <Section section="labelFemale"> <ColourProperty name="NormalTextColour" /> </Section>
      </Layer>
   </StateImagery>
   <StateImagery name="SelectedHover">
      <Layer>
         <Section section="normal" />
         <Section section="labelFemale"> <ColourProperty name="HoverTextColour" /> </Section>
      </Layer>
   </StateImagery>
   <StateImagery name="SelectedDisabled">
      <Layer>
         <Section section="normal" />
         <Section section="labelFemale"> <ColourProperty name="DisabledTextColour" /> </Section>
      </Layer>
   </StateImagery>
   <StateImagery name="SelectedPushed">
      <Layer>
         <Section section="pushed" />
         <Section section="labelFemale_pushed"> <ColourProperty name="PushedTextColour" /> </Section>
      </Layer>
   </StateImagery>
</WidgetLook>

Image

I can give you the complete file if you wish. The image above is a rough illustration for my problem. The left image is the ToggleButton creating the dark grey colour and on the right image you see the version with a normal Button. Am I doing something wrong or is this a bug?

CEGUI log:

Code: Select all

11/05/2012 21:19:43 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
11/05/2012 21:19:43 (Std)    +                     Crazy Eddie's GUI System - Event log                    +
11/05/2012 21:19:43 (Std)    +                          (http://www.cegui.org.uk/)                         +
11/05/2012 21:19:43 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

11/05/2012 21:19:43 (Std)    CEGUI::Logger singleton created. (003A0588)
11/05/2012 21:19:43 (Std)    
11/05/2012 21:19:43 (Std)    ********************************************************************************
11/05/2012 21:19:43 (Std)    * Important:                                                                   *
11/05/2012 21:19:43 (Std)    *     To get support at the CEGUI forums, you must post _at least_ the section *
11/05/2012 21:19:43 (Std)    *     of this log file indicated below.  Failure to do this will result in no  *
11/05/2012 21:19:43 (Std)    *     support being given; please do not waste our time.                       *
11/05/2012 21:19:43 (Std)    ********************************************************************************
11/05/2012 21:19:43 (Std)    ********************************************************************************
11/05/2012 21:19:43 (Std)    * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM       -------- *
11/05/2012 21:19:43 (Std)    ********************************************************************************
11/05/2012 21:19:43 (Std)    ---- Version 0.7.7 (Build: Apr  7 2012 Microsoft Windows MSVC++ 10.0 32 bit) ----
11/05/2012 21:19:43 (Std)    ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ----
11/05/2012 21:19:43 (Std)    ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
11/05/2012 21:19:43 (Std)    ---- Image Codec module is: OgreImageCodec - Integrated ImageCodec using the Ogre engine. ----
11/05/2012 21:19:43 (Std)    ---- Scripting module is: None ----
11/05/2012 21:19:43 (Std)    ********************************************************************************
11/05/2012 21:19:43 (Std)    * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM         -------- *
11/05/2012 21:19:43 (Std)    ********************************************************************************
11/05/2012 21:19:43 (Std)    
11/05/2012 21:19:43 (Std)    ---- Begining CEGUI System initialisation ----
11/05/2012 21:19:43 (Std)    CEGUI::ImagesetManager singleton created (003A04A8)
11/05/2012 21:19:43 (Std)    CEGUI::FontManager singleton created. (003A3090)
11/05/2012 21:19:43 (Std)    CEGUI::WindowFactoryManager singleton created
11/05/2012 21:19:43 (Std)    CEGUI::WindowManager singleton created (003A3BA8)
11/05/2012 21:19:43 (Std)    CEGUI::SchemeManager singleton created. (003A06F0)
11/05/2012 21:19:43 (Std)    CEGUI::MouseCursor singleton created. (003A3630)
11/05/2012 21:19:43 (Std)    CEGUI::GlobalEventSet singleton created. (0039CAF0)
11/05/2012 21:19:43 (Std)    CEGUI::AnimationManager singleton created (003A36A0)
11/05/2012 21:19:43 (Std)    CEGUI::WidgetLookManager singleton created. (0039FBC8)
11/05/2012 21:19:43 (Std)    CEGUI::WindowRendererManager singleton created (0039FBB0)
11/05/2012 21:19:43 (Std)    CEGUI::RenderEffectManager singleton created (003A2AF8)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'DefaultWindow' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'DefaultWindow' windows added. (003A0A88)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'DragContainer' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'DragContainer' windows added. (003A0B30)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'ScrolledContainer' windows added. (003A0BD8)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'ClippedContainer' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'ClippedContainer' windows added. (003A0C80)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/Checkbox' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/Checkbox' windows added. (003A0D28)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (003A0DD0)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (003A0E78)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (003A0F20)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (003A0FC8)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (003A7C18)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (003A7CC0)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (003A7D68)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (003A7E10)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (003A7EB8)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (003A7F60)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (003A8008)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (003A80B0)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (003A8158)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (003A8200)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (003A82A8)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (003A8350)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (003A83F8)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (003A84A0)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (003A8548)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (003A85F0)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (003A8698)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (003A8740)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (003A87E8)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (003A8890)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (003A8938)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (003A89E0)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (003A8A88)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (003A8B30)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'HorizontalLayoutContainer' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows added. (003A8BD8)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'VerticalLayoutContainer' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'VerticalLayoutContainer' windows added. (003A8C80)
11/05/2012 21:19:43 (Std)    Created WindowFactory for 'GridLayoutContainer' windows.
11/05/2012 21:19:43 (Std)    WindowFactory for 'GridLayoutContainer' windows added. (003A8D28)
11/05/2012 21:19:43 (Std)    Window type alias named 'DefaultGUISheet' added for window type 'DefaultWindow'.
11/05/2012 21:19:43 (Std)    CEGUI::System singleton created. (003A0238)
11/05/2012 21:19:43 (Std)    ---- CEGUI System initialisation completed ----
11/05/2012 21:19:43 (Std)    
11/05/2012 21:19:43 (Std)    Started creation of Scheme from XML specification:
11/05/2012 21:19:43 (Std)    ---- CEGUI GUIScheme name: BNBScheme
11/05/2012 21:19:43 (Std)    Started creation of Imageset from XML specification:
11/05/2012 21:19:43 (Std)    ---- CEGUI Imageset name: BNBWidgets
11/05/2012 21:19:43 (Std)    ---- Source texture file: ../imagesets/BNBWidgets.png in resource group: (Default)
11/05/2012 21:19:44 (Std)    Started creation of Imageset from XML specification:
11/05/2012 21:19:44 (Std)    ---- CEGUI Imageset name: BNBIntro
11/05/2012 21:19:44 (Std)    ---- Source texture file: ../imagesets/BNBIntro.png in resource group: (Default)
11/05/2012 21:19:44 (Std)    Started creation of Font from XML specification:
11/05/2012 21:19:44 (Std)    ---- CEGUI font name: PixelFont
11/05/2012 21:19:44 (Std)    ----       Font type: Pixmap
11/05/2012 21:19:44 (Std)    ----     Source file: PixelFont.imageset in resource group: (Default)
11/05/2012 21:19:44 (Std)    Started creation of Imageset from XML specification:
11/05/2012 21:19:44 (Std)    ---- CEGUI Imageset name: PixelFont
11/05/2012 21:19:44 (Std)    ---- Source texture file: ../imagesets/PixelFont.png in resource group: (Default)
11/05/2012 21:19:44 (Std)    Started creation of Font from XML specification:
11/05/2012 21:19:44 (Std)    ---- CEGUI font name: MenuFont
11/05/2012 21:19:44 (Std)    ----       Font type: Pixmap
11/05/2012 21:19:44 (Std)    ----     Source file: MenuFont.imageset in resource group: (Default)
11/05/2012 21:19:44 (Std)    Started creation of Imageset from XML specification:
11/05/2012 21:19:44 (Std)    ---- CEGUI Imageset name: MenuFont
11/05/2012 21:19:44 (Std)    ---- Source texture file: ../imagesets/MenuFont.png in resource group: (Default)
11/05/2012 21:19:44 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
11/05/2012 21:19:44 (Std)    ===== Look and feel parsing completed =====
11/05/2012 21:19:44 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
11/05/2012 21:19:44 (Std)    Defining animation named: BNBIntro/Logo/BlendIn  Duration: 3.0  Replay mode: once  Auto start: false
11/05/2012 21:19:44 (Std)       Adding affector for property: Alpha  Interpolator: float  Application method: absolute
11/05/2012 21:19:44 (Std)          Adding KeyFrame at position: 0.0  Value: 0.0
11/05/2012 21:19:44 (Std)          Adding KeyFrame at position: 0.5  Value: 1.0
11/05/2012 21:19:44 (Std)          Adding KeyFrame at position: 2.5  Value: 1.0
11/05/2012 21:19:44 (Std)          Adding KeyFrame at position: 3.0  Value: 0.0
11/05/2012 21:19:44 (Std)    ===== Look and feel parsing completed =====
11/05/2012 21:19:44 (Std)    No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/Button' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/Button' added. (003A9070)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/Default' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/Default' added. (003A9118)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/Editbox' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/Editbox' added. (003A91C0)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/FrameWindow' added. (003A9268)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/ItemEntry' added. (003A9310)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/ListHeader' added. (003A93B8)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/ListHeaderSegment' added. (003A9460)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/Listbox' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/Listbox' added. (003A9508)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/Menubar' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/Menubar' added. (003A95B0)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/MenuItem' added. (003A9658)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/MultiColumnList' added. (003A9700)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/MultiLineEditbox' added. (003A97A8)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/PopupMenu' added. (003A9850)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/ProgressBar' added. (003A98F8)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/ScrollablePane' added. (003A99A0)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/Scrollbar' added. (003A9A48)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/Slider' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/Slider' added. (003A9AF0)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/Static' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/Static' added. (00408AF0)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/StaticImage' added. (00408B98)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/StaticText' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/StaticText' added. (00408C40)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/SystemButton' added. (00408CE8)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/TabButton' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/TabButton' added. (00408D90)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/TabControl' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/TabControl' added. (00408E38)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/Titlebar' added. (00408EE0)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/ToggleButton' added. (00408F88)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/Tooltip' added. (00409030)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/ItemListbox' added. (004090D8)
11/05/2012 21:19:44 (Std)    Created WindowRendererFactory for 'Falagard/Tree' WindowRenderers.
11/05/2012 21:19:44 (Std)    WindowRendererFactory 'Falagard/Tree' added. (00409180)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/MenuLabel' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'BNBWidgets/MenuLabel' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/Label' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'BNBWidgets/Label' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/Background' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'BNBWidgets/Background' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/Image' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'BNBWidgets/Image' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/MenuFrame' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'BNBWidgets/MenuFrame' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' Look'N'Feel 'BNBWidgets/Tooltip' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/Cursor' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'BNBWidgets/Cursor' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/TargetIllustrator' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'BNBWidgets/TargetIllustrator' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBIntro/Logo' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'BNBIntro/Logo' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/HealthBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'BNBWidgets/HealthBar' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/StaminaBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'BNBWidgets/StaminaBar' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/TemplateButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'BNBWidgets/TemplateButton' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/ColourBox' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'BNBWidgets/ColourBox' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'BNBWidgets/Button' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/ToggleButton' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'BNBWidgets/ToggleButton' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/RedButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'BNBWidgets/RedButton' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/BlueButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'BNBWidgets/BlueButton' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/ScrollThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'BNBWidgets/ScrollThumb' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/ScrollBar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'BNBWidgets/ScrollBar' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/BeltBackground' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'BNBWidgets/BeltBackground' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/ConsoleInput' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'BNBWidgets/ConsoleInput' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/EditBox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'BNBWidgets/EditBox' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Default' Look'N'Feel 'BNBWidgets/Spinner' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/GroupBox' using base type 'CEGUI/GroupBox', window renderer 'Falagard/Default' Look'N'Feel 'BNBWidgets/GroupBox' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Creating falagard mapping for type 'BNBWidgets/CheckBox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'BNBWidgets/CheckBox' and RenderEffect ''. (00E9D348)
11/05/2012 21:19:44 (Std)    Attempting to create Pixmap font 'PixelFont' using imageset file 'PixelFont'.
11/05/2012 21:19:44 (Std)    ---- Returning existing instance of Font named 'PixelFont'.
11/05/2012 21:19:44 (Std)    ---- Successfully completed loading of GUI layout from 'MainMenu.layout' ----
11/05/2012 21:19:45 (Std)    ---- Successfully completed loading of GUI layout from 'CharCreationMenu.layout' ----
11/05/2012 21:19:47 (Std)    ---- Successfully completed loading of GUI layout from 'MainMenu.layout' ----
11/05/2012 21:19:47 (Std)    ---- Begining CEGUI System destruction ----
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/Tree' windows removed. (003A8B30)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/Tree' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/Thumb' windows removed. (003A87E8)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/Thumb' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/Slider' windows removed. (003A8548)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/Slider' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/Editbox' windows removed. (003A7C18)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/Editbox' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/Listbox' windows removed. (003A7E10)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/Listbox' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/Menubar' windows removed. (003A8008)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/Menubar' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/Spinner' windows removed. (003A85F0)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/Spinner' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/Tooltip' windows removed. (003A8938)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/Tooltip' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'DefaultWindow' windows removed. (003A0A88)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'DefaultWindow' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'DragContainer' windows removed. (003A0B30)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'DragContainer' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/Checkbox' windows removed. (003A0D28)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/Checkbox' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/Combobox' windows removed. (003A0F20)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/Combobox' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/GroupBox' windows removed. (003A8A88)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/GroupBox' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/MenuItem' windows removed. (003A8158)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/MenuItem' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/Titlebar' windows removed. (003A8890)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/Titlebar' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows removed. (003A7D68)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/ItemEntry' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows removed. (003A80B0)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/PopupMenu' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows removed. (003A84A0)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/Scrollbar' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/TabButton' windows removed. (003A8698)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/TabButton' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/ListHeader' windows removed. (003A7EB8)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/ListHeader' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/PushButton' windows removed. (003A0DD0)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/PushButton' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/TabControl' windows removed. (003A8740)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/TabControl' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'ClippedContainer' windows removed. (003A0C80)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'ClippedContainer' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows removed. (003A7CC0)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/FrameWindow' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows removed. (003A89E0)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/ItemListbox' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows removed. (003A8350)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/ProgressBar' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/RadioButton' windows removed. (003A0E78)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/RadioButton' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'ScrolledContainer' windows removed. (003A0BD8)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'ScrolledContainer' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows removed. (003A0FC8)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/ComboDropList' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'GridLayoutContainer' windows removed. (003A8D28)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'GridLayoutContainer' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows removed. (003A83F8)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/ScrollablePane' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows removed. (003A8200)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/MultiColumnList' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows removed. (003A82A8)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/MultiLineEditbox' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows removed. (003A7F60)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'CEGUI/ListHeaderSegment' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'VerticalLayoutContainer' windows removed. (003A8C80)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'VerticalLayoutContainer' windows.
11/05/2012 21:19:47 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows removed. (003A8BD8)
11/05/2012 21:19:47 (Std)    Deleted WindowFactory for 'HorizontalLayoutContainer' windows.
11/05/2012 21:19:47 (Std)    ---- Begining cleanup of GUI Scheme system ----
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/Button' WindowRenderers removed. (003A9070)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/Button' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/Default' WindowRenderers removed. (003A9118)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/Default' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/Editbox' WindowRenderers removed. (003A91C0)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/Editbox' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers removed. (003A9268)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers removed. (003A9310)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers removed. (003A93B8)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers removed. (003A9460)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/Listbox' WindowRenderers removed. (003A9508)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/Listbox' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/Menubar' WindowRenderers removed. (003A95B0)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/Menubar' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers removed. (003A9658)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers removed. (003A9700)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers removed. (003A97A8)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers removed. (003A9850)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers removed. (003A98F8)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers removed. (003A99A0)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers removed. (003A9A48)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/Slider' WindowRenderers removed. (003A9AF0)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/Slider' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/Static' WindowRenderers removed. (00408AF0)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/Static' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers removed. (00408B98)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/StaticText' WindowRenderers removed. (00408C40)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/StaticText' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers removed. (00408CE8)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/TabButton' WindowRenderers removed. (00408D90)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/TabButton' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/TabControl' WindowRenderers removed. (00408E38)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/TabControl' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers removed. (00408EE0)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers removed. (00408F88)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers removed. (00409030)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers removed. (004090D8)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers.
11/05/2012 21:19:47 (Std)    WindowRendererFactory for 'Falagard/Tree' WindowRenderers removed. (00409180)
11/05/2012 21:19:47 (Std)    Deleted WindowRendererFactory for 'Falagard/Tree' WindowRenderers.
11/05/2012 21:19:47 (Std)    CEGUI::SchemeManager singleton destroyed. (003A06F0)
11/05/2012 21:19:47 (Std)    CEGUI::WindowManager singleton destroyed (003A3BA8)
11/05/2012 21:19:47 (Std)    CEGUI::WindowFactoryManager singleton destroyed
11/05/2012 21:19:47 (Std)    CEGUI::WidgetLookManager singleton destroyed. (0039FBC8)
11/05/2012 21:19:47 (Std)    CEGUI::WindowRendererManager singleton destroyed (0039FBB0)
11/05/2012 21:19:47 (Std)    CEGUI::AnimationManager singleton destroyed (003A36A0)
11/05/2012 21:19:47 (Std)    CEGUI::RenderEffectManager singleton destroyed (003A2AF8)
11/05/2012 21:19:47 (Std)    ---- Begining cleanup of Font system ----
11/05/2012 21:19:47 (Std)    CEGUI::FontManager singleton destroyed. (003A3090)
11/05/2012 21:19:47 (Std)    CEGUI::MouseCursor singleton destroyed. (003A3630)
11/05/2012 21:19:47 (Std)    ---- Begining cleanup of Imageset system ----
11/05/2012 21:19:47 (Std)    CEGUI::ImagesetManager singleton destroyed (003A04A8)
11/05/2012 21:19:47 (Std)    CEGUI::GlobalEventSet singleton destroyed. (0039CAF0)
11/05/2012 21:19:47 (Std)    CEGUI::System singleton destroyed. (003A0238)
11/05/2012 21:19:47 (Std)    ---- CEGUI System destruction completed ----
11/05/2012 21:19:47 (Std)    CEGUI::Logger singleton destroyed. (003A0588)

Re: Label colour of pushed ToggleButton too dark

Posted: Mon May 14, 2012 10:59
by CrazyEddie
Your looknfeel stuff looks ok from a casual scan through it. I will need to check and see if there is a bug in the ToggleButton renderer.

CE.

Re: Label colour of pushed ToggleButton too dark

Posted: Mon May 28, 2012 16:20
by CrazyEddie
Hi,

I've tried to reproduce this today, but had no luck. If it would it be possible for you to provide a minimal but functional set of files (or patch a stock looknfeel/scheme) that reproduces the issue, that would be great, thanks.

CE.

Re: Label colour of pushed ToggleButton too dark

Posted: Fri Jun 01, 2012 11:46
by BrightBit
I modified/patched the TaharezLook.looknfeel, TaharezLook.scheme and Demo7Windows.layout to add a modified version of my toggle button:

Image

Here are the files: Modified Datafiles

Just in case I wasn't precisely enough about my problem with this button. I defined a colour for the pushed state of the button and a colour for the normal state:

<PropertyDefinition name="NormalTextColour" initialValue="FF808080" redrawOnWrite="true" />
<PropertyDefinition name="PushedTextColour" initialValue="FF2D372A" redrawOnWrite="true" />

Image

In the top row of the image above you see how these colours should look like. However, the lower row shows the wrong colours that appear instead.

Re: Label colour of pushed ToggleButton too dark

Posted: Fri Jun 01, 2012 12:23
by CrazyEddie
Hi,

Thanks a lot for this. I will test it out (tomorrow, most likely) and get back to you with the results :)

CE.

Re: Label colour of pushed ToggleButton too dark

Posted: Sat Jun 02, 2012 14:20
by CrazyEddie
Hi again,

Just a note to say that I was able to reproduce the issue with the data files provided, and after much head-scratching I was able to resolve the issue - the fix has been committed into v0-7 branch and additionally merged back into default.

One thing I noted was that your files for 0.7 have the version attribute written - this can cause issues when CEGUI uses a validating XML parser (Xerces, basically). You might want to check that you have CEED configured to target 0.7 in your project(s).

Thanks again for report and for the test files, it's unlikely I would have found this issue without them :)

CE.

Re: Label colour of pushed ToggleButton too dark

Posted: Sat Jun 02, 2012 15:20
by BrightBit
You're welcome. I'm glad that I was able to help. It's the least I can do. I mean you already helped me by supplying your GUI library. :)

BTW: By version attribute you mean the following line?

Code: Select all

<Imageset version="2" Name="TaharezLook" Imagefile="TaharezLook.tga" NativeHorzRes="800" NativeVertRes="600" AutoScaled="true">

I didn't create the files with CEED. I manually wrote the ToggleButton entries and I just modified the datafiles that CEGUI already comes up with (by hand, too), so this version attribute was already there.


Greetings
BrightBit

Re: Label colour of pushed ToggleButton too dark

Posted: Sun Jun 03, 2012 08:18
by CrazyEddie
BrightBit wrote:BTW: By version attribute you mean the following line?

Code: Select all

<Imageset version="2" Name="TaharezLook" Imagefile="TaharezLook.tga" NativeHorzRes="800" NativeVertRes="600" AutoScaled="true">

I didn't create the files with CEED. I manually wrote the ToggleButton entries and I just modified the datafiles that CEGUI already comes up with (by hand, too), so this version attribute was already there.

Yeah, that's the attribute I meant. It's there (actually required) for the 1.0/development code, though it's not there in the v0-7 branch. It doesn't really matter, except in the case where Xerces might be used :)

CE