|
|
| Config_xmlHandler () |
| | Constructor.
|
| |
|
| ~Config_xmlHandler () |
| | Destructor.
|
| |
|
void | initialiseXMLParser () const |
| | Initialise the CEGUI XMLParser according to info parsed from config.
|
| |
|
void | initialiseImageCodec () const |
| | Initialise the CEGUI ImageCodec according to info parsed from config.
|
| |
|
void | initialiseLogger (const String &default_filename) const |
| | Initialise the CEGUI Logger according to info parsed from config.
|
| |
|
void | initialiseResourceGroupDirectories () const |
| | Set resource group dirs read from the config. (DefaultResourceProvider only).
|
| |
|
void | initialiseDefaultResourceGroups () const |
| | Set default resource groups according to those in the config.
|
| |
|
void | loadAutoResources () const |
| | Auto-load all resources specified in the config.
|
| |
|
void | initialiseDefaultFont () const |
| | initialise the system default font according to the config.
|
| |
|
void | initialiseDefaultMouseCursor () const |
| | initialise the system default mouse cursor image according to the config.
|
| |
|
void | initialiseDefaulTooltip () const |
| | initialise the system default tooltip according to the config.
|
| |
|
void | executeInitScript () const |
| | execute the init script as specified in the config.
|
| |
|
const String & | getTerminateScriptName () const |
| | return the name of the terminate script from the config (hacky!)
|
| |
| const String & | getSchemaName () const |
| | Retrieves the schema file name to use with resources handled by this handler. More...
|
| |
| const String & | getDefaultResourceGroup () const |
| | Retrieves the default resource group to be used when handling files. More...
|
| |
| 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 const String & | getSchemaName () const |
| | Retrieves the schema file name to use with resources handled by this handler. More...
|
| |
| virtual const String & | getDefaultResourceGroup () const =0 |
| | Retrieves the default resource group to be used when handling files. More...
|
| |
| void | handleContainer (const RawDataContainer &source) |
| | Takes given RawDataContainer containing XML and handles it. More...
|
| |
| void | handleFile (const String &fileName, const String &resourceGroup) |
| | Takes given file containing XML and handles it. More...
|
| |
| void | handleString (const String &source) |
| | Takes given string containing XML source and handles it. More...
|
| |
| virtual void | elementStart (const String &element, const XMLAttributes &attributes) |
| | Method called to notify the handler at the start of each XML element encountered. More...
|
| |
| virtual void | elementEnd (const String &element) |
| | Method called to notify the handler at the end of each XML element encountered. More...
|
| |
| virtual void | text (const String &text) |
| | Method called to notify text node, several successiv text node are agregated. More...
|
| |
Handler class used to parse the Configuration XML file.