Copyright | Will Thompson and Iñaki García Etxebarria |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria |
Safe Haskell | None |
Language | Haskell2010 |
GtkGesturePan
is a GtkGesture
for pan gestures.
These are drags that are locked to happen along one axis. The axis
that a GtkGesturePan
handles is defined at construct time, and
can be changed through gesturePanSetOrientation
.
When the gesture starts to be recognized, GtkGesturePan
will
attempt to determine as early as possible whether the sequence
is moving in the expected direction, and denying the sequence if
this does not happen.
Once a panning gesture along the expected axis is recognized, the GesturePan::pan signal will be emitted as input events are received, containing the offset in the given axis.
Synopsis
- newtype GesturePan = GesturePan (ManagedPtr GesturePan)
- class (GObject o, IsDescendantOf GesturePan o) => IsGesturePan o
- toGesturePan :: (MonadIO m, IsGesturePan o) => o -> m GesturePan
- gesturePanGetOrientation :: (HasCallStack, MonadIO m, IsGesturePan a) => a -> m Orientation
- gesturePanNew :: (HasCallStack, MonadIO m) => Orientation -> m GesturePan
- gesturePanSetOrientation :: (HasCallStack, MonadIO m, IsGesturePan a) => a -> Orientation -> m ()
- constructGesturePanOrientation :: (IsGesturePan o, MonadIO m) => Orientation -> m (GValueConstruct o)
- getGesturePanOrientation :: (MonadIO m, IsGesturePan o) => o -> m Orientation
- setGesturePanOrientation :: (MonadIO m, IsGesturePan o) => o -> Orientation -> m ()
- type GesturePanPanCallback = PanDirection -> Double -> IO ()
- afterGesturePanPan :: (IsGesturePan a, MonadIO m) => a -> ((?self :: a) => GesturePanPanCallback) -> m SignalHandlerId
- onGesturePanPan :: (IsGesturePan a, MonadIO m) => a -> ((?self :: a) => GesturePanPanCallback) -> m SignalHandlerId
Exported types
newtype GesturePan Source #
Memory-managed wrapper type.
Instances
Eq GesturePan Source # | |
Defined in GI.Gtk.Objects.GesturePan (==) :: GesturePan -> GesturePan -> Bool # (/=) :: GesturePan -> GesturePan -> Bool # | |
GObject GesturePan Source # | |
Defined in GI.Gtk.Objects.GesturePan | |
ManagedPtrNewtype GesturePan Source # | |
Defined in GI.Gtk.Objects.GesturePan | |
TypedObject GesturePan Source # | |
Defined in GI.Gtk.Objects.GesturePan | |
HasParentTypes GesturePan Source # | |
Defined in GI.Gtk.Objects.GesturePan | |
IsGValue (Maybe GesturePan) Source # | Convert |
Defined in GI.Gtk.Objects.GesturePan gvalueGType_ :: IO GType # gvalueSet_ :: Ptr GValue -> Maybe GesturePan -> IO () # gvalueGet_ :: Ptr GValue -> IO (Maybe GesturePan) # | |
type ParentTypes GesturePan Source # | |
Defined in GI.Gtk.Objects.GesturePan |
class (GObject o, IsDescendantOf GesturePan o) => IsGesturePan o Source #
Type class for types which can be safely cast to GesturePan
, for instance with toGesturePan
.
Instances
(GObject o, IsDescendantOf GesturePan o) => IsGesturePan o Source # | |
Defined in GI.Gtk.Objects.GesturePan |
toGesturePan :: (MonadIO m, IsGesturePan o) => o -> m GesturePan Source #
Cast to GesturePan
, for types for which this is known to be safe. For general casts, use castTo
.
Methods
Click to display all available methods, including inherited ones
Methods
bindProperty, bindPropertyFull, forceFloating, freezeNotify, getv, group, handlesSequence, isActive, isFloating, isGroupedWith, isRecognized, notify, notifyByPspec, ref, refSink, reset, runDispose, stealData, stealQdata, thawNotify, ungroup, unref, watchClosure.
Getters
getBoundingBox, getBoundingBoxCenter, getButton, getCurrentButton, getCurrentEvent, getCurrentEventDevice, getCurrentEventState, getCurrentEventTime, getCurrentSequence, getData, getDevice, getExclusive, getGroup, getLastEvent, getLastUpdatedSequence, getName, getOffset, getOrientation, getPoint, getPropagationLimit, getPropagationPhase, getProperty, getQdata, getSequenceState, getSequences, getStartPoint, getTouchOnly, getWidget.
Setters
setButton, setData, setDataFull, setExclusive, setName, setOrientation, setPropagationLimit, setPropagationPhase, setProperty, setSequenceState, setState, setStaticName, setTouchOnly.
getOrientation
gesturePanGetOrientation Source #
:: (HasCallStack, MonadIO m, IsGesturePan a) | |
=> a |
|
-> m Orientation | Returns: the expected orientation for pan gestures |
Returns the orientation of the pan gestures that this gesture
expects.
new
:: (HasCallStack, MonadIO m) | |
=> Orientation |
|
-> m GesturePan | Returns: a newly created |
Returns a newly created GtkGesture
that recognizes pan gestures.
setOrientation
gesturePanSetOrientation Source #
:: (HasCallStack, MonadIO m, IsGesturePan a) | |
=> a |
|
-> Orientation |
|
-> m () |
Sets the orientation to be expected on pan gestures.
Properties
orientation
The expected orientation of pan gestures.
constructGesturePanOrientation :: (IsGesturePan o, MonadIO m) => Orientation -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “orientation
” property. This is rarely needed directly, but it is used by new
.
getGesturePanOrientation :: (MonadIO m, IsGesturePan o) => o -> m Orientation Source #
Get the value of the “orientation
” property.
When overloading is enabled, this is equivalent to
get
gesturePan #orientation
setGesturePanOrientation :: (MonadIO m, IsGesturePan o) => o -> Orientation -> m () Source #
Set the value of the “orientation
” property.
When overloading is enabled, this is equivalent to
set
gesturePan [ #orientation:=
value ]
Signals
pan
type GesturePanPanCallback Source #
= PanDirection |
|
-> Double |
|
-> IO () |
Emitted once a panning gesture along the expected axis is detected.
afterGesturePanPan :: (IsGesturePan a, MonadIO m) => a -> ((?self :: a) => GesturePanPanCallback) -> m SignalHandlerId Source #
Connect a signal handler for the pan signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after
gesturePan #pan callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self
parameter.
Note that this requires activating the ImplicitParams
GHC extension.
onGesturePanPan :: (IsGesturePan a, MonadIO m) => a -> ((?self :: a) => GesturePanPanCallback) -> m SignalHandlerId Source #
Connect a signal handler for the pan signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on
gesturePan #pan callback