Hi...
So, I found the datafiles directory under the distribution of CEGUI-0.5.0.
When I execute CELayoutEditor, it asked me where is the datafiles directory.
So, I pointed it out and it show me the following error:
WindowFactoryManager::addWindowTypeAlias - alias 'Taharez AltProgressBar' could not be created because the target type 'TaharezLook/AlternateProgressBar' is unknown within the system.
under a window titlte "CELayoutEditor Error".
This is what is inside the file CELayoutEditor.ini
[SETTINGS]
BigKeyStep=10
SmallKeyStep=1
DefaultFont=
CurrentBackground=
BackgroundVisible=0
CurrentLayout=
ViewWidth=640
ViewHeight=480
SnapMode=2
GridSize=10
GridVisible=0
ConfigsPath=/home/schnorr/misc/CEGUI-0.5.0/Samples/datafiles/configs/
FontsPath=/home/schnorr/misc/CEGUI-0.5.0/Samples/datafiles/fonts/
ImagesetsPath=/home/schnorr/misc/CEGUI-0.5.0/Samples/datafiles/imagesets/
LookNFeelsPath=/home/schnorr/misc/CEGUI-0.5.0/Samples/datafiles/looknfeel/
ScriptsPath=/home/schnorr/misc/CEGUI-0.5.0/Samples/datafiles/lua_scripts/
SchemesPath=/home/schnorr/misc/CEGUI-0.5.0/Samples/datafiles/schemes/
SupportedProperties=Alpha,float;ClickStepSize,float;MaximumValue,float;
Visible,bool;AlwaysOnTop,bool;ClippedByParent,bool;InheritsAlpha,bool;
Selected,bool;ReadOnly,bool;CloseButtonEnabled,bool;
DragMovingEnabled,bool;FrameEnabled,bool;SizingEnabled,bool;
TitlebarEnabled,bool;MultiSelect,bool;Sort,bool;DraggingEnabled,bool;
BackgroundEnabled,bool;InheritsTooltipText,bool;HoverImage,text;
PushedImage,text;DisabledImage,text;NormalImage,text;Font,font;
TitlebarFont,font;VerticalAlignment,vert_align;
HorizontalAlignment,horz_align;VertFormatting,vert_text_format;
HorzFormatting,horz_text_format;Tooltip,text;
This is the list of files under /home/schnorr/misc/CEGUI-0.5.0/Samples/datafiles/schemes/:
schnorr@crowh:~/tmp/CELayoutEditor$ ls /home/schnorr/misc/CEGUI-0.5.0/Samples/datafiles/schemes/
Demo8.scheme TaharezLookWidgetAliases.scheme WindowsLook.scheme
GUIScheme.xsd TaharezLookWidgets.scheme WindowsLookWidgets.scheme
TaharezLook.scheme VanillaSkin.scheme
schnorr@crowh:~/tmp/CELayoutEditor$
I checked the file TaharezLook.scheme to see if the AlternateProgressBar is there, and it seems to be there:
schnorr@crowh:~/tmp/CELayoutEditor$ cat /home/schnorr/misc/CEGUI-0.5.0/Samples/datafiles/schemes/TaharezLook.scheme | grep AlternateProgressBar
<FalagardMapping WindowType="TaharezLook/AlternateProgressBar" TargetType="CEGUI/ProgressBar" Renderer="Falagard/ProgressBar" LookNFeel="TaharezLook/AltProgressBar" />
schnorr@crowh:~/tmp/CELayoutEditor$
And there is also a reference to "Taharez AltProgressBar" in the file TaharezLookWidgetAliases.scheme:
schnorr@crowh:~/tmp/CELayoutEditor$ cat /home/schnorr/misc/CEGUI-0.5.0/Samples/datafiles/schemes/TaharezLookWidgetAliases.scheme | grep "Taharez AltProgressBar"
<WindowAlias Alias="Taharez AltProgressBar" Target="TaharezLook/AlternateProgressBar" />
schnorr@crowh:~/tmp/CELayoutEditor$
I also changed the datafiles directory so the layout editor uses the one
available in the revision 1518 of the cegui trunk in SVN. It did not solve the problem.
In this case, what would be the problem, am I missing something?
Thanks again...