gi-gtk-4.0.8: Gtk bindings
CopyrightWill Thompson and Iñaki García Etxebarria
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellSafe-Inferred
LanguageHaskell2010

GI.Gtk.Objects.NoSelection

Description

GtkNoSelection is a GtkSelectionModel that does not allow selecting anything.

This model is meant to be used as a simple wrapper around a GListModel when a GtkSelectionModel 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 GtkNoSelection

-> m (Maybe 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 GListModel to manage

-> m NoSelection

Returns: a new GtkNoSelection

Creates a new selection to handle model.

setModel

noSelectionSetModel Source #

Arguments

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

self: a GtkNoSelection

-> Maybe b

model: A GListModel to wrap

-> m () 

Sets the model that self should wrap.

If model is Nothing, this model will be empty.

Properties

itemType

The type of items. See listModelGetItemType.

Since: 4.8

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

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

get noSelection #itemType

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 (Maybe 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 ]

nItems

The number of items. See listModelGetNItems.

Since: 4.8

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

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

get noSelection #nItems