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

Class used to parse the Imageset XML files to create Imageset objects. More...

+ Inheritance diagram for CEGUI::Imageset_xmlHandler:
+ Collaboration diagram for CEGUI::Imageset_xmlHandler:

Public Member Functions

 Imageset_xmlHandler (const String &filename, const String &resource_group)
 Constructor.
 
 ~Imageset_xmlHandler ()
 Destructor.
 
const StringgetObjectName () const
 Return string holding the name of the created Imageset.
 
ImagesetgetObject () const
 Return reference to the created Imageset object.
 
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

Class used to parse the Imageset XML files to create Imageset objects.

Member Function Documentation

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