gi-gtk-4.0.1: Gtk bindings
CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellNone
LanguageHaskell2010

GI.Gtk.Objects.EventControllerScroll

Description

EventControllerScroll is an event controller meant to handle scroll events from mice and touchpads. It is capable of handling both discrete and continuous scroll events, abstracting them both on the scroll signal (deltas in the discrete case are multiples of 1).

In the case of continuous scroll events, EventControllerScroll encloses all scroll events between two scrollBegin and scrollEnd signals.

The behavior of the event controller can be modified by the flags given at creation time, or modified at a later point through eventControllerScrollSetFlags (e.g. because the scrolling conditions of the widget changed).

The controller can be set up to emit motion for either/both vertical and horizontal scroll events through GTK_EVENT_CONTROLLER_SCROLL_VERTICAL, GTK_EVENT_CONTROLLER_SCROLL_HORIZONTAL and GTK_EVENT_CONTROLLER_SCROLL_BOTH. If any axis is disabled, the respective scroll delta will be 0. Vertical scroll events will be translated to horizontal motion for the devices incapable of horizontal scrolling.

The event controller can also be forced to emit discrete events on all devices through GTK_EVENT_CONTROLLER_SCROLL_DISCRETE. This can be used to implement discrete actions triggered through scroll events (e.g. switching across combobox options).

The GTK_EVENT_CONTROLLER_SCROLL_KINETIC flag toggles the emission of the decelerate signal, emitted at the end of scrolling with two X/Y velocity arguments that are consistent with the motion that was received.

Synopsis

Exported types

class (GObject o, IsDescendantOf EventControllerScroll o) => IsEventControllerScroll o Source #

Type class for types which can be safely cast to EventControllerScroll, for instance with toEventControllerScroll.

Instances

Instances details
(GObject o, IsDescendantOf EventControllerScroll o) => IsEventControllerScroll o Source # 
Instance details

Defined in GI.Gtk.Objects.EventControllerScroll

toEventControllerScroll :: (MonadIO m, IsEventControllerScroll o) => o -> m EventControllerScroll Source #

Cast to EventControllerScroll, for types for which this is known to be safe. For general casts, use castTo.

Methods

Overloaded methods

getFlags

eventControllerScrollGetFlags Source #

Arguments

:: (HasCallStack, MonadIO m, IsEventControllerScroll a) 
=> a

scroll: a EventControllerScroll

-> m [EventControllerScrollFlags]

Returns: the controller flags.

Gets the flags conditioning the scroll controller behavior.

new

eventControllerScrollNew Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> [EventControllerScrollFlags]

flags: behavior flags

-> m EventControllerScroll

Returns: a new EventControllerScroll

Creates a new event controller that will handle scroll events.

setFlags

eventControllerScrollSetFlags Source #

Arguments

:: (HasCallStack, MonadIO m, IsEventControllerScroll a) 
=> a

scroll: a EventControllerScroll

-> [EventControllerScrollFlags]

flags: behavior flags

-> m () 

Sets the flags conditioning scroll controller behavior.

Properties

flags

The flags affecting event controller behavior

constructEventControllerScrollFlags :: IsEventControllerScroll o => [EventControllerScrollFlags] -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “flags” property. This is rarely needed directly, but it is used by new.

getEventControllerScrollFlags :: (MonadIO m, IsEventControllerScroll o) => o -> m [EventControllerScrollFlags] Source #

Get the value of the “flags” property. When overloading is enabled, this is equivalent to

get eventControllerScroll #flags

setEventControllerScrollFlags :: (MonadIO m, IsEventControllerScroll o) => o -> [EventControllerScrollFlags] -> m () Source #

Set the value of the “flags” property. When overloading is enabled, this is equivalent to

set eventControllerScroll [ #flags := value ]

Signals

decelerate

type C_EventControllerScrollDecelerateCallback = Ptr () -> CDouble -> CDouble -> Ptr () -> IO () Source #

Type for the callback on the (unwrapped) C side.

type EventControllerScrollDecelerateCallback Source #

Arguments

 = Double

velX: X velocity

-> Double

velY: Y velocity

-> IO () 

Emitted after scroll is finished if the GTK_EVENT_CONTROLLER_SCROLL_KINETIC flag is set. velX and velY express the initial velocity that was imprinted by the scroll events. velX and velY are expressed in pixels/ms.

afterEventControllerScrollDecelerate :: (IsEventControllerScroll a, MonadIO m) => a -> EventControllerScrollDecelerateCallback -> m SignalHandlerId Source #

Connect a signal handler for the decelerate signal, to be run after the default handler. When overloading is enabled, this is equivalent to

after eventControllerScroll #decelerate callback

onEventControllerScrollDecelerate :: (IsEventControllerScroll a, MonadIO m) => a -> EventControllerScrollDecelerateCallback -> m SignalHandlerId Source #

Connect a signal handler for the decelerate signal, to be run before the default handler. When overloading is enabled, this is equivalent to

on eventControllerScroll #decelerate callback

scroll

type C_EventControllerScrollScrollCallback = Ptr () -> CDouble -> CDouble -> Ptr () -> IO CInt Source #

Type for the callback on the (unwrapped) C side.

type EventControllerScrollScrollCallback Source #

Arguments

 = Double

dx: X delta

-> Double

dy: Y delta

-> IO Bool

Returns: True if the scroll event was handled, False otherwise.

Signals that the widget should scroll by the amount specified by dx and dy.

afterEventControllerScrollScroll :: (IsEventControllerScroll a, MonadIO m) => a -> EventControllerScrollScrollCallback -> m SignalHandlerId Source #

Connect a signal handler for the scroll signal, to be run after the default handler. When overloading is enabled, this is equivalent to

after eventControllerScroll #scroll callback

onEventControllerScrollScroll :: (IsEventControllerScroll a, MonadIO m) => a -> EventControllerScrollScrollCallback -> m SignalHandlerId Source #

Connect a signal handler for the scroll signal, to be run before the default handler. When overloading is enabled, this is equivalent to

on eventControllerScroll #scroll callback

scrollBegin

type C_EventControllerScrollScrollBeginCallback = Ptr () -> Ptr () -> IO () Source #

Type for the callback on the (unwrapped) C side.

type EventControllerScrollScrollBeginCallback = IO () Source #

Signals that a new scrolling operation has begun. It will only be emitted on devices capable of it.

afterEventControllerScrollScrollBegin :: (IsEventControllerScroll a, MonadIO m) => a -> EventControllerScrollScrollBeginCallback -> m SignalHandlerId Source #

Connect a signal handler for the scrollBegin signal, to be run after the default handler. When overloading is enabled, this is equivalent to

after eventControllerScroll #scrollBegin callback

onEventControllerScrollScrollBegin :: (IsEventControllerScroll a, MonadIO m) => a -> EventControllerScrollScrollBeginCallback -> m SignalHandlerId Source #

Connect a signal handler for the scrollBegin signal, to be run before the default handler. When overloading is enabled, this is equivalent to

on eventControllerScroll #scrollBegin callback

scrollEnd

type C_EventControllerScrollScrollEndCallback = Ptr () -> Ptr () -> IO () Source #

Type for the callback on the (unwrapped) C side.

type EventControllerScrollScrollEndCallback = IO () Source #

Signals that a new scrolling operation has finished. It will only be emitted on devices capable of it.

afterEventControllerScrollScrollEnd :: (IsEventControllerScroll a, MonadIO m) => a -> EventControllerScrollScrollEndCallback -> m SignalHandlerId Source #

Connect a signal handler for the scrollEnd signal, to be run after the default handler. When overloading is enabled, this is equivalent to

after eventControllerScroll #scrollEnd callback

onEventControllerScrollScrollEnd :: (IsEventControllerScroll a, MonadIO m) => a -> EventControllerScrollScrollEndCallback -> m SignalHandlerId Source #

Connect a signal handler for the scrollEnd signal, to be run before the default handler. When overloading is enabled, this is equivalent to

on eventControllerScroll #scrollEnd callback