Copyright | Will Thompson and Iñaki García Etxebarria |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
GtkSelectionModel
is an interface that add support for selection to list models.
This support is then used by widgets using list models to add the ability to select and unselect various items.
GTK provides default implementations of the most common selection modes such
as SingleSelection
, so you will only need to implement this
interface if you want detailed control about how selections should be handled.
A GtkSelectionModel
supports a single boolean per item indicating if an item is
selected or not. This can be queried via selectionModelIsSelected
.
When the selected state of one or more items changes, the model will emit the
SelectionModel::selectionChanged signal by calling the
selectionModelSelectionChanged
function. The positions given
in that signal may have their selection state changed, though that is not a
requirement. If new items added to the model via the
ListModel::itemsChanged signal are selected or not is up to the
implementation.
Note that items added via ListModel::itemsChanged may already be selected and no SelectionModel::selectionChanged will be emitted for them. So to track which items are selected, it is necessary to listen to both signals.
Additionally, the interface can expose functionality to select and unselect
items. If these functions are implemented, GTK's list widgets will allow users
to select and unselect items. However, GtkSelectionModel
s are free to only
implement them partially or not at all. In that case the widgets will not
support the unimplemented operations.
When selecting or unselecting is supported by a model, the return values of the selection functions do *not* indicate if selection or unselection happened. They are only meant to indicate complete failure, like when this mode of selecting is not supported by the model.
Selections may happen asynchronously, so the only reliable way to find out when an item was selected is to listen to the signals that indicate selection.
Synopsis
- newtype SelectionModel = SelectionModel (ManagedPtr SelectionModel)
- class (GObject o, IsDescendantOf SelectionModel o) => IsSelectionModel o
- toSelectionModel :: (MonadIO m, IsSelectionModel o) => o -> m SelectionModel
- selectionModelGetSelection :: (HasCallStack, MonadIO m, IsSelectionModel a) => a -> m Bitset
- selectionModelGetSelectionInRange :: (HasCallStack, MonadIO m, IsSelectionModel a) => a -> Word32 -> Word32 -> m Bitset
- selectionModelIsSelected :: (HasCallStack, MonadIO m, IsSelectionModel a) => a -> Word32 -> m Bool
- selectionModelSelectAll :: (HasCallStack, MonadIO m, IsSelectionModel a) => a -> m Bool
- selectionModelSelectItem :: (HasCallStack, MonadIO m, IsSelectionModel a) => a -> Word32 -> Bool -> m Bool
- selectionModelSelectRange :: (HasCallStack, MonadIO m, IsSelectionModel a) => a -> Word32 -> Word32 -> Bool -> m Bool
- selectionModelSelectionChanged :: (HasCallStack, MonadIO m, IsSelectionModel a) => a -> Word32 -> Word32 -> m ()
- selectionModelSetSelection :: (HasCallStack, MonadIO m, IsSelectionModel a) => a -> Bitset -> Bitset -> m Bool
- selectionModelUnselectAll :: (HasCallStack, MonadIO m, IsSelectionModel a) => a -> m Bool
- selectionModelUnselectItem :: (HasCallStack, MonadIO m, IsSelectionModel a) => a -> Word32 -> m Bool
- selectionModelUnselectRange :: (HasCallStack, MonadIO m, IsSelectionModel a) => a -> Word32 -> Word32 -> m Bool
- type SelectionModelSelectionChangedCallback = Word32 -> Word32 -> IO ()
- afterSelectionModelSelectionChanged :: (IsSelectionModel a, MonadIO m) => a -> ((?self :: a) => SelectionModelSelectionChangedCallback) -> m SignalHandlerId
- onSelectionModelSelectionChanged :: (IsSelectionModel a, MonadIO m) => a -> ((?self :: a) => SelectionModelSelectionChangedCallback) -> m SignalHandlerId
Exported types
newtype SelectionModel Source #
Memory-managed wrapper type.
SelectionModel (ManagedPtr SelectionModel) |
Instances
Eq SelectionModel Source # | |
Defined in GI.Gtk.Interfaces.SelectionModel (==) :: SelectionModel -> SelectionModel -> Bool # (/=) :: SelectionModel -> SelectionModel -> Bool # | |
GObject SelectionModel Source # | |
Defined in GI.Gtk.Interfaces.SelectionModel | |
ManagedPtrNewtype SelectionModel Source # | |
Defined in GI.Gtk.Interfaces.SelectionModel toManagedPtr :: SelectionModel -> ManagedPtr SelectionModel | |
TypedObject SelectionModel Source # | |
Defined in GI.Gtk.Interfaces.SelectionModel | |
HasParentTypes SelectionModel Source # | |
Defined in GI.Gtk.Interfaces.SelectionModel | |
IsGValue (Maybe SelectionModel) Source # | Convert |
Defined in GI.Gtk.Interfaces.SelectionModel gvalueGType_ :: IO GType gvalueSet_ :: Ptr GValue -> Maybe SelectionModel -> IO () gvalueGet_ :: Ptr GValue -> IO (Maybe SelectionModel) | |
type ParentTypes SelectionModel Source # | |
Defined in GI.Gtk.Interfaces.SelectionModel type ParentTypes SelectionModel = '[ListModel, Object] |
class (GObject o, IsDescendantOf SelectionModel o) => IsSelectionModel o Source #
Type class for types which can be safely cast to SelectionModel
, for instance with toSelectionModel
.
Instances
(GObject o, IsDescendantOf SelectionModel o) => IsSelectionModel o Source # | |
Defined in GI.Gtk.Interfaces.SelectionModel |
toSelectionModel :: (MonadIO m, IsSelectionModel o) => o -> m SelectionModel Source #
Cast to SelectionModel
, for types for which this is known to be safe. For general casts, use castTo
.
Methods
Click to display all available methods, including inherited ones
Methods
bindProperty, bindPropertyFull, forceFloating, freezeNotify, getv, isFloating, isSelected, itemsChanged, notify, notifyByPspec, ref, refSink, runDispose, selectAll, selectItem, selectRange, selectionChanged, stealData, stealQdata, thawNotify, unref, unselectAll, unselectItem, unselectRange, watchClosure.
Getters
getData, getItem, getItemType, getNItems, getProperty, getQdata, getSelection, getSelectionInRange.
Setters
getSelection
selectionModelGetSelection Source #
:: (HasCallStack, MonadIO m, IsSelectionModel a) | |
=> a |
|
-> m Bitset | Returns: a |
Gets the set containing all currently selected items in the model.
This function may be slow, so if you are only interested in single item,
consider using selectionModelIsSelected
or if you are only
interested in a few, consider selectionModelGetSelectionInRange
.
getSelectionInRange
selectionModelGetSelectionInRange Source #
:: (HasCallStack, MonadIO m, IsSelectionModel a) | |
=> a |
|
-> Word32 |
|
-> Word32 |
|
-> m Bitset | Returns: A |
Gets the set of selected items in a range.
This function is an optimization for
selectionModelGetSelection
when you are only
interested in part of the model's selected state. A common use
case is in response to the SelectionModel::selectionChanged
signal.
isSelected
selectionModelIsSelected Source #
:: (HasCallStack, MonadIO m, IsSelectionModel a) | |
=> a |
|
-> Word32 |
|
-> m Bool | Returns: |
Checks if the given item is selected.
selectAll
selectionModelSelectAll Source #
:: (HasCallStack, MonadIO m, IsSelectionModel a) | |
=> a |
|
-> m Bool | Returns: |
Requests to select all items in the model.
selectItem
selectionModelSelectItem Source #
:: (HasCallStack, MonadIO m, IsSelectionModel a) | |
=> a |
|
-> Word32 |
|
-> Bool |
|
-> m Bool | Returns: |
Requests to select an item in the model.
selectRange
selectionModelSelectRange Source #
:: (HasCallStack, MonadIO m, IsSelectionModel a) | |
=> a |
|
-> Word32 |
|
-> Word32 |
|
-> Bool |
|
-> m Bool | Returns: |
Requests to select a range of items in the model.
selectionChanged
selectionModelSelectionChanged Source #
:: (HasCallStack, MonadIO m, IsSelectionModel a) | |
=> a |
|
-> Word32 |
|
-> Word32 |
|
-> m () |
Helper function for implementations of GtkSelectionModel
.
Call this when the selection changes to emit the SelectionModel::selectionChanged signal.
setSelection
selectionModelSetSelection Source #
:: (HasCallStack, MonadIO m, IsSelectionModel a) | |
=> a |
|
-> Bitset |
|
-> Bitset |
|
-> m Bool | Returns: |
Make selection changes.
This is the most advanced selection updating method that allows the most fine-grained control over selection changes. If you can, you should try the simpler versions, as implementations are more likely to implement support for those.
Requests that the selection state of all positions set in mask
be updated to the respective value in the selected
bitmask.
In pseudocode, it would look something like this:
c code
for (i = 0; i < n_items; i++) { // don't change values not in the mask if (!gtk_bitset_contains (mask, i)) continue; if (gtk_bitset_contains (selected, i)) select_item (i); else unselect_item (i); } gtk_selection_model_selection_changed (model, first_changed_item, n_changed_items);
mask
and selected
must not be modified. They may refer to the
same bitset, which would mean that every item in the set should
be selected.
unselectAll
selectionModelUnselectAll Source #
:: (HasCallStack, MonadIO m, IsSelectionModel a) | |
=> a |
|
-> m Bool | Returns: |
Requests to unselect all items in the model.
unselectItem
selectionModelUnselectItem Source #
:: (HasCallStack, MonadIO m, IsSelectionModel a) | |
=> a |
|
-> Word32 |
|
-> m Bool | Returns: |
Requests to unselect an item in the model.
unselectRange
selectionModelUnselectRange Source #
:: (HasCallStack, MonadIO m, IsSelectionModel a) | |
=> a |
|
-> Word32 |
|
-> Word32 |
|
-> m Bool | Returns: |
Requests to unselect a range of items in the model.
Signals
selectionChanged
type SelectionModelSelectionChangedCallback Source #
= Word32 |
|
-> Word32 |
|
-> IO () |
Emitted when the selection state of some of the items in model
changes.
Note that this signal does not specify the new selection state of the items, they need to be queried manually. It is also not necessary for a model to change the selection state of any of the items in the selection model, though it would be rather useless to emit such a signal.
afterSelectionModelSelectionChanged :: (IsSelectionModel a, MonadIO m) => a -> ((?self :: a) => SelectionModelSelectionChangedCallback) -> m SignalHandlerId Source #
Connect a signal handler for the selectionChanged signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after
selectionModel #selectionChanged callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self
parameter.
Note that this requires activating the ImplicitParams
GHC extension.
onSelectionModelSelectionChanged :: (IsSelectionModel a, MonadIO m) => a -> ((?self :: a) => SelectionModelSelectionChangedCallback) -> m SignalHandlerId Source #
Connect a signal handler for the selectionChanged signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on
selectionModel #selectionChanged callback