#include <CEGUIScriptModule.h>
Public Member Functions | |
ScriptModule (void) | |
Constructor for ScriptModule base class. | |
virtual | ~ScriptModule (void) |
Destructor for ScriptModule base class. | |
virtual void | executeScriptFile (const String &filename)=0 |
Execute a script file. | |
virtual int | executeScriptGloabl (const String &function_name)=0 |
Execute a scripted global function. The function should not take any parameters and should return an integer. | |
virtual bool | executeScriptedEventHandler (const String &handler_name, const EventArgs &e)=0 |
Execute a scripted global 'event handler' function. The function should take some kind of EventArgs like parameter that the concrete implementation of this function can create from the passed EventArgs based object. The function should not return anything. |
Definition at line 42 of file CEGUIScriptModule.h.
|
Constructor for ScriptModule base class.
Definition at line 52 of file CEGUIScriptModule.h. |
|
Destructor for ScriptModule base class.
Definition at line 59 of file CEGUIScriptModule.h. |
|
Execute a scripted global 'event handler' function. The function should take some kind of EventArgs like parameter that the concrete implementation of this function can create from the passed EventArgs based object. The function should not return anything.
Referenced by CEGUI::ScriptFunctor::operator()(). |
|
Execute a script file.
Referenced by CEGUI::System::executeScriptFile(). |
|
Execute a scripted global function. The function should not take any parameters and should return an integer.
Referenced by CEGUI::System::executeScriptGloabl(). |