Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. flowBoxSetSortFunc :: (HasCallStack, MonadIO m, IsFlowBox a) => a -> Maybe FlowBoxSortFunc -> m ()

    gi-gtk4 GI.Gtk.Objects.FlowBox

    By setting a sort function on the box, one can dynamically reorder the children of the box, based on the contents of the children. The sortFunc will be called for each child after the call, and will continue to be called each time a child changes (via flowBoxChildChanged) and when flowBoxInvalidateSort is called. Note that using a sort function is incompatible with using a model (see flowBoxBindModel).

  2. listBoxInvalidateSort :: (HasCallStack, MonadIO m, IsListBox a) => a -> m ()

    gi-gtk4 GI.Gtk.Objects.ListBox

    Update the sorting for all rows. Call this when result of the sort function on the box is changed due to an external factor.

  3. listBoxSetSortFunc :: (HasCallStack, MonadIO m, IsListBox a) => a -> Maybe ListBoxSortFunc -> m ()

    gi-gtk4 GI.Gtk.Objects.ListBox

    Sets a sort function. By setting a sort function on the box one can dynamically reorder the rows of the list, based on the contents of the rows. The sortFunc will be called for each row after the call, and will continue to be called each time a row changes (via listBoxRowChanged) and when listBoxInvalidateSort is called. Note that using a sort function is incompatible with using a model (see listBoxBindModel).

  4. module GI.Gtk.Objects.MultiSorter

    GtkMultiSorter combines multiple sorters by trying them in turn. If the first sorter compares two items as equal, the second is tried next, and so on.

  5. class (GObject o, IsDescendantOf MultiSorter o) => IsMultiSorter o

    gi-gtk4 GI.Gtk.Objects.MultiSorter

    Type class for types which can be safely cast to MultiSorter, for instance with toMultiSorter.

  6. newtype MultiSorter

    gi-gtk4 GI.Gtk.Objects.MultiSorter

    Memory-managed wrapper type.

  7. MultiSorter :: ManagedPtr MultiSorter -> MultiSorter

    gi-gtk4 GI.Gtk.Objects.MultiSorter

    No documentation available.

  8. getMultiSorterItemType :: (MonadIO m, IsMultiSorter o) => o -> m GType

    gi-gtk4 GI.Gtk.Objects.MultiSorter

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

    get multiSorter #itemType
    

  9. getMultiSorterNItems :: (MonadIO m, IsMultiSorter o) => o -> m Word32

    gi-gtk4 GI.Gtk.Objects.MultiSorter

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

    get multiSorter #nItems
    

  10. multiSorterAppend :: (HasCallStack, MonadIO m, IsMultiSorter a, IsSorter b) => a -> b -> m ()

    gi-gtk4 GI.Gtk.Objects.MultiSorter

    Add sorter to self to use for sorting at the end. self will consult all existing sorters before it will sort with the given sorter.

Page 160 of many | Previous | Next