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.

Example

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

See also

*2021-12-13