GtkObject::connect_object_after
int connect_object_after(string signal, string function, Object param);
connect_object_after() allows the
passing of a different object to a callback than the one for emitting
the signal in the first place. By using the
connect_object_after() you can
ensure that all normal handlers, and the default handler are called
first.
The signal parameter is the
textual name of the signal we want to connect to, the
function parameter is the textual name of the
function we want to connect to the signal and the
param parameter is the object we want to pass as
the first parameter to the callback.
The function returns the signal_id.
See Also: connect() ,
connect_after() ,
connect_object()