gi-gdk-3.0.18: Gdk bindings

CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria (inaki@blueleaf.cc)
Safe HaskellNone
LanguageHaskell2010

GI.Gdk.Structs.EventMotion

Contents

Description

Generated when the pointer moves.

Synopsis

Exported types

newZeroEventMotion :: MonadIO m => m EventMotion Source #

Construct a EventMotion struct initialized to zero.

Properties

axes

x, y translated to the axes of device, or Nothing if device is the mouse.

getEventMotionAxes :: MonadIO m => EventMotion -> m Double Source #

Get the value of the “axes” field. When overloading is enabled, this is equivalent to

get eventMotion #axes

setEventMotionAxes :: MonadIO m => EventMotion -> Double -> m () Source #

Set the value of the “axes” field. When overloading is enabled, this is equivalent to

set eventMotion [ #axes := value ]

device

the master device that the event originated from. Use eventGetSourceDevice to get the slave device.

clearEventMotionDevice :: MonadIO m => EventMotion -> m () Source #

Set the value of the “device” field to Nothing. When overloading is enabled, this is equivalent to

clear #device

getEventMotionDevice :: MonadIO m => EventMotion -> m (Maybe Device) Source #

Get the value of the “device” field. When overloading is enabled, this is equivalent to

get eventMotion #device

setEventMotionDevice :: MonadIO m => EventMotion -> Ptr Device -> m () Source #

Set the value of the “device” field. When overloading is enabled, this is equivalent to

set eventMotion [ #device := value ]

isHint

set to 1 if this event is just a hint, see the EventMaskPointerMotionHintMask value of EventMask.

getEventMotionIsHint :: MonadIO m => EventMotion -> m Int16 Source #

Get the value of the “is_hint” field. When overloading is enabled, this is equivalent to

get eventMotion #isHint

setEventMotionIsHint :: MonadIO m => EventMotion -> Int16 -> m () Source #

Set the value of the “is_hint” field. When overloading is enabled, this is equivalent to

set eventMotion [ #isHint := value ]

sendEvent

True if the event was sent explicitly.

getEventMotionSendEvent :: MonadIO m => EventMotion -> m Int8 Source #

Get the value of the “send_event” field. When overloading is enabled, this is equivalent to

get eventMotion #sendEvent

setEventMotionSendEvent :: MonadIO m => EventMotion -> Int8 -> m () Source #

Set the value of the “send_event” field. When overloading is enabled, this is equivalent to

set eventMotion [ #sendEvent := value ]

state

a bit-mask representing the state of the modifier keys (e.g. Control, Shift and Alt) and the pointer buttons. See ModifierType.

getEventMotionState :: MonadIO m => EventMotion -> m [ModifierType] Source #

Get the value of the “state” field. When overloading is enabled, this is equivalent to

get eventMotion #state

setEventMotionState :: MonadIO m => EventMotion -> [ModifierType] -> m () Source #

Set the value of the “state” field. When overloading is enabled, this is equivalent to

set eventMotion [ #state := value ]

time

the time of the event in milliseconds.

getEventMotionTime :: MonadIO m => EventMotion -> m Word32 Source #

Get the value of the “time” field. When overloading is enabled, this is equivalent to

get eventMotion #time

setEventMotionTime :: MonadIO m => EventMotion -> Word32 -> m () Source #

Set the value of the “time” field. When overloading is enabled, this is equivalent to

set eventMotion [ #time := value ]

type

the type of the event.

getEventMotionType :: MonadIO m => EventMotion -> m EventType Source #

Get the value of the “type” field. When overloading is enabled, this is equivalent to

get eventMotion #type

setEventMotionType :: MonadIO m => EventMotion -> EventType -> m () Source #

Set the value of the “type” field. When overloading is enabled, this is equivalent to

set eventMotion [ #type := value ]

window

the window which received the event.

clearEventMotionWindow :: MonadIO m => EventMotion -> m () Source #

Set the value of the “window” field to Nothing. When overloading is enabled, this is equivalent to

clear #window

getEventMotionWindow :: MonadIO m => EventMotion -> m (Maybe Window) Source #

Get the value of the “window” field. When overloading is enabled, this is equivalent to

get eventMotion #window

setEventMotionWindow :: MonadIO m => EventMotion -> Ptr Window -> m () Source #

Set the value of the “window” field. When overloading is enabled, this is equivalent to

set eventMotion [ #window := value ]

x

the x coordinate of the pointer relative to the window.

getEventMotionX :: MonadIO m => EventMotion -> m Double Source #

Get the value of the “x” field. When overloading is enabled, this is equivalent to

get eventMotion #x

setEventMotionX :: MonadIO m => EventMotion -> Double -> m () Source #

Set the value of the “x” field. When overloading is enabled, this is equivalent to

set eventMotion [ #x := value ]

xRoot

the x coordinate of the pointer relative to the root of the screen.

getEventMotionXRoot :: MonadIO m => EventMotion -> m Double Source #

Get the value of the “x_root” field. When overloading is enabled, this is equivalent to

get eventMotion #xRoot

setEventMotionXRoot :: MonadIO m => EventMotion -> Double -> m () Source #

Set the value of the “x_root” field. When overloading is enabled, this is equivalent to

set eventMotion [ #xRoot := value ]

y

the y coordinate of the pointer relative to the window.

getEventMotionY :: MonadIO m => EventMotion -> m Double Source #

Get the value of the “y” field. When overloading is enabled, this is equivalent to

get eventMotion #y

setEventMotionY :: MonadIO m => EventMotion -> Double -> m () Source #

Set the value of the “y” field. When overloading is enabled, this is equivalent to

set eventMotion [ #y := value ]

yRoot

the y coordinate of the pointer relative to the root of the screen.

getEventMotionYRoot :: MonadIO m => EventMotion -> m Double Source #

Get the value of the “y_root” field. When overloading is enabled, this is equivalent to

get eventMotion #yRoot

setEventMotionYRoot :: MonadIO m => EventMotion -> Double -> m () Source #

Set the value of the “y_root” field. When overloading is enabled, this is equivalent to

set eventMotion [ #yRoot := value ]