Crazy Eddies GUI System
0.6.0
|
Handler class used to parse the Font XML files using SAX2. More...
Public Member Functions | |
Font_xmlHandler () | |
Constructor for Font::xmlHandler objects. More... | |
virtual | ~Font_xmlHandler (void) |
Destructor for Font::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... | |
Public Member Functions inherited from CEGUI::XMLHandler | |
XMLHandler (void) | |
XMLHandler base class constructor. | |
virtual | ~XMLHandler (void) |
XMLHandler base class destructor. | |
virtual void | text (const String &text) |
Method called to notify text node, several successiv text node are agregated. More... | |
Public Attributes | |
Font * | d_font |
Font object that we are helping to build. | |
Handler class used to parse the Font XML files using SAX2.
|
inline |
Constructor for Font::xmlHandler objects.
font | Pointer to the Font object creating this xmlHandler object |
|
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.