Crazy Eddies GUI System
0.7.2
|
Handler class used to parse the GUILayout XML files using SAX2. More...
Public Member Functions | |
GUILayout_xmlHandler (const String &name_prefix, PropertyCallback *callback=0, void *userdata=0) | |
Constructor for GUILayout_xmlHandler objects. | |
virtual | ~GUILayout_xmlHandler (void) |
Destructor for GUILayout_xmlHandler objects. | |
virtual void | elementStart (const String &element, const XMLAttributes &attributes) |
document processing (only care about elements, schema validates format) | |
virtual void | elementEnd (const String &element) |
Method called to notify the handler at the end of each XML element encountered. More... | |
virtual void | text (const String &text) |
Method called to notify text node, several successiv text node are agregated. More... | |
void | cleanupLoadedWindows (void) |
Destroy all windows created so far. | |
Window * | getLayoutRootWindow (void) const |
Return a pointer to the 'root' window created. | |
Public Member Functions inherited from CEGUI::XMLHandler | |
XMLHandler (void) | |
XMLHandler base class constructor. | |
virtual | ~XMLHandler (void) |
XMLHandler base class destructor. | |
Handler class used to parse the GUILayout XML files using SAX2.
|
virtual |
Method called to notify the handler at the end of each XML element encountered.
element | String object holding the name of the element that is ending. |
Reimplemented from CEGUI::XMLHandler.
|
virtual |
Method called to notify text node, several successiv text node are agregated.
text | String object holding the content of the text node. |
Reimplemented from CEGUI::XMLHandler.