Virtual Method

GtkTreeModelrows_reordered

Declaration [src]

void
rows_reordered (
  GtkTreeModel* tree_model,
  GtkTreePath* path,
  GtkTreeIter* iter,
  gint* new_order
)

Description [src]

Emits the GtkTreeModel::rows-reordered signal on tree_model.

This should be called by models when their rows have been reordered.

Parameters

path

Type: GtkTreePath

A GtkTreePath-struct pointing to the tree node whose children have been reordered.

The data is owned by the caller of the method.
iter

Type: GtkTreeIter

A valid GtkTreeIter-struct pointing to the node whose children have been reordered, or NULL if the depth of path is 0

The data is owned by the caller of the method.
new_order

Type: gint*

An array of integers mapping the current position of each child to its old position before the re-ordering, i.e. new_order``[newpos] = oldpos

The data is owned by the caller of the method.