Crazy Eddies GUI System  0.7.1
Public Member Functions | List of all members
CEGUI::Falagard_xmlHandler Class Reference

Handler class used to parse look & feel XML files used by the Falagard system. More...

+ Inheritance diagram for CEGUI::Falagard_xmlHandler:
+ Collaboration diagram for CEGUI::Falagard_xmlHandler:

Public Member Functions

 Falagard_xmlHandler (WidgetLookManager *mgr)
 Constructor for Falagard_xmlHandler objects.
 
 ~Falagard_xmlHandler ()
 Destructor for Falagard_xmlHandler objects.
 
void elementStart (const String &element, const XMLAttributes &attributes)
 Method called to notify the handler at the start of each XML element encountered. More...
 
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...
 

Detailed Description

Handler class used to parse look & feel XML files used by the Falagard system.

Member Function Documentation

void CEGUI::Falagard_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.

void CEGUI::Falagard_xmlHandler::elementStart ( const String element,
const XMLAttributes attributes 
)
virtual

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

Parameters
elementString object holding the name of the element that is starting.
attributesAn XMLAttributes object holding the collection of attributes specified for the element.
Returns
Nothing.

Reimplemented from CEGUI::XMLHandler.