Slick Forums

Discuss the Slick 2D Library
It is currently Thu May 23, 2013 7:17 am

All times are UTC




Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: Two theme files?
PostPosted: Fri Apr 30, 2010 1:26 am 
Offline
Game Developer
User avatar

Joined: Wed Feb 17, 2010 12:24 am
Posts: 594
I have a theme file, let's called it 'windows.xml'. It has everything for chat/text windows, etc. That is working.

I would like another gui on top of this for the game interface. Preferable I would like to keep it in it's own theme file, let's called it 'gamegui.xml'.

I tried to create two GUIs on the same root (DesktopArea) and that crashes, says the widget has already been added. I also tried to create two DeskTopAreas and they conflict. z-ordering doesn't work and some widgets freeze.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Apr 30, 2010 6:27 am 
Offline
Slick Zombie

Joined: Fri Jan 29, 2010 7:02 pm
Posts: 1172
You can't use 2 themes at the same time BUT you can include one theme file in another using the include tag. This is done in the ThemeEditor's gui.xml file.

Now if you want to overlay different UIs then you need to define how these should react to events. It is easy to use something like this:
Code:
Root Widget (a normal Widget)
  |- DesktopArea
  |   |- ResizabelFrame
  |   ....
  |- Overlay1
  |- Overlay2
  ...


With "freeze" you mean that they no longer respond to mouse/keyboard input? This is mostly a sign that they are either below a (transparent) widget which intercepts mouse events or that their size does not match their visual appearance. To check for the later you can enable setClip(true) on these widgets or their parents.

_________________
TWL - The Themable Widget Library


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group