Package: gtk

GEnum gtk:propagation-phase

Declaration

(gobject:define-genum "GtkPropagationPhase" propagation-phase
  (:export t
   :type-initializer "gtk_propagation_phase_get_type")
  (:none 0)
  (:capture 1)
  (:bubble 2)
  (:target 3))  

Values

:none
Events are not delivered.
:capture
Events are delivered in the capture phase. The capture phase happens before the bubble phase, runs from the toplevel down to the event widget. This option should only be used on containers that might possibly handle events before their children do.
:bubble
Events are delivered in the bubble phase. The bubble phase happens after the capture phase, and before the default handlers are run. This phase runs from the event widget, up to the toplevel.
:target
Events are delivered in the default widget event handlers, note that widget implementations must chain up on button, motion, touch and grab broken handlers for controllers in this phase to be run.

Details

Describes the stage at which events are fed into a gtk:event-controller object.
 

See also

2024-7-26