CEGUI Falagard system-what's the point of the looknfeel file

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

StillmatikX
Just popping in
Just popping in
Posts: 5
Joined: Sun May 04, 2008 04:55

CEGUI Falagard system-what's the point of the looknfeel file

Postby StillmatikX » Sun May 04, 2008 05:15

I trying to create my own CEGUI theme but before I do this I figured I needed to be able to setup a theme other than the Taharez them. I've tried the SleekSpace them and for some reason I can't seem to get it to work in my MainMenu.layout. I keep getting these runtime errors which complain about missing "StateImagery "WithFrameEnabledBackground", etc. I noticed that these are located in the Taharez.looknfeel file but not the SleekSpace.looknfeel. I've copied a couple of them in but I realize that I probably shouldn't have to do this. I've set the sceme to the SleekSpace scheme that was included in the download as well.

Code: Select all

[c<?xml version="1.0" ?>
<GUILayout>
    <Window Type="SleekSpace/StaticImage" Name="Menu/Background">
    <Property Name="UnifiedSize" Value="{{1.0,0},{1.0,0}}" />
    <Property Name="Image" Value="set:SleekSpace image:StaticBackdrop" />

        <Window Type="SleekSpace/Button" Name="Menu/NewGame">
            <Property Name="UnifiedAreaRect" Value="{{0.2,0.0},{0.2,0.0},{0.6,0.0},{0.4,0.0}}" />
            <Property Name="Tooltip" Value="Start a new game"/>
            <Property Name="Text" Value="New Game" />
        </Window>

        <Window Type="SleekSpace/RadioButton" Name="Menu/JoinGame">
            <Property Name="UnifiedAreaRect" Value="{{0.2,0.0},{0.45,0.0},{0.6,0.0},{0.65,0.0}}" />
            <Property Name="Tooltip" Value="Not implemented yet"/>
            <Property Name="Text" Value="Join Game" />
         </Window>

        <Window Type="SleekSpace/SystemButton" Name="Menu/QuitGame">
            <Property Name="UnifiedAreaRect" Value="{{0.2,0.0},{0.7,0.0},{0.6,0.0},{0.9,0.0}}" />
            <Property Name="Tooltip" Value="Exit To Desktop"/>
            <Property Name="Text" Value="Quit Game" />
         </Window>
    </Window>
</GUILayout>


I'm pretty sure that there is something wrong with my mainmenu.layout. What is the point of the looknfeel file? I thought that I would just be able to load it and have everything setup but I can't see a way to load it so I'm guessing that this is not the case. Can anyone help me understand the correct process and format that is needed inorder to create a layout using the SleekSpace theme, or for that matter, any theme?

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

Postby CrazyEddie » Mon May 05, 2008 08:10

Hi,

is '[c' at the start of the code paste a typo? :) Other than that the layout looks ok to me.

What are the exact errors you are getting and can you tell where they're coming from (i.e. are they when you load the skin, or afterwards when it tries to render).

The looknfeel file basically tells the system what might be drawn for a given widget, where to draw it, and what imagery parts to draw for various 'states' that the widget, or the WindowRenderer, might be in.

CE.

StillmatikX
Just popping in
Just popping in
Posts: 5
Joined: Sun May 04, 2008 04:55

Postby StillmatikX » Mon May 05, 2008 18:20

CrazyEddie wrote:Hi,

is '[c' at the start of the code paste a typo? :) Other than that the layout looks ok to me.

What are the exact errors you are getting and can you tell where they're coming from (i.e. are they when you load the skin, or afterwards when it tries to render).

The looknfeel file basically tells the system what might be drawn for a given widget, where to draw it, and what imagery parts to draw for various 'states' that the widget, or the WindowRenderer, might be in.

CE.


Hey, thanks for the response. I changed the WindowType from StaticImage to FrameWindow and it displays the background with no errors. However, I can't seem to get text to show up on the buttons. Right now, I'm doing this:

Code: Select all

<Window Type="SleekSpace/Button" Name="MainMenu/NewGame">
            <Property Name="UnifiedAreaRect" Value="{{0.2,0.0},{0.2,0.0},{0.6,0.0},{0.4,0.0}}" />
            <Property Name="Tooltip" Value="Start a new game"/>
            <Window Type="SleekSpace/StaticText" Name="MainMenu/NewGameLabel">
              <Property Name="UnifiedPosition"    Value="{{0,0}, {0,0}}"    />
              <Property Name="UnifiedSize"        Value="{{1,0}, {1,0)}"    />
              <Property Name="FrameEnabled"       Value="False"             />
              <Property Name="BackgroundEnabled"  Value="False"             />
              <Property Name="HorzFormatting"     Value="WordWrapCentered"  />
              <Property Name="VertFormatting"     Value="Middle"            />
              <Property Name="Disabled"           Value="True"              />
              <Property Name="Text">New Game</Property>
            </Window>
        </Window>


...and I get these errors/exceptions when the mainmenu.layout is loaded:

Code: Select all

 (Error)   Exception: There is no Property named 'CaptionColour' available in the set.
(Error)   Exception: There is no Property named 'UseStandardImagery' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'NormalImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'HoverImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'PushedImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'Image' available in the set.
(Error)   Exception: There is no Property named 'UseStandardImagery' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'NormalImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'HoverImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'PushedImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'UseStandardImagery' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'NormalImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'HoverImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'PushedImage' available in the set.
(Error)   Exception: There is no Property named 'UseStandardImagery' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'NormalImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'HoverImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'PushedImage' available in the set.
(Error)   Exception: There is no Property named 'UseStandardImagery' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'NormalImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'HoverImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: There is no Property named 'PushedImage' available in the set.
05/05/2008 13:57:13 (Error)   Exception: WidgetLookFeel::getNamedArea - unknown named area: 'WithFrameTextRenderArea' in look 'SleekSpace/StaticText'.
 (Error)   Exception: GUILayout_xmlHandler::startElement - layout loading has been aborted since no WindowFactory is available for 'SleekSpace/StaticText' objects.
05/05/2008 13:57:13 (Error)   WindowManager::loadWindowLayout - loading of layout from file 'mainmenu.layout' failed.


I can't understand why I get these errors because I can see that these things are being loaded when I load the scheme:

Code: Select all

05/05/2008 13:57:12 (InfL1)   Attempting to load Scheme from file 'SleekSpace.scheme'.
05/05/2008 13:57:12 (InfL2)   Started creation of Scheme 'SleekSpace' via XML file.
05/05/2008 13:57:12 (InfL2)   Finished creation of Scheme 'SleekSpace' via XML file.
05/05/2008 13:57:12 (InfL2)   Loaded GUI scheme 'SleekSpace' from data in file 'SleekSpace.scheme'.
05/05/2008 13:57:12 (InfL2)   ---- Begining resource loading for GUI scheme 'SleekSpace' ----
05/05/2008 13:57:12 (InfL1)   Attempting to create an Imageset from the information specified in file 'sleekspace.imageset'.
05/05/2008 13:57:12 (InfL1)   Started creation of Imageset from XML specification:
05/05/2008 13:57:12 (InfL1)   ---- CEGUI Imageset name: SleekSpace
05/05/2008 13:57:12 (InfL1)   ---- Source texture file: sleekspace.png in resource group: (Default)
05/05/2008 13:57:12 (InfL2)   Finished creation of Imageset 'SleekSpace' via XML file.
05/05/2008 13:57:12 (InfL1)   ===== Falagard 'root' element: look and feel parsing begins =====
05/05/2008 13:57:12 (InfL2)   ---> Start of definition for widget look 'SleekSpace/Button'.
05/05/2008 13:57:12 (InfL2)   ---< End of definition for widget look 'SleekSpace/Button'.
05/05/2008 13:57:12 (InfL2)   ---> Start of definition for widget look 'SleekSpace/RadioButton'.
05/05/2008 13:57:12 (InfL2)   ---< End of definition for widget look 'SleekSpace/RadioButton'.
05/05/2008 13:57:12 (InfL2)   ---> Start of definition for widget look 'SleekSpace/Checkbox'.
05/05/2008 13:57:12 (InfL2)   ---< End of definition for widget look 'SleekSpace/Checkbox'.
05/05/2008 13:57:12 (InfL2)   ---> Start of definition for widget look 'SleekSpace/Editbox'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/Editbox'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/Titlebar'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/Titlebar'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/FrameWindow'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/FrameWindow'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/ProgressBar'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/ProgressBar'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/AltProgressBar'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/AltProgressBar'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/VUMeter'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/VUMeter'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/SliderThumb'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/SliderThumb'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/VSliderThumb'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/VSliderThumb'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/Slider'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/Slider'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/VSlider'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/VSlider'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/HorizontalScrollbarThumb'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/HorizontalScrollbarThumb'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/HorizontalScrollbar'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/HorizontalScrollbar'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/VerticalScrollbarThumb'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/VerticalScrollbarThumb'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/VerticalScrollbar'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/VerticalScrollbar'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/Listbox'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/Listbox'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/ComboDropList'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/ComboDropList'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/ComboEditbox'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/ComboEditbox'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/Combobox'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/Combobox'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/Spinner'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/Spinner'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/StaticShared'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/StaticShared'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/StaticImage'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/StaticImage'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/StaticText'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/StaticText'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/ListHeaderSegment'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/ListHeaderSegment'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/ListHeader'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/ListHeader'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/MultiColumnList'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/MultiColumnList'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/MultiLineEditbox'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/MultiLineEditbox'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/Tooltip'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/Tooltip'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/ScrollablePane'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/ScrollablePane'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/TabButton'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/TabButton'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/TabPane'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/TabPane'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/TabControl'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/TabControl'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/LargeVerticalScrollbarThumb'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/LargeVerticalScrollbarThumb'.
05/05/2008 13:57:13 (InfL2)   ---> Start of definition for widget look 'SleekSpace/LargeVerticalScrollbar'.
05/05/2008 13:57:13 (InfL2)   ---< End of definition for widget look 'SleekSpace/LargeVerticalScrollbar'.
05/05/2008 13:57:13 (InfL1)   ===== Look and feel parsing completed =====
05/05/2008 13:57:13 (InfL1)   No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/Button' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/Default' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/Editbox' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/FrameWindow' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/ItemEntry' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/ListHeader' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/ListHeaderSegment' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/Listbox' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/Menubar' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/MenuItem' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/MultiColumnList' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/MultiLineEditbox' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/PopupMenu' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/ProgressBar' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/ScrollablePane' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/Scrollbar' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/Slider' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/Static' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/StaticImage' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/StaticText' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/SystemButton' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/TabButton' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/TabControl' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/Titlebar' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/ToggleButton' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/Tooltip' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL2)   WindowRenderer factory 'Falagard/ItemListbox' appears to be already registered, skipping.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' and Look'N'Feel 'SleekSpace/Button'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/SystemButton' and Look'N'Feel 'SleekSpace/Button'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' and Look'N'Feel 'SleekSpace/RadioButton'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' and Look'N'Feel 'SleekSpace/Checkbox'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' and Look'N'Feel 'SleekSpace/Editbox'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' and Look'N'Feel 'SleekSpace/MultiLineEditbox'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' and Look'N'Feel 'SleekSpace/Tooltip'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' and Look'N'Feel 'SleekSpace/Listbox'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Falagard/ListHeader' and Look'N'Feel 'SleekSpace/ListHeader'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Falagard/ListHeaderSegment' and Look'N'Feel 'SleekSpace/ListHeaderSegment'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' and Look'N'Feel 'SleekSpace/Combobox'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' and Look'N'Feel 'SleekSpace/ComboEditbox'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' and Look'N'Feel 'SleekSpace/ComboDropList'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' and Look'N'Feel 'SleekSpace/MultiColumnList'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' and Look'N'Feel 'SleekSpace/Titlebar'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' and Look'N'Feel 'SleekSpace/FrameWindow'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/ReticleWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' and Look'N'Feel 'SleekSpace/ReticleWindow'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' and Look'N'Feel 'SleekSpace/ScrollablePane'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/TabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' and Look'N'Feel 'SleekSpace/TabButton'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/TabPane' using base type 'DefaultWindow', window renderer 'Falagard/TabPane' and Look'N'Feel 'SleekSpace/TabPane'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/TabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' and Look'N'Feel 'SleekSpace/TabControl'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' and Look'N'Feel 'SleekSpace/HorizontalScrollbar'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' and Look'N'Feel 'SleekSpace/HorizontalScrollbarThumb'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' and Look'N'Feel 'SleekSpace/VerticalScrollbar'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' and Look'N'Feel 'SleekSpace/VerticalScrollbarThumb'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' and Look'N'Feel 'SleekSpace/LargeVerticalScrollbar'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' and Look'N'Feel 'SleekSpace/LargeVerticalScrollbarThumb'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Falagard/PopupMenu' and Look'N'Feel 'SleekSpace/PopupMenu'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/Menubar' using base type 'CEGUI/Menubar', window renderer 'Falagard/Menubar' and Look'N'Feel 'SleekSpace/PopupMenu'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Falagard/MenuItem' and Look'N'Feel 'SleekSpace/MenuItem'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' and Look'N'Feel 'SleekSpace/ProgressBar'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' and Look'N'Feel 'SleekSpace/AltProgressBar'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' and Look'N'Feel 'SleekSpace/VUMeter'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' and Look'N'Feel 'SleekSpace/Slider'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/VSlider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' and Look'N'Feel 'SleekSpace/VSlider'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' and Look'N'Feel 'SleekSpace/SliderThumb'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/VSliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' and Look'N'Feel 'SleekSpace/VSliderThumb'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Spinner' and Look'N'Feel 'SleekSpace/Spinner'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' and Look'N'Feel 'SleekSpace/StaticImage'.
05/05/2008 13:57:13 (InfL1)   Creating falagard mapping for type 'SleekSpace/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' and Look'N'Feel 'SleekSpace/StaticText'.
05/05/2008 13:57:13 (InfL2)   ---- Resource loading for GUI scheme 'SleekSpace' completed ----

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

Postby CrazyEddie » Sat May 10, 2008 08:04

Hi,

The key thing to consider here is that all skins are not created equal; some skins will offer facilities that others do not, and 'user' contributed skins (such as SleekSpace) may or may not be what might be considered 'complete' - generally those skins were created by people as part of other projects, so missing functionality is to be expected in areas that the original authors did not require or use.

I will attempt to give SleekSpace a quick look over this afternoon, since I have not looked at it for some time, and it's possible that there are compatibility issues with the more recent code - having said this, I might not do the required updates - this is really a job for the original author.

With any luck I'll get back to you about this either late this afternoon or sometime this evening.

CE.


Return to “Modifications / Integrations / Customisations”

Who is online

Users browsing this forum: No registered users and 23 guests