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

Description

GtkNoSelection is an implementation of the SelectionModel interface that does not allow selecting anything.

This model is meant to be used as a simple wrapper to GListModels when a SelectionModel is required.

Synopsis

Exported types

newtype NoSelection Source #

Memory-managed wrapper type.

Constructors

NoSelection (ManagedPtr NoSelection) 

Instances

Instances details
Eq NoSelection Source # 
Instance details

Defined in GI.Gtk.Objects.NoSelection

GObject NoSelection Source # 
Instance details

Defined in GI.Gtk.Objects.NoSelection

ManagedPtrNewtype NoSelection Source # 
Instance details

Defined in GI.Gtk.Objects.NoSelection

Methods

toManagedPtr :: NoSelection -> ManagedPtr NoSelection

TypedObject NoSelection Source # 
Instance details

Defined in GI.Gtk.Objects.NoSelection

Methods

glibType :: IO GType

HasParentTypes NoSelection Source # 
Instance details

Defined in GI.Gtk.Objects.NoSelection

IsGValue (Maybe NoSelection) Source #

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

Instance details

Defined in GI.Gtk.Objects.NoSelection

Methods

gvalueGType_ :: IO GType

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

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

type ParentTypes NoSelection Source # 
Instance details

Defined in GI.Gtk.Objects.NoSelection

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

class (GObject o, IsDescendantOf NoSelection o) => IsNoSelection o Source #

Type class for types which can be safely cast to NoSelection, for instance with toNoSelection.

Instances

Instances details
(GObject o, IsDescendantOf NoSelection o) => IsNoSelection o Source # 
Instance details

Defined in GI.Gtk.Objects.NoSelection

toNoSelection :: (MonadIO m, IsNoSelection o) => o -> m NoSelection Source #

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

Methods

getModel

noSelectionGetModel Source #

Arguments

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

self: a NoSelection

-> m ListModel

Returns: The model being wrapped

Gets the model that self is wrapping.

new

noSelectionNew Source #

Arguments

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

model: the ListModel to manage, or Nothing

-> m NoSelection

Returns: a new NoSelection

Creates a new selection to handle model.

setModel

noSelectionSetModel Source #

Arguments

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

self: a NoSelection

-> Maybe b

model: A ListModel to wrap

-> m () 

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

Properties

model

The model being managed

clearNoSelectionModel :: (MonadIO m, IsNoSelection o) => o -> m () Source #

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

clear #model

constructNoSelectionModel :: (IsNoSelection 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.

getNoSelectionModel :: (MonadIO m, IsNoSelection o) => o -> m ListModel Source #

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

get noSelection #model

setNoSelectionModel :: (MonadIO m, IsNoSelection o, IsListModel a) => o -> a -> m () Source #

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

set noSelection [ #model := value ]