Class TreeModelSort
- All Implemented Interfaces:
TreeDragSource,TreeModel,TreeSortable,Proxy
The GtkTreeModelSort is a model which implements the GtkTreeSortable
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
GtkTreeModelSort is not guaranteed to be stable.
The use of this is best demonstrated through an example. In the
following sample code we create two GtkTreeView widgets each with a
view of the same data. As the model is wrapped here by a
GtkTreeModelSort, the two GtkTreeViews 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 GtkTreeModelSort
{
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 GtkTreeSelection
GtkTreeSelection::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);
}
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classTreeModelSort.Builder<B extends TreeModelSort.Builder<B>>Deprecated.Inner class implementing a builder pattern to construct a GObject with properties.static classDeprecated.Nested classes/interfaces inherited from class org.gnome.gobject.GObject
GObject.NotifyCallback, GObject.ObjectClassNested classes/interfaces inherited from interface org.gnome.gtk.TreeDragSource
TreeDragSource.TreeDragSource$Impl, TreeDragSource.TreeDragSourceIfaceNested classes/interfaces inherited from interface org.gnome.gtk.TreeModel
TreeModel.RowChangedCallback, TreeModel.RowDeletedCallback, TreeModel.RowHasChildToggledCallback, TreeModel.RowInsertedCallback, TreeModel.RowsReorderedCallback, TreeModel.TreeModel$Impl, TreeModel.TreeModelIfaceNested classes/interfaces inherited from interface org.gnome.gtk.TreeSortable
TreeSortable.SortColumnChangedCallback, TreeSortable.TreeSortable$Impl, TreeSortable.TreeSortableIface -
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Creates a new TreeModelSort.TreeModelSort(MemorySegment address) Deprecated.Create a TreeModelSort proxy instance for the provided memory address. -
Method Summary
Modifier and TypeMethodDescriptionprotected TreeModelSortasParent()Deprecated.Returns this instance as if it were its parent type.static TreeModelSort.Builder<? extends TreeModelSort.Builder> builder()Deprecated.ATreeModelSort.Builderobject constructs aTreeModelSortwith the specified properties.voidDeprecated.booleanconvertChildIterToIter(TreeIter sortIter, TreeIter childIter) Deprecated.@Nullable TreePathconvertChildPathToPath(TreePath childPath) Deprecated.voidconvertIterToChildIter(TreeIter childIter, TreeIter sortedIter) Deprecated.@Nullable TreePathconvertPathToChildPath(TreePath sortedPath) Deprecated.static MemoryLayoutDeprecated.The memory layout of the native struct.getModel()Deprecated.Returns the model theGtkTreeModelSortis sorting.static @Nullable TypegetType()Deprecated.Get the GType of the TreeModelSort classbooleaniterIsValid(TreeIter iter) Deprecated.voidDeprecated.static TreeModelSortDeprecated.Creates a newGtkTreeModelSort, withchildModelas the child model.Methods inherited from class org.gnome.gobject.GObject
addToggleRef, addWeakPointer, bindProperty, bindProperty, bindProperty, bindPropertyFull, bindPropertyFull, bindPropertyWithClosures, bindPropertyWithClosures, compatControl, connect, connect, connect, constructed, disconnect, dispatchPropertiesChanged, dispose, dupData, dupQdata, emit, emitNotify, finalize_, forceFloating, freezeNotify, get, getData, getProperty, getProperty, getProperty, getQdata, getv, interfaceFindProperty, interfaceInstallProperty, interfaceListProperties, isFloating, newInstance, newInstance, newv, notify, notify, notifyByPspec, onNotify, ref, refSink, removeToggleRef, removeWeakPointer, replaceData, replaceQdata, runDispose, set, setData, setDataFull, setProperty, setProperty, setProperty, setQdata, setQdataFull, setv, stealData, stealQdata, takeRef, thawNotify, unref, watchClosure, weakRef, weakUnref, withPropertiesMethods inherited from class org.gnome.gobject.TypeInstance
callParent, callParent, cast, getPrivate, readGClass, writeGClassMethods inherited from class org.javagi.base.ProxyInstance
equals, handle, hashCodeMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.gnome.gtk.TreeDragSource
dragDataDelete, dragDataGet, rowDraggableMethods inherited from interface org.gnome.gtk.TreeModel
emitRowChanged, emitRowDeleted, emitRowHasChildToggled, emitRowInserted, emitRowsReordered, filterNew, foreach, get, getColumnType, getFlags, getIter, getIterFirst, getIterFromString, getNColumns, getPath, getStringFromIter, getValue, iterChildren, iterHasChild, iterNChildren, iterNext, iterNthChild, iterParent, iterPrevious, onRowChanged, onRowDeleted, onRowHasChildToggled, onRowInserted, onRowsReordered, refNode, rowChanged, rowDeleted, rowHasChildToggled, rowInserted, rowsReordered, unrefNodeMethods inherited from interface org.gnome.gtk.TreeSortable
emitSortColumnChanged, getSortColumnId, hasDefaultSortFunc, onSortColumnChanged, setDefaultSortFunc, setSortColumnId, setSortFunc, sortColumnChanged
-
Constructor Details
-
TreeModelSort
Deprecated.Create a TreeModelSort proxy instance for the provided memory address.- Parameters:
address- the memory address of the native object
-
TreeModelSort
public TreeModelSort()Deprecated.Creates a new TreeModelSort.
-
-
Method Details
-
getType
Deprecated.Get the GType of the TreeModelSort class- Returns:
- the GType
-
getMemoryLayout
Deprecated.The memory layout of the native struct.- Returns:
- the memory layout
-
asParent
Deprecated.Returns this instance as if it were its parent type. This is mostly synonymous to the Javasuperkeyword, but will set the native typeclass function pointers to the parent type. When overriding a native virtual method in Java, "chaining up" withsuper.methodName()doesn't work, because it invokes the overridden function pointer again. To chain up, callasParent().methodName(). This will call the native function pointer of this virtual method in the typeclass of the parent type. -
withModel
Deprecated.Creates a newGtkTreeModelSort, withchildModelas the child model.- Parameters:
childModel- AGtkTreeModel- Returns:
- A new
GtkTreeModelSort.
-
clearCache
Deprecated.This function should almost never be called. It clears the this TreeModelSort 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. -
convertChildIterToIter
Deprecated.SetssortIterto point to the row in this TreeModelSort that corresponds to the row pointed at bychildIter.IfsortIterwas not set,falseis returned. Note: a boolean is only returned since 2.14.- Parameters:
sortIter- An uninitializedGtkTreeIterchildIter- A validGtkTreeIterpointing to a row on the child model- Returns:
true, ifsortIterwas set, i.e. ifsortIteris a valid iterator pointer to a visible row in the child model.
-
convertChildPathToPath
Deprecated.ConvertschildPathto a path relative totreeModelSort.That is,childPathpoints to a path in the child model. The returned path will point to the same row in the sorted model. IfchildPathisn’t a valid path on the child model, thennullis returned.- Parameters:
childPath- AGtkTreePathto convert- Returns:
- A newly allocated
GtkTreePath
-
convertIterToChildIter
Deprecated.SetschildIterto point to the row pointed to bysortedIter.- Parameters:
childIter- An uninitializedGtkTreeItersortedIter- A validGtkTreeIterpointing to a row ontreeModelSort.
-
convertPathToChildPath
Deprecated.ConvertssortedPathto a path on the child model oftreeModelSort.That is,sortedPathpoints to a location intreeModelSort.The returned path will point to the same location in the model not being sorted. IfsortedPathdoes not point to a location in the child model,nullis returned.- Parameters:
sortedPath- AGtkTreePathto convert- Returns:
- A newly allocated
GtkTreePath
-
getModel
Deprecated.Returns the model theGtkTreeModelSortis sorting.- Returns:
- the "child model" being sorted
-
iterIsValid
Deprecated.This function is slow. Only use it for debugging and/or testing purposes.
Checks if the given iter is a valid iter for this
GtkTreeModelSort.- Parameters:
iter- AGtkTreeIter- Returns:
trueif the iter is valid,falseif the iter is invalid.
-
resetDefaultSortFunc
Deprecated.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 theGtkTreeModelSortis in “unsorted” state. -
builder
Deprecated.ATreeModelSort.Builderobject constructs aTreeModelSortwith the specified properties. Use the variousset...()methods to set properties, and finish construction withTreeModelSort.Builder.build().- Returns:
- the builder object
-
SortListModelinstead