| Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
|---|---|
| License | LGPL-2.1 |
| Maintainer | Iñaki García Etxebarria |
| Safe Haskell | None |
| Language | Haskell2010 |
GI.Gtk.Objects.FlattenListModel
Description
FlattenListModel is a list model that takes a list model containing
list models and flattens it into a single model.
Another term for this is concatenation: FlattenListModel takes a
list of lists and concatenates them into a single list.
Synopsis
- newtype FlattenListModel = FlattenListModel (ManagedPtr FlattenListModel)
- class (GObject o, IsDescendantOf FlattenListModel o) => IsFlattenListModel o
- toFlattenListModel :: (MonadIO m, IsFlattenListModel o) => o -> m FlattenListModel
- noFlattenListModel :: Maybe FlattenListModel
- flattenListModelGetModel :: (HasCallStack, MonadIO m, IsFlattenListModel a) => a -> m (Maybe ListModel)
- flattenListModelNew :: (HasCallStack, MonadIO m, IsListModel a) => GType -> Maybe a -> m FlattenListModel
- flattenListModelSetModel :: (HasCallStack, MonadIO m, IsFlattenListModel a, IsListModel b) => a -> Maybe b -> m ()
- constructFlattenListModelItemType :: IsFlattenListModel o => GType -> IO (GValueConstruct o)
- getFlattenListModelItemType :: (MonadIO m, IsFlattenListModel o) => o -> m GType
- clearFlattenListModelModel :: (MonadIO m, IsFlattenListModel o) => o -> m ()
- constructFlattenListModelModel :: (IsFlattenListModel o, IsListModel a) => a -> IO (GValueConstruct o)
- getFlattenListModelModel :: (MonadIO m, IsFlattenListModel o) => o -> m (Maybe ListModel)
- setFlattenListModelModel :: (MonadIO m, IsFlattenListModel o, IsListModel a) => o -> a -> m ()
Exported types
newtype FlattenListModel Source #
Memory-managed wrapper type.
Constructors
| FlattenListModel (ManagedPtr FlattenListModel) |
Instances
| Eq FlattenListModel Source # | |
Defined in GI.Gtk.Objects.FlattenListModel Methods (==) :: FlattenListModel -> FlattenListModel -> Bool # (/=) :: FlattenListModel -> FlattenListModel -> Bool # | |
| IsGValue FlattenListModel Source # | Convert |
Defined in GI.Gtk.Objects.FlattenListModel | |
| GObject FlattenListModel Source # | |
Defined in GI.Gtk.Objects.FlattenListModel Methods gobjectType :: IO GType # | |
| HasParentTypes FlattenListModel Source # | |
Defined in GI.Gtk.Objects.FlattenListModel | |
| type ParentTypes FlattenListModel Source # | |
Defined in GI.Gtk.Objects.FlattenListModel | |
class (GObject o, IsDescendantOf FlattenListModel o) => IsFlattenListModel o Source #
Type class for types which can be safely cast to FlattenListModel, for instance with toFlattenListModel.
Instances
| (GObject o, IsDescendantOf FlattenListModel o) => IsFlattenListModel o Source # | |
Defined in GI.Gtk.Objects.FlattenListModel | |
toFlattenListModel :: (MonadIO m, IsFlattenListModel o) => o -> m FlattenListModel Source #
Cast to FlattenListModel, for types for which this is known to be safe. For general casts, use castTo.
noFlattenListModel :: Maybe FlattenListModel Source #
A convenience alias for Nothing :: Maybe FlattenListModel.
Methods
Overloaded methods
getModel
flattenListModelGetModel Source #
Arguments
| :: (HasCallStack, MonadIO m, IsFlattenListModel a) | |
| => a |
|
| -> m (Maybe ListModel) | Returns: The model flattened by |
Gets the model set via flattenListModelSetModel.
new
Arguments
| :: (HasCallStack, MonadIO m, IsListModel a) | |
| => GType |
|
| -> Maybe a |
|
| -> m FlattenListModel | Returns: a new |
Creates a new FlattenListModel that flattens list. The
models returned by model must conform to the given itemType,
either by having an identical type or a subtype.
setModel
flattenListModelSetModel Source #
Arguments
| :: (HasCallStack, MonadIO m, IsFlattenListModel a, IsListModel b) | |
| => a |
|
| -> Maybe b |
|
| -> m () |
Sets a new model to be flattened. The model must contain items of
GtkListModel that conform to the item type of self.
Properties
itemType
The GTpe for elements of this object
constructFlattenListModelItemType :: IsFlattenListModel o => GType -> IO (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “item-type” property. This is rarely needed directly, but it is used by new.
getFlattenListModelItemType :: (MonadIO m, IsFlattenListModel o) => o -> m GType Source #
Get the value of the “item-type” property.
When overloading is enabled, this is equivalent to
get flattenListModel #itemType
model
The model being flattened
clearFlattenListModelModel :: (MonadIO m, IsFlattenListModel o) => o -> m () Source #
Set the value of the “model” property to Nothing.
When overloading is enabled, this is equivalent to
clear #model
constructFlattenListModelModel :: (IsFlattenListModel o, IsListModel a) => a -> IO (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “model” property. This is rarely needed directly, but it is used by new.
getFlattenListModelModel :: (MonadIO m, IsFlattenListModel o) => o -> m (Maybe ListModel) Source #
Get the value of the “model” property.
When overloading is enabled, this is equivalent to
get flattenListModel #model
setFlattenListModelModel :: (MonadIO m, IsFlattenListModel o, IsListModel a) => o -> a -> m () Source #
Set the value of the “model” property.
When overloading is enabled, this is equivalent to
setflattenListModel [ #model:=value ]