Gtk.Tree_Model_Sort

Entities

Tagged Types

Access Types

Constants

Subprograms

Generic Instantiations

Description

The Gtk.Tree_Model_Sort.Gtk_Tree_Model_Sort is a model which implements the Gtk.Tree_Sortable.Gtk_Tree_Sortable interface. It does not hold any data itself, but rather is created with a child model and proxies its data. It has identical column types to this child model, and the changes in the child are propagated. The primary purpose of this model is to provide a way to sort a different model without modifying it. Note that the sort function used by Gtk.Tree_Model_Sort.Gtk_Tree_Model_Sort is not guaranteed to be stable.

The use of this is best demonstrated through an example. In the following sample code we create two Gtk.Tree_View.Gtk_Tree_View widgets each with a view of the same data. As the model is wrapped here by a Gtk.Tree_Model_Sort.Gtk_Tree_Model_Sort, the two Gtk_Tree_Views can each sort their view of the data without affecting the other. By contrast, if we simply put the same model in each widget, then sorting the first would sort the second.

## Using a Gtk.Tree_Model_Sort.Gtk_Tree_Model_Sort

{
  GtkTreeView *tree_view1;
  GtkTreeView *tree_view2;
  GtkTreeModel *sort_model1;
  GtkTreeModel *sort_model2;
  GtkTreeModel *child_model;

  // get the child model
  child_model = get_my_model ();

  // Create the first tree
  sort_model1 = gtk_tree_model_sort_new_with_model (child_model);
  tree_view1 = gtk_tree_view_new_with_model (sort_model1);

  // Create the second tree
  sort_model2 = gtk_tree_model_sort_new_with_model (child_model);
  tree_view2 = gtk_tree_view_new_with_model (sort_model2);

  // Now we can sort the two models independently
  gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (sort_model1),
                                        COLUMN_1, GTK_SORT_ASCENDING);
  gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (sort_model2),
                                        COLUMN_1, GTK_SORT_DESCENDING);
}

To demonstrate how to access the underlying child model from the sort model, the next example will be a callback for the Gtk.Tree_Selection.Gtk_Tree_Selection Gtk.Tree_Selection.Gtk_Tree_Selection::changed signal. In this callback, we get a string from COLUMN_1 of the model. We then modify the string, find the same selected row on the child model, and change the row there.

## Accessing the child model of in a selection changed callback

void
selection_changed (GtkTreeSelection *selection, gpointer data)
{
  GtkTreeModel *sort_model = NULL;
  GtkTreeModel *child_model;
  GtkTreeIter sort_iter;
  GtkTreeIter child_iter;
  char *some_data = NULL;
  char *modified_data;

  // Get the current selected row and the model.
  if (! gtk_tree_selection_get_selected (selection,
                                         &sort_model,
                                         &sort_iter))
    return;

  // Look up the current value on the selected row and get
  // a new value to change it to.
  gtk_tree_model_get (GTK_TREE_MODEL (sort_model), &sort_iter,
                      COLUMN_1, &some_data,
                      -1);

  modified_data = change_the_data (some_data);
  g_free (some_data);

  // Get an iterator on the child model, instead of the sort model.
  gtk_tree_model_sort_convert_iter_to_child_iter (GTK_TREE_MODEL_SORT (sort_model),
                                                  &child_iter,
                                                  &sort_iter);

  // Get the child model and change the value of the row. In this
  // example, the child model is a GtkListStore. It could be any other
  // type of model, though.
  child_model = gtk_tree_model_sort_get_model (GTK_TREE_MODEL_SORT (sort_model));
  gtk_list_store_set (GTK_LIST_STORE (child_model), &child_iter,
                      COLUMN_1, &modified_data,
                      -1);
  g_free (modified_data);
}

"+"

function "+"
  (Widget : access Gtk_Tree_Model_Sort_Record'Class)
return Gtk.Tree_Drag_Source.Gtk_Tree_Drag_Source
Parameters
Widget
Return Value

"+"

function "+"
  (Widget : access Gtk_Tree_Model_Sort_Record'Class)
return Gtk.Tree_Model.Gtk_Tree_Model
Parameters
Widget
Return Value

"+"

function "+"
  (Widget : access Gtk_Tree_Model_Sort_Record'Class)
return Gtk.Tree_Sortable.Gtk_Tree_Sortable
Parameters
Widget
Return Value

"-"

function "-"
  (Interf : Gtk.Tree_Drag_Source.Gtk_Tree_Drag_Source)
return Gtk_Tree_Model_Sort
Parameters
Interf
Return Value

"-"

function "-"
  (Interf : Gtk.Tree_Model.Gtk_Tree_Model)
return Gtk_Tree_Model_Sort
Parameters
Interf
Return Value

"-"

function "-"
  (Interf : Gtk.Tree_Sortable.Gtk_Tree_Sortable)
return Gtk_Tree_Model_Sort
Parameters
Interf
Return Value

Children

function Children
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Parent     : Gtk.Tree_Model.Gtk_Tree_Iter)
    return Gtk.Tree_Model.Gtk_Tree_Iter
Parameters
Tree_Model
Parent
Return Value

Clear_Cache

procedure Clear_Cache (Self : not null access Gtk_Tree_Model_Sort_Record)

This function should almost never be called. It clears the Tree_Model_Sort of any cached iterators that haven't been reffed with Gtk.Tree_Model.Ref_Node. This might be useful if the child model being sorted is static (and doesn't change often) and there has been a lot of unreffed access to nodes. As a side effect of this function, all unreffed iters will be invalid.

Parameters
Self

Convert_Child_Iter_To_Iter

function Convert_Child_Iter_To_Iter
   (Self       : not null access Gtk_Tree_Model_Sort_Record;
    Sort_Iter  : access Gtk.Tree_Model.Gtk_Tree_Iter;
    Child_Iter : Gtk.Tree_Model.Gtk_Tree_Iter) return Boolean

Sets Sort_Iter to point to the row in Tree_Model_Sort that corresponds to the row pointed at by Child_Iter. If Sort_Iter was not set, False is returned. Note: a boolean is only returned since 2.14.

Parameters
Self
Sort_Iter

An uninitialized Gtk.Tree_Model.Gtk_Tree_Iter.

Child_Iter

A valid Gtk.Tree_Model.Gtk_Tree_Iter pointing to a row on the child model

Return Value

True, if Sort_Iter was set, i.e. if Sort_Iter is a valid iterator pointer to a visible row in the child model.

Convert_Child_Path_To_Path

function Convert_Child_Path_To_Path
   (Self       : not null access Gtk_Tree_Model_Sort_Record;
    Child_Path : Gtk.Tree_Model.Gtk_Tree_Path)
    return Gtk.Tree_Model.Gtk_Tree_Path

Converts Child_Path to a path relative to Tree_Model_Sort. That is, Child_Path points to a path in the child model. The returned path will point to the same row in the sorted model. If Child_Path isn't a valid path on the child model, then null is returned.

Parameters
Self
Child_Path

A Gtk.Tree_Model.Gtk_Tree_Path to convert

Return Value

A newly allocated Gtk.Tree_Model.Gtk_Tree_Path, or null

Convert_Iter_To_Child_Iter

procedure Convert_Iter_To_Child_Iter
   (Self        : not null access Gtk_Tree_Model_Sort_Record;
    Child_Iter  : out Gtk.Tree_Model.Gtk_Tree_Iter;
    Sorted_Iter : Gtk.Tree_Model.Gtk_Tree_Iter)

Sets Child_Iter to point to the row pointed to by Sorted_Iter.

Parameters
Self
Child_Iter

An uninitialized Gtk.Tree_Model.Gtk_Tree_Iter

Sorted_Iter

A valid Gtk.Tree_Model.Gtk_Tree_Iter pointing to a row on Tree_Model_Sort.

Convert_Path_To_Child_Path

function Convert_Path_To_Child_Path
   (Self        : not null access Gtk_Tree_Model_Sort_Record;
    Sorted_Path : Gtk.Tree_Model.Gtk_Tree_Path)
    return Gtk.Tree_Model.Gtk_Tree_Path

Converts Sorted_Path to a path on the child model of Tree_Model_Sort. That is, Sorted_Path points to a location in Tree_Model_Sort. The returned path will point to the same location in the model not being sorted. If Sorted_Path does not point to a location in the child model, null is returned.

Parameters
Self
Sorted_Path

A Gtk.Tree_Model.Gtk_Tree_Path to convert

Return Value

A newly allocated Gtk.Tree_Model.Gtk_Tree_Path, or null

Drag_Data_Delete

function Drag_Data_Delete
   (Self : not null access Gtk_Tree_Model_Sort_Record;
    Path : Gtk.Tree_Model.Gtk_Tree_Path) return Boolean
Parameters
Self
Path
Return Value

Drag_Data_Get

function Drag_Data_Get
   (Self           : not null access Gtk_Tree_Model_Sort_Record;
    Path           : Gtk.Tree_Model.Gtk_Tree_Path;
    Selection_Data : Gtk.Selection_Data.Gtk_Selection_Data)
    return Boolean
Parameters
Self
Path
Selection_Data
Return Value

Foreach

procedure Foreach
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Func       : Gtk_Tree_Model_Foreach_Func)

Calls func on each node in model in a depth-first fashion. If Func returns True, then the tree ceases to be walked, and Gtk.Tree_Model.Foreach returns.

Parameters
Tree_Model
Func

a function to be called on each row

Get_Column_Type

function Get_Column_Type
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Index      : Glib.Gint) return GType
Parameters
Tree_Model
Index
Return Value

Get_Flags

function Get_Flags
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record)
    return Gtk.Tree_Model.Tree_Model_Flags
Parameters
Tree_Model
Return Value

Get_Iter

function Get_Iter
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path)
    return Gtk.Tree_Model.Gtk_Tree_Iter
Parameters
Tree_Model
Path
Return Value

Get_Iter_First

function Get_Iter_First
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record)
    return Gtk.Tree_Model.Gtk_Tree_Iter
Parameters
Tree_Model
Return Value

Get_Iter_From_String

function Get_Iter_From_String
   (Tree_Model  : not null access Gtk_Tree_Model_Sort_Record;
    Path_String : UTF8_String) return Gtk.Tree_Model.Gtk_Tree_Iter
Parameters
Tree_Model
Path_String
Return Value

Get_Model

function Get_Model
   (Self : not null access Gtk_Tree_Model_Sort_Record)
    return Gtk.Tree_Model.Gtk_Tree_Model

Returns the model the Gtk.Tree_Model_Sort.Gtk_Tree_Model_Sort is sorting.

Parameters
Self
Return Value

the "child model" being sorted

Get_N_Columns

function Get_N_Columns
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record)
    return Glib.Gint
Parameters
Tree_Model
Return Value

Get_Path

function Get_Path
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter)
    return Gtk.Tree_Model.Gtk_Tree_Path
Parameters
Tree_Model
Iter
Return Value

Get_Sort_Column_Id

procedure Get_Sort_Column_Id
   (Sortable       : not null access Gtk_Tree_Model_Sort_Record;
    Sort_Column_Id : out Glib.Gint;
    Order          : out Gtk.Enums.Gtk_Sort_Type)
Parameters
Sortable
Sort_Column_Id
Order

Get_String_From_Iter

function Get_String_From_Iter
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter) return UTF8_String
Parameters
Tree_Model
Iter
Return Value

Get_Type

function Get_Type return Glib.GType
Return Value

Get_Value

procedure Get_Value
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
    Column     : Glib.Gint;
    Value      : out Glib.Values.GValue)
Parameters
Tree_Model
Iter
Column
Value

Gtk_New_With_Model

procedure Gtk_New_With_Model
   (Self        : out Gtk_Tree_Model_Sort;
    Child_Model : Gtk.Tree_Model.Gtk_Tree_Model)

Creates a new Gtk.Tree_Model_Sort.Gtk_Tree_Model_Sort, with Child_Model as the child model. Initialize_With_Model does nothing if the object was already created with another call to Initialize* or G_New.

Parameters
Self
Child_Model

A Gtk.Tree_Model.Gtk_Tree_Model

Gtk_Tree_Iter_Compare_Func

type Gtk_Tree_Iter_Compare_Func is access function
  (Model : Gtk.Tree_Model.Gtk_Tree_Model;
   A     : Gtk.Tree_Model.Gtk_Tree_Iter;
   B     : Gtk.Tree_Model.Gtk_Tree_Iter) return Glib.Gint;

A GtkTreeIterCompareFunc should return a negative integer, zero, or a positive integer if A sorts before B, A sorts with B, or A sorts after B respectively. If two iters compare as equal, their order in the sorted model is undefined. In order to ensure that the Gtk.Tree_Sortable.Gtk_Tree_Sortable behaves as expected, the GtkTreeIterCompareFunc must define a partial order on the model, i.e. it must be reflexive, antisymmetric and transitive. For example, if Model is a product catalogue, then a compare function for the "price" column could be one which returns price_of(A) - price_of(B).

Parameters
Model

The Gtk.Tree_Model.Gtk_Tree_Model the comparison is within

A

A Gtk.Tree_Model.Gtk_Tree_Iter in Model

B

Another Gtk.Tree_Model.Gtk_Tree_Iter in Model

Return Value

a negative integer, zero or a positive integer depending on whether A sorts before, with or after B

Gtk_Tree_Model_Foreach_Func

type Gtk_Tree_Model_Foreach_Func is access function
  (Model : Gtk.Tree_Model.Gtk_Tree_Model;
   Path  : Gtk.Tree_Model.Gtk_Tree_Path;
   Iter  : Gtk.Tree_Model.Gtk_Tree_Iter) return Boolean;

Type of the callback passed to Gtk.Tree_Model.Foreach to iterate over the rows in a tree model.

Parameters
Model

the Gtk.Tree_Model.Gtk_Tree_Model being iterated

Path

the current Gtk.Tree_Model.Gtk_Tree_Path

Iter

the current Gtk.Tree_Model.Gtk_Tree_Iter

Return Value

True to stop iterating, False to continue

Gtk_Tree_Model_Sort

type Gtk_Tree_Model_Sort is access all Gtk_Tree_Model_Sort_Record'Class;

Gtk_Tree_Model_Sort_New_With_Model

function Gtk_Tree_Model_Sort_New_With_Model
   (Child_Model : Gtk.Tree_Model.Gtk_Tree_Model)
    return Gtk_Tree_Model_Sort

Creates a new Gtk.Tree_Model_Sort.Gtk_Tree_Model_Sort, with Child_Model as the child model.

Parameters
Child_Model

A Gtk.Tree_Model.Gtk_Tree_Model

Return Value

Gtk_Tree_Model_Sort_Record

type Gtk_Tree_Model_Sort_Record is new Gtk_Root_Tree_Model_Record with null record;

Has_Child

function Has_Child
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter) return Boolean
Parameters
Tree_Model
Iter
Return Value

Has_Default_Sort_Func

function Has_Default_Sort_Func
   (Sortable : not null access Gtk_Tree_Model_Sort_Record) return Boolean
Parameters
Sortable
Return Value

Implements_Gtk_Tree_Drag_Source

package Implements_Gtk_Tree_Drag_Source is new Glib.Types.Implements
  (Gtk.Tree_Drag_Source.Gtk_Tree_Drag_Source, Gtk_Tree_Model_Sort_Record, Gtk_Tree_Model_Sort);

Implements_Gtk_Tree_Model

package Implements_Gtk_Tree_Model is new Glib.Types.Implements
  (Gtk.Tree_Model.Gtk_Tree_Model, Gtk_Tree_Model_Sort_Record, Gtk_Tree_Model_Sort);

Implements_Gtk_Tree_Sortable

package Implements_Gtk_Tree_Sortable is new Glib.Types.Implements
  (Gtk.Tree_Sortable.Gtk_Tree_Sortable, Gtk_Tree_Model_Sort_Record, Gtk_Tree_Model_Sort);

Initialize_With_Model

procedure Initialize_With_Model
   (Self        : not null access Gtk_Tree_Model_Sort_Record'Class;
    Child_Model : Gtk.Tree_Model.Gtk_Tree_Model)

Creates a new Gtk.Tree_Model_Sort.Gtk_Tree_Model_Sort, with Child_Model as the child model. Initialize_With_Model does nothing if the object was already created with another call to Initialize* or G_New.

Parameters
Self
Child_Model

A Gtk.Tree_Model.Gtk_Tree_Model

Iter_Is_Valid

function Iter_Is_Valid
   (Self : not null access Gtk_Tree_Model_Sort_Record;
    Iter : Gtk.Tree_Model.Gtk_Tree_Iter) return Boolean

> This function is slow. Only use it for debugging and/or testing > purposes. Checks if the given iter is a valid iter for this Gtk.Tree_Model_Sort.Gtk_Tree_Model_Sort. Since: gtk+ 2.2

Parameters
Self
Iter

A Gtk.Tree_Model.Gtk_Tree_Iter.

Return Value

True if the iter is valid, False if the iter is invalid.

Model_Property

Model_Property : constant Glib.Properties.Property_Interface;

Type: Gtk.Tree_Model.Gtk_Tree_Model

N_Children

function N_Children
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter := Gtk.Tree_Model.Null_Iter)
    return Glib.Gint
Parameters
Tree_Model
Iter
Return Value

Next

procedure Next
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Iter       : in out Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Iter

Nth_Child

function Nth_Child
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Parent     : Gtk.Tree_Model.Gtk_Tree_Iter;
    N          : Glib.Gint) return Gtk.Tree_Model.Gtk_Tree_Iter
Parameters
Tree_Model
Parent
N
Return Value

Parent

function Parent
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Child      : Gtk.Tree_Model.Gtk_Tree_Iter)
    return Gtk.Tree_Model.Gtk_Tree_Iter
Parameters
Tree_Model
Child
Return Value

Previous

procedure Previous
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Iter       : in out Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Iter

Ref_Node

procedure Ref_Node
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Iter

Reset_Default_Sort_Func

procedure Reset_Default_Sort_Func
   (Self : not null access Gtk_Tree_Model_Sort_Record)

This resets the default sort function to be in the "unsorted" state. That is, it is in the same order as the child model. It will re-sort the model to be in the same order as the child model only if the Gtk.Tree_Model_Sort.Gtk_Tree_Model_Sort is in "unsorted" state.

Parameters
Self

Row_Changed

procedure Row_Changed
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Path
Iter

Row_Deleted

procedure Row_Deleted
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path)
Parameters
Tree_Model
Path

Row_Draggable

function Row_Draggable
   (Self : not null access Gtk_Tree_Model_Sort_Record;
    Path : Gtk.Tree_Model.Gtk_Tree_Path) return Boolean
Parameters
Self
Path
Return Value

Row_Has_Child_Toggled

procedure Row_Has_Child_Toggled
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Path
Iter

Row_Inserted

procedure Row_Inserted
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Path
Iter

Rows_Reordered

procedure Rows_Reordered
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
    New_Order  : Gint_Array)
Parameters
Tree_Model
Path
Iter
New_Order

Rows_Reordered_With_Length

procedure Rows_Reordered_With_Length
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
    New_Order  : Gint_Array;
    Length     : Glib.Gint)
Parameters
Tree_Model
Path
Iter
New_Order
Length

Set_Default_Sort_Func

procedure Set_Default_Sort_Func
   (Sortable  : not null access Gtk_Tree_Model_Sort_Record;
    Sort_Func : Gtk_Tree_Iter_Compare_Func)

Sets the default comparison function used when sorting to be Sort_Func. If the current sort column id of Sortable is GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID, then the model will sort using this function. If Sort_Func is null, then there will be no default comparison function. This means that once the model has been sorted, it can't go back to the default state. In this case, when the current sort column id of Sortable is GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID, the model will be unsorted.

Parameters
Sortable
Sort_Func

The comparison function

Set_Sort_Column_Id

procedure Set_Sort_Column_Id
   (Sortable       : not null access Gtk_Tree_Model_Sort_Record;
    Sort_Column_Id : Glib.Gint;
    Order          : Gtk.Enums.Gtk_Sort_Type)
Parameters
Sortable
Sort_Column_Id
Order

Set_Sort_Func

procedure Set_Sort_Func
   (Sortable       : not null access Gtk_Tree_Model_Sort_Record;
    Sort_Column_Id : Glib.Gint;
    Sort_Func      : Gtk_Tree_Iter_Compare_Func)

Sets the comparison function used when sorting to be Sort_Func. If the current sort column id of Sortable is the same as Sort_Column_Id, then the model will sort using this function.

Parameters
Sortable
Sort_Column_Id

the sort column id to set the function for

Sort_Func

The comparison function

Sort_Column_Changed

procedure Sort_Column_Changed
   (Sortable : not null access Gtk_Tree_Model_Sort_Record)
Parameters
Sortable

Unref_Node

procedure Unref_Node
   (Tree_Model : not null access Gtk_Tree_Model_Sort_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Iter