Crazy Eddie's GUI System
0.8.4
|
Static class for the FalagardBase module. More...
Public Member Functions | |
FalagardStatic (const String &type) | |
type name for this widget. | |
bool | isFrameEnabled (void) const |
Return whether the frame for this static widget is enabled or disabled. | |
bool | isBackgroundEnabled (void) const |
Return whether the background for this static widget is enabled to disabled. | |
void | setFrameEnabled (bool setting) |
Enable or disable rendering of the frame for this static widget. | |
void | setBackgroundEnabled (bool setting) |
Enable or disable rendering of the background for this static widget. | |
virtual void | render () |
Populate render cache. | |
Static Public Attributes | |
static const String | TypeName |
Protected Attributes | |
bool | d_frameEnabled |
True when the frame is enabled. | |
bool | d_backgroundEnabled |
true when the background is enabled. |
Static class for the FalagardBase module.
This class requires LookNFeel to be assigned. The LookNFeel should provide the following:
States:
CEGUI::FalagardStatic::FalagardStatic | ( | const String & | type | ) |
type name for this widget.
Constructor
bool CEGUI::FalagardStatic::isBackgroundEnabled | ( | void | ) | const [inline] |
Return whether the background for this static widget is enabled to disabled.
bool CEGUI::FalagardStatic::isFrameEnabled | ( | void | ) | const [inline] |
Return whether the frame for this static widget is enabled or disabled.
virtual void CEGUI::FalagardStatic::render | ( | ) | [virtual] |
Populate render cache.
This method must be implemented by all window renderers and should perform the rendering operations needed for this widget. Normally using the Falagard API...
Implements CEGUI::WindowRenderer.
Reimplemented in CEGUI::FalagardStaticText, and CEGUI::FalagardStaticImage.
void CEGUI::FalagardStatic::setBackgroundEnabled | ( | bool | setting | ) |
Enable or disable rendering of the background for this static widget.
setting | true to enable rendering of the background. false to disable rendering of the background. |
void CEGUI::FalagardStatic::setFrameEnabled | ( | bool | setting | ) |
Enable or disable rendering of the frame for this static widget.
setting | true to enable rendering of a frame. false to disable rendering of a frame. |