GtkObject::connect_object
int connect_object(string signal, string function, object param);
connect_object() allows the passing
of a different object to a callback than the one for emitting the signal
in the first place.
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_after()