Home | All Classes | Grouped Classes | Index | Search
Root component. More...
Derived from:
CL_Component
Derived by:
none
Group: GUI (Framework)
#include <ClanLib/gui.h>
Construction:
GUI Manager Constructor |
Attributes:
Returns the currently focused component. | |
Returns the currently captured component. | |
Returns true if input is enabled. | |
Return component on top of modal stack or NULL if none | |
Returns the event trigger for the gui manager. | |
Returns true if gui manager is currently shutting down |
Operations:
Sets the focus component of the gui. | |
Draws the GUI once. | |
Runs the GUI message pump continuosly. | |
Break run loop. | |
Tells the GUI to start accepting input. | |
Tells the GUI to stop accepting input. | |
Sets the GUI in capture mode. [should we move this out of API space? -- mbn] | |
Takes GUI out of capture mode. [should we move this out of API space? -- mbn] |
Signals:
Called when a new component get the focus |
Detailed description:
!group=GUI/Framework! !header=gui.h!The GUI manager component is the 'root component' of any GUI system. It is responsible channeling input and output from the general clanlib display API and into the GUI system.
The GUI manager must to be the top-level component in any component tree.
Modal dialog interfaces in clanGUI is archived by constructing a GUI manager with a parent component. This will disable the input of the previous GUI, but will keep calling its painting signals.