GestureDragPropertyName

public enum GestureDragPropertyName : String, PropertyNameProtocol

Undocumented

  • Mouse button number to listen to, or 0 to listen for any button.

    Declaration

    Swift

    case button = "button"
  • Whether the gesture is exclusive. Exclusive gestures only listen to pointer and pointer emulated events.

    Declaration

    Swift

    case exclusive = "exclusive"
  • The number of touch points that trigger recognition on this gesture,

    Declaration

    Swift

    case nPoints = "n-points"
  • The propagation phase at which this controller will handle events.

    Declaration

    Swift

    case propagationPhase = "propagation-phase"
  • Whether the gesture handles only touch events.

    Declaration

    Swift

    case touchOnly = "touch-only"
  • The widget receiving the GdkEvents that the controller will handle.

    Declaration

    Swift

    case widget = "widget"
  • If non-nil, the gesture will only listen for events that happen on this GdkWindow, or a child of it.

    Declaration

    Swift

    case window = "window"