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

GI.Gtk.Objects.EventController

Description

EventController is a base, low-level implementation for event controllers. Those react to a series of GdkEvents, and possibly trigger actions as a consequence of those.

Synopsis

Exported types

newtype EventController Source #

Memory-managed wrapper type.

Constructors

EventController (ManagedPtr EventController) 

Instances

Instances details
Eq EventController Source # 
Instance details

Defined in GI.Gtk.Objects.EventController

GObject EventController Source # 
Instance details

Defined in GI.Gtk.Objects.EventController

ManagedPtrNewtype EventController Source # 
Instance details

Defined in GI.Gtk.Objects.EventController

TypedObject EventController Source # 
Instance details

Defined in GI.Gtk.Objects.EventController

Methods

glibType :: IO GType

HasParentTypes EventController Source # 
Instance details

Defined in GI.Gtk.Objects.EventController

IsGValue (Maybe EventController) Source #

Convert EventController to and from GValue. See toGValue and fromGValue.

Instance details

Defined in GI.Gtk.Objects.EventController

Methods

gvalueGType_ :: IO GType

gvalueSet_ :: Ptr GValue -> Maybe EventController -> IO ()

gvalueGet_ :: Ptr GValue -> IO (Maybe EventController)

type ParentTypes EventController Source # 
Instance details

Defined in GI.Gtk.Objects.EventController

type ParentTypes EventController = '[Object]

class (GObject o, IsDescendantOf EventController o) => IsEventController o Source #

Type class for types which can be safely cast to EventController, for instance with toEventController.

Instances

Instances details
(GObject o, IsDescendantOf EventController o) => IsEventController o Source # 
Instance details

Defined in GI.Gtk.Objects.EventController

toEventController :: (MonadIO m, IsEventController o) => o -> m EventController Source #

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

Methods

getCurrentEvent

eventControllerGetCurrentEvent Source #

Arguments

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

controller: a EventController

-> m (Maybe Event)

Returns: the event is current handled by controller

Returns the event that is currently being handled by the controller, and Nothing at other times.

getCurrentEventDevice

eventControllerGetCurrentEventDevice Source #

Arguments

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

controller: a EventController

-> m (Maybe Device)

Returns: device of the event is current handled by controller

Returns the device of the event that is currently being handled by the controller, and Nothing otherwise.

getCurrentEventState

eventControllerGetCurrentEventState Source #

Arguments

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

controller: a EventController

-> m [ModifierType]

Returns: modifier state of the event is current handled by controller

Returns the modifier state of the event that is currently being handled by the controller, and 0 otherwise.

getCurrentEventTime

eventControllerGetCurrentEventTime Source #

Arguments

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

controller: a EventController

-> m Word32

Returns: timestamp of the event is current handled by controller

Returns the timestamp of the event that is currently being handled by the controller, and 0 otherwise.

getName

eventControllerGetName Source #

Arguments

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

controller: a EventController

-> m Text 

Gets the name of controller.

getPropagationLimit

eventControllerGetPropagationLimit Source #

Arguments

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

controller: a EventController

-> m PropagationLimit

Returns: the propagation limit

Gets the propagation limit of the event controller.

getPropagationPhase

eventControllerGetPropagationPhase Source #

Arguments

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

controller: a EventController

-> m PropagationPhase

Returns: the propagation phase

Gets the propagation phase at which controller handles events.

getWidget

eventControllerGetWidget Source #

Arguments

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

controller: a EventController

-> m Widget

Returns: a Widget

Returns the Widget this controller relates to.

reset

eventControllerReset Source #

Arguments

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

controller: a EventController

-> m () 

Resets the controller to a clean state. Every interaction the controller did through gtk_event_controller_handle_event() will be dropped at this point.

setName

eventControllerSetName Source #

Arguments

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

controller: a EventController

-> Text

name: a name for controller

-> m () 

Sets a name on the controller that can be used for debugging.

setPropagationLimit

eventControllerSetPropagationLimit Source #

Arguments

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

controller: a EventController

-> PropagationLimit

limit: the propagation limit

-> m () 

Sets the event propagation limit on the event controller.

If the limit is set to PropagationLimitSameNative, the controller won't handle events that are targeted at widgets on a different surface, such as popovers.

setPropagationPhase

eventControllerSetPropagationPhase Source #

Arguments

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

controller: a EventController

-> PropagationPhase

phase: a propagation phase

-> m () 

Sets the propagation phase at which a controller handles events.

If phase is PropagationPhaseNone, no automatic event handling will be performed, but other additional gesture maintenance will. In that phase, the events can be managed by calling gtk_event_controller_handle_event().

Properties

name

The name for this controller, typically used for debugging purposes.

constructEventControllerName :: (IsEventController o, MonadIO m) => Text -> m (GValueConstruct o) Source #

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

getEventControllerName :: (MonadIO m, IsEventController o) => o -> m Text Source #

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

get eventController #name

setEventControllerName :: (MonadIO m, IsEventController o) => o -> Text -> m () Source #

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

set eventController [ #name := value ]

propagationLimit

The limit for which events this controller will handle.

constructEventControllerPropagationLimit :: (IsEventController o, MonadIO m) => PropagationLimit -> m (GValueConstruct o) Source #

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

getEventControllerPropagationLimit :: (MonadIO m, IsEventController o) => o -> m PropagationLimit Source #

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

get eventController #propagationLimit

setEventControllerPropagationLimit :: (MonadIO m, IsEventController o) => o -> PropagationLimit -> m () Source #

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

set eventController [ #propagationLimit := value ]

propagationPhase

The propagation phase at which this controller will handle events.

constructEventControllerPropagationPhase :: (IsEventController o, MonadIO m) => PropagationPhase -> m (GValueConstruct o) Source #

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

getEventControllerPropagationPhase :: (MonadIO m, IsEventController o) => o -> m PropagationPhase Source #

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

get eventController #propagationPhase

setEventControllerPropagationPhase :: (MonadIO m, IsEventController o) => o -> PropagationPhase -> m () Source #

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

set eventController [ #propagationPhase := value ]

widget

The widget receiving the GdkEvents that the controller will handle.

getEventControllerWidget :: (MonadIO m, IsEventController o) => o -> m Widget Source #

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

get eventController #widget