GtkObject::connect_object_after

GtkObject::connect_object_after

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()

© Copyright 2003-2023 www.php-editors.com. The ultimate PHP Editor and PHP IDE site.