Functions | |
| deleteOb (inst, bloc) | |
| Callback on instance destruction. | |
| cbBlocHasChanged (bloc, inst, ival, iname) | |
| Callback on bloc value change. | |
| cbShowdlg (inst, from, action, param, reply, bloc) | |
| Callback on "Consult" dms action. | |
| cbChangeValue (inst, from, action, param, reply, bloc) | |
| Callback on "Change value" dms action. | |
| cbChangeName (inst, from, action, param, reply, bloc) | |
| Callback on "Change name" dms action. | |
| newOb (inst) | |
| Callback on new plugIT instance. | |
| IniPlug (file) | |
| Global plugIT function to initialize the plugIT callbacks. | |
| cbBlocHasChanged | ( | bloc | , | |
| inst | , | |||
| ival | , | |||
| iname | ||||
| ) |
Callback on bloc value change.
Send the "Bloc has changed" event
Prototype: fun [ObjBloc PInstance I S] I
| ObjBloc | : bloc object | |
| PInstance | : plugIT instance | |
| I | : bloc value | |
| S | : bloc name |
| cbChangeName | ( | inst | , | |
| from | , | |||
| action | , | |||
| param | , | |||
| reply | , | |||
| bloc | ||||
| ) |
Callback on "Change name" dms action.
Change the bloc name with the value set in link parameter
Prototype: fun [PInstance DMI S S I ObjBloc] I
| PInstance | : plugIT instance | |
| DMI | : DMS module who call the action (not used) | |
| S | : name of the launched action | |
| S | : data posted in DMS action link | |
| I | : reply flag (not used) | |
| ObjBloc | : bloc object |
| cbChangeValue | ( | inst | , | |
| from | , | |||
| action | , | |||
| param | , | |||
| reply | , | |||
| bloc | ||||
| ) |
Callback on "Change value" dms action.
Change the bloc value with the value set in link parameter
Prototype: fun [PInstance DMI S S I ObjBloc] I
| PInstance | : plugIT instance | |
| DMI | : DMS module who call the action (not used) | |
| S | : name of the launched action | |
| S | : data posted in DMS action link | |
| I | : reply flag (not used) | |
| ObjBloc | : bloc object |
| cbShowdlg | ( | inst | , | |
| from | , | |||
| action | , | |||
| param | , | |||
| reply | , | |||
| bloc | ||||
| ) |
Callback on "Consult" dms action.
Show the bloc values in a dialog box
Prototype: fun [PInstance DMI S S I ObjBloc] I
| PInstance | : plugIT instance | |
| DMI | : DMS module who call the action (not used) | |
| S | : name of the launched action | |
| S | : data posted in DMS action link | |
| I | : reply flag (not used) | |
| ObjBloc | : bloc object |
| deleteOb | ( | inst | , | |
| bloc | ||||
| ) |
Callback on instance destruction.
Prototype: fun [PInstance ObjBloc] I
| PInstance | : destroyed plugIT instance | |
| ObjBloc | : bloc object |
| IniPlug | ( | file | ) |
Global plugIT function to initialize the plugIT callbacks.
Prototype: fun [S] I
| S | : plugIT file path |
| newOb | ( | inst | ) |
Callback on new plugIT instance.
Read the parameters from editor values and create the bloc object
Prototype: fun [PInstance] I
| PInstance | : plugIT instance |
1.6.3