Package: gdk

Constant gdk:+event-stop+

Initial Value

true

Details

Use this value as the return value for stopping the propagation of an event handler.

Examples

This event handler for the "close-request" signal of a window stops the propagation of the event and the window is not closed.
(g:signal-connect window "close-request"
                  (lambda (widget event)
                    (declare (ignore widget event))
                    gdk:+event-stop+))    
 

See also

2024-4-1