package ocgtk

  1. Overview
  2. Docs
OCaml bindings for GTK 4

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.1-preview2.tar.gz
sha256=4e50fdb5093136a10fc8ffbe388e44cbcb70d52f8afdd48863ec7e22580ff054

doc/ocgtk.gtk/Ocgtk_gtk/Gtk/Wrappers/Tree_sortable/index.html

Module Wrappers.Tree_sortable

type t = [ `tree_sortable ] Gobject.obj
val from_gobject : 'a Gobject.obj -> t
val sort_column_changed : t -> unit

Emits a `GtkTreeSortable::sort-column-changed` signal on @sortable.

val set_sort_column_id : t -> int -> Gtk_enums.sorttype -> unit

Sets the current sort column to be @sort_column_id. The @sortable will resort itself to reflect this change, after emitting a `GtkTreeSortable::sort-column-changed` signal. @sort_column_id may either be a regular column id, or one of the following special values:

  • %GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID: the default sort function will be used, if it is set
  • %GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID: no sorting will occur
val has_default_sort_func : t -> bool

Returns %TRUE if the model has a default sort function. This is used primarily by GtkTreeViewColumns in order to determine if a model can go back to the default state, or not.

val get_sort_column_id : t -> bool * int * Gtk_enums.sorttype

Fills in @sort_column_id and @order with the current sort column and the order. It returns %TRUE unless the @sort_column_id is %GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID or %GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID.

val on_sort_column_changed : ?after:bool -> t -> callback:(unit -> unit) -> Gobject.Signal.handler_id