Gui Layout Editor Format Question

For help with anything that CEGUI doesn't offer straight out-of-the-box, e.g.:
- Implementation of new features, such as new Core classes, widgets, WindowRenderers, etc. ...
- Modification of any existing features for specific purposes
- Integration of CEGUI in new engines or frameworks and writing of new plugins (Renderer, Parser, ...) or modules

Moderators: CEGUI MVP, CEGUI Team

User avatar
davesh
Not too shy to talk
Not too shy to talk
Posts: 36
Joined: Fri Feb 03, 2006 22:59

Gui Layout Editor Format Question

Postby davesh » Mon Feb 13, 2006 22:04

I've just downloaded and executed the GUI layout editor. The layout editor creates two default windows. I deleted the "Windows" style window and preserved the TaharezLook window. I then create the XML layout file (without additional modification) and then load the XML layout file into a test program.

At first the test program did not display anything (though it displays other layout files that I hand created).


I then modified the file to contain a Position Property and a Size Property for the FrameWindow. When I do this then the FrameWindow displays but the buttons and text widgets do not. If I add a Position and Size Property for each of these then they display as well.

It would seem that there are properties in the original layout file that should relate (e.g. UnifiedAreaRect).

What am I doing wrong? Is there a possible disconnect between the format of the XML file that my program expects and the format in the sample layout file created by the gui layout editor?

Thanks in advance..

User avatar
davesh
Not too shy to talk
Not too shy to talk
Posts: 36
Joined: Fri Feb 03, 2006 22:59

Postby davesh » Mon Feb 13, 2006 23:49

I've just noticed in the API that documentation for UnifiedAreaRect is sparse...
Could it be that the demo is designed for 0.5.x and I'm using 0.4.x?

Is UnifiedAreaRect a new property for Windows?

http://www.cegui.org.uk/api_reference/n ... rties.html

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

Postby CrazyEddie » Tue Feb 14, 2006 09:31

Hi,

It should not be some issue relating to 0.5.x code, since, realistically speaking, that does not exist yet; the current version of the editor is for the 0.4.x series code.

Could you post some minimal xml for the broken and fixed versions of the layout :)

CE

User avatar
davesh
Not too shy to talk
Not too shy to talk
Posts: 36
Joined: Fri Feb 03, 2006 22:59

a

Postby davesh » Tue Feb 14, 2006 18:15

The following is the output from the CELayoutEditor



<?xml version="1.0" encoding="UTF-8"?>
<GUILayout>
<Window Type="DefaultWindow" Name="DemoLayout" >
<Property Name="UnifiedAreaRect" Value="{{0.000000,0.000000},{0.000000,0.000000},{1.000000,0.000000},{1.000000,0.000000}}" />
<Property Name="UnifiedMaxSize" Value="{{1.000000,0.000000},{1.000000,0.000000}}" />
<Window Type="TaharezLook/FrameWindow" Name="Panel" >
<Property Name="AlwaysOnTop" Value="True" />
<Property Name="CaptionColour" Value="00FFFFFF" />
<Property Name="EWSizingCursorImage" Value="set:TaharezLook image:MouseEsWeCursor" />
<Property Name="MouseCursorImage" Value="set:TaharezLook image:MouseTarget" />
<Property Name="NESWSizingCursorImage" Value="set:TaharezLook image:MouseNeSwCursor" />
<Property Name="NSSizingCursorImage" Value="set:TaharezLook image:MouseNoSoCursor" />
<Property Name="NWSESizingCursorImage" Value="set:TaharezLook image:MouseNwSeCursor" />
<Property Name="Text" Value="Message Box !!" />
<Property Name="TitlebarEnabled" Value="True" />
<Property Name="TitlebarFont" Value="Commonwealth-10" />
<Property Name="UnifiedAreaRect" Value="{{0.329257,0.000000},{0.139047,0.000000},{0.696446,0.000000},{0.614048,0.000000}}" />
<Property Name="UnifiedMaxSize" Value="{{1.000000,0.000000},{1.000000,0.000000}}" />
<Window Type="TaharezLook/Editbox" Name="InputBox" >
<Property Name="MaxTextLength" Value="1073741823" />
<Property Name="MouseCursorImage" Value="set:TaharezLook image:MouseTextBar" />
<Property Name="UnifiedAreaRect" Value="{{0.305625,0.000000},{0.727085,0.000000},{0.961874,0.000000},{0.854168,0.000000}}" />
<Property Name="UnifiedMaxSize" Value="{{1.000000,0.000000},{1.000000,0.000000}}" />
</Window>
<Window Type="TaharezLook/StaticText" Name="Label1" >
<Property Name="BackgroundImage" Value="set:TaharezLook image:StaticBackdrop" />
<Property Name="BottomFrameImage" Value="set:TaharezLook image:StaticBottom" />
<Property Name="BottomLeftFrameImage" Value="set:TaharezLook image:StaticBottomLeft" />
<Property Name="BottomRightFrameImage" Value="set:TaharezLook image:StaticBottomRight" />
<Property Name="LeftFrameImage" Value="set:TaharezLook image:StaticLeft" />
<Property Name="RightFrameImage" Value="set:TaharezLook image:StaticRight" />
<Property Name="Text" Value="Chat:" />
<Property Name="TopFrameImage" Value="set:TaharezLook image:StaticTop" />
<Property Name="TopLeftFrameImage" Value="set:TaharezLook image:StaticTopLeft" />
<Property Name="TopRightFrameImage" Value="set:TaharezLook image:StaticTopRight" />
<Property Name="UnifiedAreaRect" Value="{{0.067500,0.000000},{0.731668,0.000000},{0.267500,0.000000},{0.858750,0.000000}}" />
<Property Name="UnifiedMaxSize" Value="{{1.000000,0.000000},{1.000000,0.000000}}" />
</Window>
<Window Type="TaharezLook/RadioButton" Name="Radio1" >
<Property Name="Text" Value="Room" />
<Property Name="UnifiedAreaRect" Value="{{0.308125,0.000000},{0.852918,0.000000},{0.584687,0.000000},{0.971668,0.000000}}" />
<Property Name="UnifiedMaxSize" Value="{{1.000000,0.000000},{1.000000,0.000000}}" />
</Window>
<Window Type="TaharezLook/RadioButton" Name="Radio2" >
<Property Name="Text" Value="Broadcast" />
<Property Name="UnifiedAreaRect" Value="{{0.643437,0.000000},{0.854584,0.000000},{0.959062,0.000000},{0.969167,0.000000}}" />
<Property Name="UnifiedMaxSize" Value="{{1.000000,0.000000},{1.000000,0.000000}}" />
</Window>
<Window Type="TaharezLook/StaticText" Name="Label11" >
<Property Name="BackgroundImage" Value="set:TaharezLook image:StaticBackdrop" />
<Property Name="BottomFrameImage" Value="set:TaharezLook image:StaticBottom" />
<Property Name="BottomLeftFrameImage" Value="set:TaharezLook image:StaticBottomLeft" />
<Property Name="BottomRightFrameImage" Value="set:TaharezLook image:StaticBottomRight" />
<Property Name="LeftFrameImage" Value="set:TaharezLook image:StaticLeft" />
<Property Name="RightFrameImage" Value="set:TaharezLook image:StaticRight" />
<Property Name="Text" Value="Received:" />
<Property Name="TopFrameImage" Value="set:TaharezLook image:StaticTop" />
<Property Name="TopLeftFrameImage" Value="set:TaharezLook image:StaticTopLeft" />
<Property Name="TopRightFrameImage" Value="set:TaharezLook image:StaticTopRight" />
<Property Name="UnifiedAreaRect" Value="{{0.066875,0.000000},{0.121251,0.000000},{0.354375,0.000000},{0.248333,0.000000}}" />
<Property Name="UnifiedMaxSize" Value="{{1.000000,0.000000},{1.000000,0.000000}}" />
</Window>
<Window Type="TaharezLook/MultiLineEditbox" Name="myEditBox" >
<Property Name="MaxTextLength" Value="1073741823" />
<Property Name="MouseCursorImage" Value="set:TaharezLook image:MouseTextBar" />
<Property Name="Text" Value="
" />
<Property Name="UnifiedAreaRect" Value="{{0.395938,0.000000},{0.126250,0.000000},{0.955313,0.000000},{0.707499,0.000000}}" />
<Property Name="UnifiedMaxSize" Value="{{1.000000,0.000000},{1.000000,0.000000}}" />
</Window>
</Window>
</Window>
</GUILayout>


In order for the various windows to be displayed I add lines such as this:

<Property Name="Position" Value="x:0.25 y:0.25" />
<Property Name="Size" Value="w:0.5 h:0.5" />

in the appropriate locations.


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

Postby CrazyEddie » Thu Feb 16, 2006 11:18

Hi,

Apologies for the slight delay, but I've finally got around to testing the posted layout in 0.4.1 and had no problems - which is odd.

When loading the troublesome layout, does anything appear in the log file CEGUI.log?

CE.

User avatar
davesh
Not too shy to talk
Not too shy to talk
Posts: 36
Joined: Fri Feb 03, 2006 22:59

Postby davesh » Thu Feb 16, 2006 17:08

Thanks for responding I can understand delays :). I will check the log. Hopefully the log will also show me which version of CEGUI I am using!! I'm actually not sure that it is 0.4.1 since I am using the Sample that comes bundled with the Ogre build.


An aside...

I've recently tried to download and build CEGUI (0.4.1). I had no problems downloading it and building it. I've also been able to run the samples that came with it (very helpful). I also managed to build my Ogre CEGUI tutorial with 0.4.1. However I had problems executing the tutorial in this fashion. It kept finding the CEGUI DLL's in the original Ogrenew/Sample/bin directory. When I tried to set my path so that the run-time loader would find the 0.4.1 DLL's then I kept getting a DLL_NOT_FOUND error message and the executable would not even start. For now I'm continuing to build with the CEGUI bundled with Ogre... but this is not my preference. If I continue to struggle with that then perhaps I will post another help thread..


Will check right now and then edit my feedback accordingly...

User avatar
davesh
Not too shy to talk
Not too shy to talk
Posts: 36
Joined: Fri Feb 03, 2006 22:59

Postby davesh » Thu Feb 16, 2006 17:30

The answer to your question is YES!! The log file does show some errors for just the properties that did not seem to be working. Entire Log File content follows (I've highlighted a couple of lines that are showing errors - what do these errors mean):


16/02/2006 12:25:23 (InfL1) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
16/02/2006 12:25:23 (InfL1) + Crazy Eddie's GUI System - Event log +
16/02/2006 12:25:23 (InfL1) + (http://www.cegui.org.uk/) +
16/02/2006 12:25:23 (InfL1) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

16/02/2006 12:25:23 (InfL1) CEGUI::Logger singleton created.
16/02/2006 12:25:23 (InfL1) ---- Begining CEGUI System initialisation ----
16/02/2006 12:25:23 (InfL1) CEGUI::ImagesetManager singleton created
16/02/2006 12:25:23 (InfL1) CEGUI::FontManager singleton created.
16/02/2006 12:25:23 (InfL1) CEGUI::WindowFactoryManager singleton created
16/02/2006 12:25:23 (InfL1) CEGUI::WindowManager singleton created
16/02/2006 12:25:23 (InfL1) CEGUI::SchemeManager singleton created.
16/02/2006 12:25:23 (InfL1) CEGUI::MouseCursor singleton created.
16/02/2006 12:25:23 (InfL1) CEGUI::GlobalEventSet singleton created.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'DefaultWindow' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'DragContainer' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'ScrolledContainer' windows added.
16/02/2006 12:25:23 (InfL1) Window type alias named 'DefaultGUISheet' added for window type 'DefaultWindow'.
16/02/2006 12:25:23 (InfL1) CEGUI::System singleton created.
16/02/2006 12:25:23 (InfL1) ---- CEGUI System initialisation completed ----
16/02/2006 12:25:23 (InfL1) Attempting to load Scheme from file 'TaharezLook.scheme'.
16/02/2006 12:25:23 (InfL2) Started creation of Scheme 'TaharezLook' via XML file.
16/02/2006 12:25:23 (InfL2) Finished creation of Scheme 'TaharezLook' via XML file.
16/02/2006 12:25:23 (InfL2) Loaded GUI scheme 'TaharezLook' from data in file 'TaharezLook.scheme'.
16/02/2006 12:25:23 (InfL2) ---- Begining resource loading for GUI scheme 'TaharezLook' ----
16/02/2006 12:25:23 (InfL1) Attempting to create an Imageset from the information specified in file 'TaharezLook.imageset'.
16/02/2006 12:25:23 (InfL2) Started creation of Imageset 'TaharezLook' via XML file.
16/02/2006 12:25:23 (InfL2) Finished creation of Imageset 'TaharezLook' via XML file.
16/02/2006 12:25:23 (InfL1) Attempting to create Font from the information specified in file 'tahoma-12.font'.
16/02/2006 12:25:23 (InfL2) Started creation of Font 'Tahoma-12' via XML file.
16/02/2006 12:25:23 (InfL1) Attempting to create Imageset 'Tahoma-12_auto_glyph_images' with texture only.
16/02/2006 12:25:23 (InfL2) Font 'Tahoma-12' now has the following glyphs defined: ' !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~'.
16/02/2006 12:25:23 (InfL2) Finished creation of Font 'Tahoma-12' via XML file.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/AlternateProgressBar' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/Button' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/Checkbox' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/CloseButton' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/Combobox' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/ComboDropList' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/ComboEditbox' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/Editbox' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/FrameWindow' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/LargeVerticalScrollbar' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/LargeVerticalScrollbarThumb' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/Listbox' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/ListHeader' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/ListHeaderSegment' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/HorizontalScrollbar' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/HorizontalScrollbarThumb' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/MultiColumnList' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/MultiLineEditbox' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/ProgressBar' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/RadioButton' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/Slider' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/SliderThumb' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/StaticImage' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/StaticText' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/TabButton' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/TabControl' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/TabPane' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/Titlebar' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/VerticalScrollbar' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/VerticalScrollbarThumb' windows added.
16/02/2006 12:25:23 (InfL1) WindowFactory for 'TaharezLook/VUMeter' windows added.
16/02/2006 12:25:23 (InfL2) ---- Resource loading for GUI scheme 'TaharezLook' completed ----
16/02/2006 12:25:23 (InfL2) ---- Beginning loading of GUI layout from 'C:/Documents and Settings/dsargrad/Desktop/3d/OgreApps/Tutorial6/test3.layout' ----
16/02/2006 12:25:23 (InfL2) Window 'DemoLayout' of type 'DefaultWindow' has been created.


16/02/2006 12:25:23 (Error) Exception: There is no Property named 'UnifiedAreaRect' available in the set.
16/02/2006 12:25:23 (Error) Exception: There is no Property named 'UnifiedMaxSize' available in the set.


16/02/2006 12:25:23 (InfL2) Window 'Panel__auto_titlebar__' of type 'TaharezLook/Titlebar' has been created.
16/02/2006 12:25:23 (InfL2) Window 'Panel__auto_closebutton__' of type 'TaharezLook/CloseButton' has been created.
16/02/2006 12:25:23 (InfL2) Window 'Panel' of type 'TaharezLook/FrameWindow' has been created.
16/02/2006 12:25:23 (Error) Exception: There is no Property named 'EWSizingCursorImage' available in the set.
16/02/2006 12:25:23 (Error) Exception: There is no Property named 'NESWSizingCursorImage' available in the set.
16/02/2006 12:25:23 (Error) Exception: There is no Property named 'NSSizingCursorImage' available in the set.
16/02/2006 12:25:23 (Error) Exception: There is no Property named 'NWSESizingCursorImage' available in the set.
16/02/2006 12:25:23 (Error) Exception: FontManager::getFont - A Font object with the specified name 'Commonwealth-10' does not exist within the system
16/02/2006 12:25:23 (Error) Exception: There is no Property named 'UnifiedAreaRect' available in the set.
16/02/2006 12:25:23 (Error) Exception: There is no Property named 'UnifiedMaxSize' available in the set.
16/02/2006 12:25:23 (InfL2) Window 'InputBox' of type 'TaharezLook/Editbox' has been created.
16/02/2006 12:25:23 (Error) Exception: There is no Property named 'UnifiedAreaRect' available in the set.
16/02/2006 12:25:23 (Error) Exception: There is no Property named 'UnifiedMaxSize' available in the set.
16/02/2006 12:25:23 (InfL2) Window 'Label1__auto_vscrollbar____auto_thumb__' of type 'TaharezLook/VerticalScrollbarThumb' has been created.
16/02/2006 12:25:23 (InfL2) Window 'Label1__auto_vscrollbar____auto_incbtn__' of type 'TaharezLook/Button' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label1__auto_vscrollbar____auto_decbtn__' of type 'TaharezLook/Button' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label1__auto_vscrollbar__' of type 'TaharezLook/VerticalScrollbar' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label1__auto_hscrollbar____auto_thumb__' of type 'TaharezLook/HorizontalScrollbarThumb' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label1__auto_hscrollbar____auto_incbtn__' of type 'TaharezLook/Button' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label1__auto_hscrollbar____auto_decbtn__' of type 'TaharezLook/Button' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label1__auto_hscrollbar__' of type 'TaharezLook/HorizontalScrollbar' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label1' of type 'TaharezLook/StaticText' has been created.
16/02/2006 12:25:24 (Error) Exception: There is no Property named 'UnifiedAreaRect' available in the set.
16/02/2006 12:25:24 (Error) Exception: There is no Property named 'UnifiedMaxSize' available in the set.
16/02/2006 12:25:24 (InfL2) Window 'Radio1' of type 'TaharezLook/RadioButton' has been created.
16/02/2006 12:25:24 (Error) Exception: There is no Property named 'UnifiedAreaRect' available in the set.
16/02/2006 12:25:24 (Error) Exception: There is no Property named 'UnifiedMaxSize' available in the set.
16/02/2006 12:25:24 (InfL2) Window 'Radio2' of type 'TaharezLook/RadioButton' has been created.
16/02/2006 12:25:24 (Error) Exception: There is no Property named 'UnifiedAreaRect' available in the set.
16/02/2006 12:25:24 (Error) Exception: There is no Property named 'UnifiedMaxSize' available in the set.
16/02/2006 12:25:24 (InfL2) Window 'Label11__auto_vscrollbar____auto_thumb__' of type 'TaharezLook/VerticalScrollbarThumb' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label11__auto_vscrollbar____auto_incbtn__' of type 'TaharezLook/Button' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label11__auto_vscrollbar____auto_decbtn__' of type 'TaharezLook/Button' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label11__auto_vscrollbar__' of type 'TaharezLook/VerticalScrollbar' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label11__auto_hscrollbar____auto_thumb__' of type 'TaharezLook/HorizontalScrollbarThumb' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label11__auto_hscrollbar____auto_incbtn__' of type 'TaharezLook/Button' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label11__auto_hscrollbar____auto_decbtn__' of type 'TaharezLook/Button' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label11__auto_hscrollbar__' of type 'TaharezLook/HorizontalScrollbar' has been created.
16/02/2006 12:25:24 (InfL2) Window 'Label11' of type 'TaharezLook/StaticText' has been created.
16/02/2006 12:25:24 (Error) Exception: There is no Property named 'UnifiedAreaRect' available in the set.
16/02/2006 12:25:24 (Error) Exception: There is no Property named 'UnifiedMaxSize' available in the set.
16/02/2006 12:25:24 (InfL2) Window 'myEditBox__auto_vscrollbar____auto_thumb__' of type 'TaharezLook/VerticalScrollbarThumb' has been created.
16/02/2006 12:25:24 (InfL2) Window 'myEditBox__auto_vscrollbar____auto_incbtn__' of type 'TaharezLook/Button' has been created.
16/02/2006 12:25:24 (InfL2) Window 'myEditBox__auto_vscrollbar____auto_decbtn__' of type 'TaharezLook/Button' has been created.
16/02/2006 12:25:24 (InfL2) Window 'myEditBox__auto_vscrollbar__' of type 'TaharezLook/VerticalScrollbar' has been created.
16/02/2006 12:25:24 (InfL2) Window 'myEditBox__auto_hscrollbar____auto_thumb__' of type 'TaharezLook/HorizontalScrollbarThumb' has been created.
16/02/2006 12:25:24 (InfL2) Window 'myEditBox__auto_hscrollbar____auto_incbtn__' of type 'TaharezLook/Button' has been created.
16/02/2006 12:25:24 (InfL2) Window 'myEditBox__auto_hscrollbar____auto_decbtn__' of type 'TaharezLook/Button' has been created.
16/02/2006 12:25:24 (InfL2) Window 'myEditBox__auto_hscrollbar__' of type 'TaharezLook/HorizontalScrollbar' has been created.
16/02/2006 12:25:24 (InfL2) Window 'myEditBox' of type 'TaharezLook/MultiLineEditbox' has been created.
16/02/2006 12:25:24 (Error) Exception: There is no Property named 'UnifiedAreaRect' available in the set.
16/02/2006 12:25:24 (Error) Exception: There is no Property named 'UnifiedMaxSize' available in the set.
16/02/2006 12:25:24 (InfL1) ---- Successfully completed loading of GUI layout from 'C:/Documents and Settings/dsargrad/Desktop/3d/OgreApps/Tutorial6/test3.layout' ----
16/02/2006 12:25:25 (InfL2) Window 'Panel__auto_titlebar__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'InputBox' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label1__auto_vscrollbar____auto_thumb__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label1__auto_vscrollbar____auto_incbtn__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label1__auto_vscrollbar____auto_decbtn__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label1__auto_vscrollbar__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label1__auto_hscrollbar____auto_thumb__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label1__auto_hscrollbar____auto_incbtn__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label1__auto_hscrollbar____auto_decbtn__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label1__auto_hscrollbar__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label1' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Radio1' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Radio2' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label11__auto_vscrollbar____auto_thumb__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label11__auto_vscrollbar____auto_incbtn__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label11__auto_vscrollbar____auto_decbtn__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label11__auto_vscrollbar__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label11__auto_hscrollbar____auto_thumb__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label11__auto_hscrollbar____auto_incbtn__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label11__auto_hscrollbar____auto_decbtn__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label11__auto_hscrollbar__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Label11' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'myEditBox__auto_vscrollbar____auto_thumb__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'myEditBox__auto_vscrollbar____auto_incbtn__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'myEditBox__auto_vscrollbar____auto_decbtn__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'myEditBox__auto_vscrollbar__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'myEditBox__auto_hscrollbar____auto_thumb__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'myEditBox__auto_hscrollbar____auto_incbtn__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'myEditBox__auto_hscrollbar____auto_decbtn__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'myEditBox__auto_hscrollbar__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'myEditBox' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Panel__auto_closebutton__' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'Panel' has been added to dead pool.
16/02/2006 12:25:25 (InfL2) Window 'DemoLayout' has been added to dead pool.
16/02/2006 12:25:25 (InfL1) ---- Begining CEGUI System destruction ----
16/02/2006 12:25:25 (InfL1) ---- Begining cleanup of GUI Scheme system ----
16/02/2006 12:25:25 (InfL2) ---- Begining resource cleanup for GUI scheme 'TaharezLook' ----
16/02/2006 12:25:25 (InfL2) Imageset 'Tahoma-12_auto_glyph_images' has been destroyed.
16/02/2006 12:25:25 (InfL1) Font 'Tahoma-12' has been destroyed.
16/02/2006 12:25:25 (InfL2) Imageset 'TaharezLook' has been destroyed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/AlternateProgressBar' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/Button' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/Checkbox' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/CloseButton' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/Combobox' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/ComboDropList' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/ComboEditbox' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/Editbox' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/FrameWindow' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/LargeVerticalScrollbar' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/LargeVerticalScrollbarThumb' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/Listbox' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/ListHeader' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/ListHeaderSegment' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/HorizontalScrollbar' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/HorizontalScrollbarThumb' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/MultiColumnList' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/MultiLineEditbox' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/ProgressBar' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/RadioButton' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/Slider' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/SliderThumb' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/StaticImage' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/StaticText' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/TabButton' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/TabControl' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/TabPane' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/Titlebar' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/VerticalScrollbar' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/VerticalScrollbarThumb' windows removed.
16/02/2006 12:25:25 (InfL1) WindowFactory for 'TaharezLook/VUMeter' windows removed.
16/02/2006 12:25:25 (InfL2) ---- Resource cleanup for GUI scheme 'TaharezLook' completed ----
16/02/2006 12:25:25 (InfL2) GUI scheme 'TaharezLook' has been unloaded.
16/02/2006 12:25:25 (InfL1) Scheme 'TaharezLook' has been unloaded.
16/02/2006 12:25:25 (InfL1) CEGUI::SchemeManager singleton destroyed.
16/02/2006 12:25:25 (InfL1) CEGUI::WindowManager singleton destroyed
16/02/2006 12:25:25 (InfL1) CEGUI::WindowFactoryManager singleton destroyed
16/02/2006 12:25:25 (InfL1) ---- Begining cleanup of Font system ----
16/02/2006 12:25:25 (InfL1) CEGUI::FontManager singleton destroyed.
16/02/2006 12:25:25 (InfL1) CEGUI::MouseCursor singleton destroyed.
16/02/2006 12:25:25 (InfL1) ---- Begining cleanup of Imageset system ----
16/02/2006 12:25:25 (InfL1) CEGUI::ImagesetManager singleton destroyed
16/02/2006 12:25:25 (InfL1) CEGUI::GlobalEventSet singleton destroyed.
16/02/2006 12:25:25 (InfL1) CEGUI::System singleton destroyed.
16/02/2006 12:25:25 (InfL1) ---- CEGUI System destruction completed ----
16/02/2006 12:25:25 (InfL1) CEGUI::Logger singleton destroyed.

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

Postby CrazyEddie » Thu Feb 16, 2006 19:51

Ok, I can see immediately waht the issue is.

You're running CEGUI 0.3; later versions log the exact version, since this info is missing from the log, you're on 0.3, which does not support the new Unified metrics system and it's associated properties. So, you need to address the other issues you were having with conflicting parts of the Ogre dependency pack version of CEGUI.

HTH

CE

krimson
Just popping in
Just popping in
Posts: 5
Joined: Wed Feb 22, 2006 18:57

Postby krimson » Thu Mar 02, 2006 03:54

Is there a link around to an older version of the CE Layout Editor? I'm in the middle of a project and it would be very useful to be able to use the layout editor w/ the version I have rather than upgrading to CEGUI 0.4.1.

I tried upgrading and it wasn't pretty :(.

User avatar
scriptkid
Home away from home
Home away from home
Posts: 1178
Joined: Wed Jan 12, 2005 12:06
Location: The Hague, The Netherlands
Contact:

Postby scriptkid » Thu Mar 02, 2006 08:16

Hi,

i don't have it on a shelf. But i will try to checkout the "before_wxwidgets" tag from cvs and build that. I think that worked against 0.3.0 of the cegui library. You may also try it yourself of course. But i can't promise you anything, since it's been a while ;-)

Which problems did you get while upgrading cegui? Because 0.4 can load 'older' layouts. It will however save them in the new style. Maybe you have a lot of client code which talks to cegui?

krimson
Just popping in
Just popping in
Posts: 5
Joined: Wed Feb 22, 2006 18:57

Postby krimson » Thu Mar 02, 2006 13:28

Thank you for this consideration, scriptkid.

I would be willing to try to upgrade again, given a little guidance. What I attempted to do was to dl the SDK for MSVC2005( v8 ) and copy the dll's, libs and headers over to my source.

When I did, I got this error:

Image

Which is, of course, an Ogre error but it resulted from replacing the files from the sdk into my source. Am I going about this in the wrong way? Are there more files I should replace?

User avatar
scriptkid
Home away from home
Home away from home
Posts: 1178
Joined: Wed Jan 12, 2005 12:06
Location: The Hague, The Netherlands
Contact:

Postby scriptkid » Thu Mar 02, 2006 21:03

Hi,

you would also need to re-compile. But i will reply to your email too :-)

krimson
Just popping in
Just popping in
Posts: 5
Joined: Wed Feb 22, 2006 18:57

Postby krimson » Fri Mar 03, 2006 11:55

hiya,

That was after recompiling, cleaning, and recompiling again. No worries though, I managed to get ahold of your CVS before_widgets and got it compiled using vc7.

Thanks for your help :) That version is a little buggy, but works for what I need very well.

User avatar
scriptkid
Home away from home
Home away from home
Posts: 1178
Joined: Wed Jan 12, 2005 12:06
Location: The Hague, The Netherlands
Contact:

Postby scriptkid » Sun Mar 05, 2006 11:56

Hi,

good to hear! :-) Did you receive my email btw with the zip and some explaination? I hope it helped :-)


Return to “Modifications / Integrations / Customisations”

Who is online

Users browsing this forum: No registered users and 8 guests