Interface PropagationPhase


public interface PropagationPhase
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Events are delivered in the bubble phase.
    static final int
    Events are delivered in the capture phase.
    static final int
    Events are not delivered.
    static final int
    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.
  • Field Details

    • NONE

      static final int NONE
      Events are not delivered.
      See Also:
    • CAPTURE

      static final int 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.
      See Also:
    • BUBBLE

      static final int 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.
      See Also:
    • TARGET

      static final int 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.
      See Also: