| Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte | 
|---|---|
| License | LGPL-2.1 | 
| Maintainer | Iñaki García Etxebarria | 
| Safe Haskell | Safe-Inferred | 
| Language | Haskell2010 | 
GI.Gtk.Interfaces.SelectionModel
Description
SelectionModel is an interface that extends the ListModel interface by
 adding support for selections. 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 SelectionModel 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
 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 itemsChanged signal are
 selected or not is up to the implementation.
Note that items added via itemsChanged may already be selected and no 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, GtkSelectionModels 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 C_SelectionModelSelectionChangedCallback = Ptr () -> Word32 -> Word32 -> Ptr () -> IO ()
- type SelectionModelSelectionChangedCallback = Word32 -> Word32 -> IO ()
- afterSelectionModelSelectionChanged :: (IsSelectionModel a, MonadIO m) => a -> SelectionModelSelectionChangedCallback -> m SignalHandlerId
- genClosure_SelectionModelSelectionChanged :: MonadIO m => SelectionModelSelectionChangedCallback -> m (GClosure C_SelectionModelSelectionChangedCallback)
- mk_SelectionModelSelectionChangedCallback :: C_SelectionModelSelectionChangedCallback -> IO (FunPtr C_SelectionModelSelectionChangedCallback)
- noSelectionModelSelectionChangedCallback :: Maybe SelectionModelSelectionChangedCallback
- onSelectionModelSelectionChanged :: (IsSelectionModel a, MonadIO m) => a -> SelectionModelSelectionChangedCallback -> m SignalHandlerId
- wrap_SelectionModelSelectionChangedCallback :: SelectionModelSelectionChangedCallback -> C_SelectionModelSelectionChangedCallback
Exported types
newtype SelectionModel Source #
Memory-managed wrapper type.
Constructors
| SelectionModel (ManagedPtr SelectionModel) | 
Instances
| Eq SelectionModel Source # | |
| Defined in GI.Gtk.Interfaces.SelectionModel Methods (==) :: SelectionModel -> SelectionModel -> Bool # (/=) :: SelectionModel -> SelectionModel -> Bool # | |
| GObject SelectionModel Source # | |
| Defined in GI.Gtk.Interfaces.SelectionModel | |
| ManagedPtrNewtype SelectionModel Source # | |
| Defined in GI.Gtk.Interfaces.SelectionModel Methods 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 Methods 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 | |
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 #
Arguments
| :: (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 #
Arguments
| :: (HasCallStack, MonadIO m, IsSelectionModel a) | |
| => a | 
 | 
| -> Word32 | 
 | 
| -> Word32 | 
 | 
| -> m Bitset | Returns: A  | 
Gets a set containing a set where the values in the range [position,
 position + n_items) match the selected state of the items in that range.
 All values outside that range are undefined.
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 selectionChanged signal.
isSelected
selectionModelIsSelected Source #
Arguments
| :: (HasCallStack, MonadIO m, IsSelectionModel a) | |
| => a | 
 | 
| -> Word32 | 
 | 
| -> m Bool | Returns:  | 
Checks if the given item is selected.
selectAll
selectionModelSelectAll Source #
Arguments
| :: (HasCallStack, MonadIO m, IsSelectionModel a) | |
| => a | 
 | 
| -> m Bool | Returns:  | 
Requests to select all items in the model.
selectItem
selectionModelSelectItem Source #
Arguments
| :: (HasCallStack, MonadIO m, IsSelectionModel a) | |
| => a | 
 | 
| -> Word32 | 
 | 
| -> Bool | 
 | 
| -> m Bool | Returns:  | 
Requests to select an item in the model.
selectRange
selectionModelSelectRange Source #
Arguments
| :: (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 #
Arguments
| :: (HasCallStack, MonadIO m, IsSelectionModel a) | |
| => a | 
 | 
| -> Word32 | 
 | 
| -> Word32 | 
 | 
| -> m () | 
Helper function for implementations of SelectionModel.
 Call this when a the selection changes to emit the
 selectionChanged signal.
setSelection
selectionModelSetSelection Source #
Arguments
| :: (HasCallStack, MonadIO m, IsSelectionModel a) | |
| => a | 
 | 
| -> Bitset | 
 | 
| -> Bitset | 
 | 
| -> m Bool | Returns:  | 
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 #
Arguments
| :: (HasCallStack, MonadIO m, IsSelectionModel a) | |
| => a | 
 | 
| -> m Bool | Returns:  | 
Requests to unselect all items in the model.
unselectItem
selectionModelUnselectItem Source #
Arguments
| :: (HasCallStack, MonadIO m, IsSelectionModel a) | |
| => a | 
 | 
| -> Word32 | 
 | 
| -> m Bool | Returns:  | 
Requests to unselect an item in the model.
unselectRange
selectionModelUnselectRange Source #
Arguments
| :: (HasCallStack, MonadIO m, IsSelectionModel a) | |
| => a | 
 | 
| -> Word32 | 
 | 
| -> Word32 | 
 | 
| -> m Bool | Returns:  | 
Requests to unselect a range of items in the model.
Signals
selectionChanged
type C_SelectionModelSelectionChangedCallback = Ptr () -> Word32 -> Word32 -> Ptr () -> IO () Source #
Type for the callback on the (unwrapped) C side.
type SelectionModelSelectionChangedCallback Source #
Arguments
| = 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 -> 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
genClosure_SelectionModelSelectionChanged :: MonadIO m => SelectionModelSelectionChangedCallback -> m (GClosure C_SelectionModelSelectionChangedCallback) Source #
Wrap the callback into a GClosure.
mk_SelectionModelSelectionChangedCallback :: C_SelectionModelSelectionChangedCallback -> IO (FunPtr C_SelectionModelSelectionChangedCallback) Source #
Generate a function pointer callable from C code, from a C_SelectionModelSelectionChangedCallback.
noSelectionModelSelectionChangedCallback :: Maybe SelectionModelSelectionChangedCallback Source #
A convenience synonym for Nothing :: Maybe SelectionModelSelectionChangedCallback
onSelectionModelSelectionChanged :: (IsSelectionModel a, MonadIO m) => 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