|
Crazy Eddie's GUI System 0.8.7
|
Inherited by CEGUI::ChainedXMLHandler, CEGUI::Config_xmlHandler, CEGUI::Font_xmlHandler, CEGUI::GUILayout_xmlHandler, and CEGUI::Scheme_xmlHandler.
Public Member Functions | |
| XMLHandler (void) | |
| XMLHandler base class constructor. | |
| virtual | ~XMLHandler (void) |
| XMLHandler base class destructor. | |
| virtual const String & | getSchemaName () const |
| Retrieves the schema file name to use with resources handled by this handler. | |
| virtual const String & | getDefaultResourceGroup () const =0 |
| Retrieves the default resource group to be used when handling files. | |
| void | handleContainer (const RawDataContainer &source) |
| Takes given RawDataContainer containing XML and handles it. | |
| void | handleFile (const String &fileName, const String &resourceGroup) |
| Takes given file containing XML and handles it. | |
| void | handleString (const String &source) |
| Takes given string containing XML source and handles it. | |
| virtual void | elementStart (const String &element, const XMLAttributes &attributes) |
| Method called to notify the handler at the start of each XML element encountered. | |
| virtual void | elementEnd (const String &element) |
| Method called to notify the handler at the end of each XML element encountered. | |
| virtual void | text (const String &text) |
| Method called to notify text node, several successiv text node are agregated. | |
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 in CEGUI::ChainedXMLHandler, CEGUI::Config_xmlHandler, CEGUI::Font_xmlHandler, CEGUI::GUILayout_xmlHandler, and CEGUI::Scheme_xmlHandler.
|
virtual |
Method called to notify the handler at the start of each XML element encountered.
| element | String object holding the name of the element that is starting. |
| attributes | An XMLAttributes object holding the collection of attributes specified for the element. |
Reimplemented in CEGUI::ChainedXMLHandler, CEGUI::Config_xmlHandler, CEGUI::Font_xmlHandler, CEGUI::GUILayout_xmlHandler, and CEGUI::Scheme_xmlHandler.
Retrieves the default resource group to be used when handling files.
Implemented in CEGUI::Animation_xmlHandler, CEGUI::ChainedXMLHandler, CEGUI::Config_xmlHandler, CEGUI::Font_xmlHandler, CEGUI::GUILayout_xmlHandler, CEGUI::ImageManager, and CEGUI::Scheme_xmlHandler.
Retrieves the schema file name to use with resources handled by this handler.
Reimplemented in CEGUI::Animation_xmlHandler, CEGUI::ChainedXMLHandler, CEGUI::Config_xmlHandler, CEGUI::Font_xmlHandler, CEGUI::GUILayout_xmlHandler, CEGUI::ImageManager, and CEGUI::Scheme_xmlHandler.
| void CEGUI::XMLHandler::handleContainer | ( | const RawDataContainer & | source | ) |
Takes given RawDataContainer containing XML and handles it.
This is basically a convenience function used by NamedXMLResourceManager
Takes given file containing XML and handles it.
This is basically a convenience function used by NamedXMLResourceManager
Takes given string containing XML source and handles it.
This is basically a convenience function used by NamedXMLResourceManager