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.MultiSelection

Description

GtkMultiSelection is an implementation of the SelectionModel interface that allows selecting multiple elements.

Synopsis

Exported types

newtype MultiSelection Source #

Memory-managed wrapper type.

Constructors

MultiSelection (ManagedPtr MultiSelection) 

Instances

Instances details
Eq MultiSelection Source # 
Instance details

Defined in GI.Gtk.Objects.MultiSelection

GObject MultiSelection Source # 
Instance details

Defined in GI.Gtk.Objects.MultiSelection

ManagedPtrNewtype MultiSelection Source # 
Instance details

Defined in GI.Gtk.Objects.MultiSelection

TypedObject MultiSelection Source # 
Instance details

Defined in GI.Gtk.Objects.MultiSelection

Methods

glibType :: IO GType

HasParentTypes MultiSelection Source # 
Instance details

Defined in GI.Gtk.Objects.MultiSelection

IsGValue (Maybe MultiSelection) Source #

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

Instance details

Defined in GI.Gtk.Objects.MultiSelection

Methods

gvalueGType_ :: IO GType

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

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

type ParentTypes MultiSelection Source # 
Instance details

Defined in GI.Gtk.Objects.MultiSelection

type ParentTypes MultiSelection = '[Object, ListModel, SelectionModel]

class (GObject o, IsDescendantOf MultiSelection o) => IsMultiSelection o Source #

Type class for types which can be safely cast to MultiSelection, for instance with toMultiSelection.

Instances

Instances details
(GObject o, IsDescendantOf MultiSelection o) => IsMultiSelection o Source # 
Instance details

Defined in GI.Gtk.Objects.MultiSelection

toMultiSelection :: (MonadIO m, IsMultiSelection o) => o -> m MultiSelection Source #

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

Methods

getModel

multiSelectionGetModel Source #

Arguments

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

self: a MultiSelection

-> m ListModel

Returns: the underlying model

Returns the underlying model of self.

new

multiSelectionNew Source #

Arguments

:: (HasCallStack, MonadIO m, IsListModel a) 
=> Maybe a

model: the ListModel to manage, or Nothing

-> m MultiSelection

Returns: a new MultiSelection

Creates a new selection to handle model.

setModel

multiSelectionSetModel Source #

Arguments

:: (HasCallStack, MonadIO m, IsMultiSelection a, IsListModel b) 
=> a

self: a MultiSelection

-> Maybe b

model: A ListModel to wrap

-> m () 

Sets the model that self should wrap. If model is Nothing, self will be empty.

Properties

model

The list managed by this selection

clearMultiSelectionModel :: (MonadIO m, IsMultiSelection o) => o -> m () Source #

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

clear #model

constructMultiSelectionModel :: (IsMultiSelection o, MonadIO m, IsListModel a) => a -> m (GValueConstruct o) Source #

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

getMultiSelectionModel :: (MonadIO m, IsMultiSelection o) => o -> m ListModel Source #

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

get multiSelection #model

setMultiSelectionModel :: (MonadIO m, IsMultiSelection o, IsListModel a) => o -> a -> m () Source #

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

set multiSelection [ #model := value ]