EventControllerScrollRef
public struct EventControllerScrollRef : EventControllerScrollProtocol, GWeakCapturing
GtkEventControllerScroll
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 GtkEventControllerScroll::scroll
signal (deltas in the
discrete case are multiples of 1).
In the case of continuous scroll events, GtkEventControllerScroll
encloses all GtkEventControllerScroll::scroll
events between two
GtkEventControllerScroll::scroll-begin
and GtkEventControllerScroll::scroll-end
signals.
The behavior of the event controller can be modified by the
flags given at creation time, or modified at a later point through
gtk_event_controller_scroll_set_flags()
(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 GtkEventControllerScroll::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
GtkEventControllerScroll::decelerate
signal, emitted at the end of scrolling
with two X/Y velocity arguments that are consistent with the motion that
was received.
This object was added in 3.24.
The EventControllerScrollRef
type acts as a lightweight Swift reference to an underlying GtkEventControllerScroll
instance.
It exposes methods that can operate on this data type through EventControllerScrollProtocol
conformance.
Use EventControllerScrollRef
only as an unowned
reference to an existing GtkEventControllerScroll
instance.
-
Untyped pointer to the underlying `GtkEventControllerScroll` instance.
For type-safe access, use the generated, typed pointer
event_controller_scroll_ptr
property instead.Declaration
Swift
public let ptr: UnsafeMutableRawPointer!
-
Designated initialiser from the underlying
C
data typeDeclaration
Swift
@inlinable init(_ p: UnsafeMutablePointer<GtkEventControllerScroll>)
-
Designated initialiser from a constant pointer to the underlying
C
data typeDeclaration
Swift
@inlinable init(_ p: UnsafePointer<GtkEventControllerScroll>)
-
Conditional initialiser from an optional pointer to the underlying
C
data typeDeclaration
Swift
@inlinable init!(_ maybePointer: UnsafeMutablePointer<GtkEventControllerScroll>?)
-
Conditional initialiser from an optional, non-mutable pointer to the underlying
C
data typeDeclaration
Swift
@inlinable init!(_ maybePointer: UnsafePointer<GtkEventControllerScroll>?)
-
Conditional initialiser from an optional
gpointer
Declaration
Swift
@inlinable init!(gpointer g: gpointer?)
-
Conditional initialiser from an optional, non-mutable
gconstpointer
Declaration
Swift
@inlinable init!(gconstpointer g: gconstpointer?)
-
Reference intialiser for a related type that implements
EventControllerScrollProtocol
Declaration
Swift
@inlinable init<T>(_ other: T) where T : EventControllerScrollProtocol
-
This factory is syntactic sugar for setting weak pointers wrapped in
GWeak<T>
Declaration
Swift
@inlinable static func unowned<T>(_ other: T) -> EventControllerScrollRef where T : EventControllerScrollProtocol
-
Unsafe typed initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
EventControllerScrollProtocol
.Declaration
Swift
@inlinable init<T>(cPointer: UnsafeMutablePointer<T>)
-
Unsafe typed initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
EventControllerScrollProtocol
.Declaration
Swift
@inlinable init<T>(constPointer: UnsafePointer<T>)
-
Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
EventControllerScrollProtocol
.Declaration
Swift
@inlinable init(mutating raw: UnsafeRawPointer)
-
Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
EventControllerScrollProtocol
.Declaration
Swift
@inlinable init(raw: UnsafeMutableRawPointer)
-
Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
EventControllerScrollProtocol
.Declaration
Swift
@inlinable init(opaquePointer: OpaquePointer)
-
Creates a new event controller that will handle scroll events
for the given
widget
.Declaration
Swift
@inlinable init<WidgetT>(widget: WidgetT, flags: EventControllerScrollFlags) where WidgetT : WidgetProtocol