Inheritance diagram for DzCallBack:
Methods | |
void | addToGroup (String group) |
void | clearConnection () |
Object | getArg (Number which) |
Number | getArgCount () |
Array | getGroups () |
String | getScript () |
Object | getSender () |
Boolean | isEvaluated () |
void | removeFromGroup (String group) |
Boolean | setConnection (Object sender, String signal) |
void | setScript (String script, Boolean evaluate) |
void DzCallBack::addToGroup | ( | String | group | ) |
Adds the callback to the given callback group.
group | The name of the group to add the callback to. |
void DzCallBack::clearConnection | ( | ) |
Disconnects from the signal that triggers this callback.
Number DzCallBack::getArgCount | ( | ) |
Array DzCallBack::getGroups | ( | ) |
String DzCallBack::getScript | ( | ) |
Object DzCallBack::getSender | ( | ) |
bool DzCallBack::isEvaluated | ( | ) |
void DzCallBack::removeFromGroup | ( | String | group | ) |
Removes the callback from the given callback group.
group | The name of the group to remove the callback from. |
Makes the connection that triggers this callback.
sender | The object that the signal belongs to. | |
signal | The signature of the signal to connect to. |
Sets the script that will be executed by this callback.
script | The filename or actual text of the script to execute | |
evaluate | If true, the given script is the actual code that should be evaluated, otherwise, it is assumed that the given text is the name of a script file to execute. |