Crazy Eddies GUI System  0.6.0
Public Member Functions | Public Attributes | List of all members
CEGUI::Font_xmlHandler Class Reference

Handler class used to parse the Font XML files using SAX2. More...

+ Inheritance diagram for CEGUI::Font_xmlHandler:
+ Collaboration diagram for CEGUI::Font_xmlHandler:

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

Fontd_font
 Font object that we are helping to build.
 

Detailed Description

Handler class used to parse the Font XML files using SAX2.

Constructor & Destructor Documentation

CEGUI::Font_xmlHandler::Font_xmlHandler ( )
inline

Constructor for Font::xmlHandler objects.

Parameters
fontPointer to the Font object creating this xmlHandler object

Member Function Documentation

void CEGUI::Font_xmlHandler::elementEnd ( const String element)
virtual

Method called to notify the handler at the end of each XML element encountered.

Parameters
elementString object holding the name of the element that is ending.
Returns
Nothing.

Reimplemented from CEGUI::XMLHandler.