getModel
public TreeModel getModel()
Return the underlying data model.
getSortColumn
public DataColumn getSortColumn()
Get a DataColumn object representing the currently sorted column. This
is not the same DataColumn used to create the store. It is only of type
DataColumn (not DataColumnString, etc). It can be compared with another
DataColumn object using the
DataColumn.equals(DataColumn)
method.
- getSortColumn in interface TreeSortable
- A DataColumn object representing the currently sorted column or
null if there is no column currently sorted.
getSortOrder
public SortType getSortOrder()
Get the current sorting order of the store.
- getSortOrder in interface TreeSortable
- A SortType object defining the current sorting order of the
store or null if there is no current sort order.
getType
public static Type getType()
Retrieve the runtime type used by the GLib library.
gtk_tree_model_sort_clear_cache
protected static final void gtk_tree_model_sort_clear_cache(Handle treeModel)
gtk_tree_model_sort_convert_child_iter_to_iter
protected static final void gtk_tree_model_sort_convert_child_iter_to_iter(Handle treeModel,
Handle childIter,
Handle sortIter)
gtk_tree_model_sort_convert_child_path_to_path
protected static final Handle gtk_tree_model_sort_convert_child_path_to_path(Handle treeModel,
Handle childPath)
gtk_tree_model_sort_convert_iter_to_child_iter
protected static final void gtk_tree_model_sort_convert_iter_to_child_iter(Handle treeModel,
Handle childIter,
Handle sortedIter)
gtk_tree_model_sort_convert_path_to_child_path
protected static final Handle gtk_tree_model_sort_convert_path_to_child_path(Handle treeModel,
Handle sortedPath)
gtk_tree_model_sort_get_model
protected static final Handle gtk_tree_model_sort_get_model(Handle treeModel)
gtk_tree_model_sort_get_type
protected static final int gtk_tree_model_sort_get_type()
gtk_tree_model_sort_new_with_model
protected static final Handle gtk_tree_model_sort_new_with_model(Handle childModel)
handleCompareFunc
public int handleCompareFunc(Handle model,
Handle aIter,
Handle bIter,
int col)
Call-back method invoked by the JNI code when sorting is required. This
is for internal use only.
- handleCompareFunc in interface TreeSortable