Package: gobject

Function g-signal-connect-after

Lambda List

g-signal-connect-after (instance detailed-signal handler)

Arguments

instance -- a g-object instance to connect to
detailed-signal -- a string of the form "signal-name::detail"
handler -- a Lisp callback function to connect

Return Value

A unsigned long with the handler ID.

Details

Connects a Lisp callback function to a signal for a particular object. The handler will be called after the default handler of the signal.

Lisp implementation

In the Lisp implementation the g-signal-connect function has a after keyword argument. This function is implemented as:
(g-signal-connect instance detailed-signal handler :after t)    
 

See also

2021-12-14