gi-handy-0.0.7: libhandy bindings
CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellNone
LanguageHaskell2010

GI.Handy.Objects.SwipeGroup

Description

No description available in the introspection data.

Synopsis

Exported types

newtype SwipeGroup Source #

Memory-managed wrapper type.

Constructors

SwipeGroup (ManagedPtr SwipeGroup) 

Instances

Instances details
Eq SwipeGroup Source # 
Instance details

Defined in GI.Handy.Objects.SwipeGroup

Methods

(==) :: SwipeGroup -> SwipeGroup -> Bool

(/=) :: SwipeGroup -> SwipeGroup -> Bool

GObject SwipeGroup Source # 
Instance details

Defined in GI.Handy.Objects.SwipeGroup

ManagedPtrNewtype SwipeGroup Source # 
Instance details

Defined in GI.Handy.Objects.SwipeGroup

Methods

toManagedPtr :: SwipeGroup -> ManagedPtr SwipeGroup

TypedObject SwipeGroup Source # 
Instance details

Defined in GI.Handy.Objects.SwipeGroup

Methods

glibType :: IO GType

IsGValue SwipeGroup Source #

Convert SwipeGroup to and from GValue with toGValue and fromGValue.

Instance details

Defined in GI.Handy.Objects.SwipeGroup

Methods

toGValue :: SwipeGroup -> IO GValue

fromGValue :: GValue -> IO SwipeGroup

HasParentTypes SwipeGroup Source # 
Instance details

Defined in GI.Handy.Objects.SwipeGroup

type ParentTypes SwipeGroup Source # 
Instance details

Defined in GI.Handy.Objects.SwipeGroup

type ParentTypes SwipeGroup = '[Object, Buildable]

class (GObject o, IsDescendantOf SwipeGroup o) => IsSwipeGroup o Source #

Type class for types which can be safely cast to SwipeGroup, for instance with toSwipeGroup.

Instances

Instances details
(GObject o, IsDescendantOf SwipeGroup o) => IsSwipeGroup o Source # 
Instance details

Defined in GI.Handy.Objects.SwipeGroup

toSwipeGroup :: (MonadIO m, IsSwipeGroup o) => o -> m SwipeGroup Source #

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

Methods

Overloaded methods

addSwipeable

swipeGroupAddSwipeable Source #

Arguments

:: (HasCallStack, MonadIO m, IsSwipeGroup a, IsSwipeable b) 
=> a

self: a SwipeGroup

-> b

swipeable: the Swipeable to add

-> m () 

When the widget is destroyed or no longer referenced elsewhere, it will be removed from the swipe group.

Since: 0.0.12

getSwipeables

swipeGroupGetSwipeables Source #

Arguments

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

self: a SwipeGroup

-> m [Swipeable]

Returns: a SList of swipeables. The list is owned by libhandy and should not be modified.

Returns the list of swipeables associated with self.

Since: 0.0.12

new

swipeGroupNew Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> m SwipeGroup

Returns: The newly created SwipeGroup object

Create a new SwipeGroup object.

Since: 0.0.12

removeSwipeable

swipeGroupRemoveSwipeable Source #

Arguments

:: (HasCallStack, MonadIO m, IsSwipeGroup a, IsSwipeable b) 
=> a

self: a SwipeGroup

-> b

swipeable: the Swipeable to remove

-> m () 

Removes a widget from a SwipeGroup.

Since: 0.0.12