Class TreeModelFilter
- All Implemented Interfaces:
TreeDragSource,TreeModel,Proxy
GtkTreeModel which hides parts of an underlying tree model
A GtkTreeModelFilter is a tree model which wraps another tree model,
and can do the following things:
- Filter specific rows, based on data from a “visible column”, a column storing booleans indicating whether the row should be filtered or not, or based on the return value of a “visible function”, which gets a model, iter and user_data and returns a boolean indicating whether the row should be filtered or not.
- Modify the “appearance” of the model, using a modify function. This is extremely powerful and allows for just changing some values and also for creating a completely different model based on the given child model.
- Set a different root node, also known as a “virtual root”. You can pass
in a
GtkTreePathindicating the root node for the filter at construction time.
The basic API is similar to GtkTreeModelSort. For an example on its usage,
see the section on GtkTreeModelSort.
When using GtkTreeModelFilter, it is important to realize that
GtkTreeModelFilter maintains an internal cache of all nodes which are
visible in its clients. The cache is likely to be a subtree of the tree
exposed by the child model. GtkTreeModelFilter will not cache the entire
child model when unnecessary to not compromise the caching mechanism
that is exposed by the reference counting scheme. If the child model
implements reference counting, unnecessary signals may not be emitted
because of reference counting rule 3, see the GtkTreeModel
documentation. (Note that e.g. GtkTreeStore does not implement
reference counting and will always emit all signals, even when
the receiving node is not visible).
Because of this, limitations for possible visible functions do apply.
In general, visible functions should only use data or properties from
the node for which the visibility state must be determined, its siblings
or its parents. Usually, having a dependency on the state of any child
node is not possible, unless references are taken on these explicitly.
When no such reference exists, no signals may be received for these child
nodes (see reference counting rule number 3 in the GtkTreeModel section).
Determining the visibility state of a given node based on the state
of its child nodes is a frequently occurring use case. Therefore,
GtkTreeModelFilter explicitly supports this. For example, when a node
does not have any children, you might not want the node to be visible.
As soon as the first row is added to the node’s child level (or the
last row removed), the node’s visibility should be updated.
This introduces a dependency from the node on its child nodes. In order
to accommodate this, GtkTreeModelFilter must make sure the necessary
signals are received from the child model. This is achieved by building,
for all nodes which are exposed as visible nodes to GtkTreeModelFilter's
clients, the child level (if any) and take a reference on the first node
in this level. Furthermore, for every row-inserted, row-changed or
row-deleted signal (also these which were not handled because the node
was not cached), GtkTreeModelFilter will check if the visibility state
of any parent node has changed.
Beware, however, that this explicit support is limited to these two
cases. For example, if you want a node to be visible only if two nodes
in a child’s child level (2 levels deeper) are visible, you are on your
own. In this case, either rely on GtkTreeStore to emit all signals
because it does not implement reference counting, or for models that
do implement reference counting, obtain references on these child levels
yourself.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classTreeModelFilter.Builder<B extends TreeModelFilter.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.TreeModelIface -
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Creates a new TreeModelFilter.TreeModelFilter(MemorySegment address) Deprecated.Create a TreeModelFilter proxy instance for the provided memory address. -
Method Summary
Modifier and TypeMethodDescriptionprotected TreeModelFilterasParent()Deprecated.Returns this instance as if it were its parent type.static TreeModelFilter.Builder<? extends TreeModelFilter.Builder> builder()Deprecated.ATreeModelFilter.Builderobject constructs aTreeModelFilterwith the specified properties.voidDeprecated.booleanconvertChildIterToIter(TreeIter filterIter, TreeIter childIter) Deprecated.@Nullable TreePathconvertChildPathToPath(TreePath childPath) Deprecated.voidconvertIterToChildIter(TreeIter childIter, TreeIter filterIter) Deprecated.@Nullable TreePathconvertPathToChildPath(TreePath filterPath) Deprecated.static MemoryLayoutDeprecated.The memory layout of the native struct.getModel()Deprecated.static @Nullable TypegetType()Deprecated.Get the GType of the TreeModelFilter classprotected voidDeprecated.voidrefilter()Deprecated.voidsetModifyFunc(@Nullable Type @Nullable [] types, @Nullable TreeModelFilterModifyFunc func) Deprecated.voidsetVisibleColumn(int column) Deprecated.voidsetVisibleFunc(@Nullable TreeModelFilterVisibleFunc func) Deprecated.protected booleanDeprecated.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, unrefNode
-
Constructor Details
-
TreeModelFilter
Deprecated.Create a TreeModelFilter proxy instance for the provided memory address.- Parameters:
address- the memory address of the native object
-
TreeModelFilter
public TreeModelFilter()Deprecated.Creates a new TreeModelFilter.
-
-
Method Details
-
getType
Deprecated.Get the GType of the TreeModelFilter 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. -
clearCache
Deprecated.This function should almost never be called. It clears the this TreeModelFilter of any cached iterators that haven’t been reffed with gtk_tree_model_ref_node(). This might be useful if the child model being filtered 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.SetsfilterIterto point to the row in this TreeModelFilter that corresponds to the row pointed at bychildIter.IffilterIterwas not set,falseis returned.- Parameters:
filterIter- An uninitializedGtkTreeIterchildIter- A validGtkTreeIterpointing to a row on the child model.- Returns:
true, iffilterIterwas set, i.e. ifchildIteris a valid iterator pointing to a visible row in child model.
-
convertChildPathToPath
Deprecated.ConvertschildPathto a path relative tofilter.That is,childPathpoints to a path in the child model. The rerturned path will point to the same row in the filtered model. IfchildPathisn’t a valid path on the child model or points to a row which is not visible infilter,thennullis returned.- Parameters:
childPath- AGtkTreePathto convert.- Returns:
- A newly allocated
GtkTreePath
-
convertIterToChildIter
Deprecated.SetschildIterto point to the row pointed to byfilterIter.- Parameters:
childIter- An uninitializedGtkTreeIterfilterIter- A validGtkTreeIterpointing to a row onfilter.
-
convertPathToChildPath
Deprecated.ConvertsfilterPathto a path on the child model offilter.That is,filterPathpoints to a location infilter.The returned path will point to the same location in the model not being filtered. IffilterPathdoes not point to a location in the child model,nullis returned.- Parameters:
filterPath- AGtkTreePathto convert.- Returns:
- A newly allocated
GtkTreePath
-
getModel
Deprecated.Returns a pointer to the child model offilter.- Returns:
- A pointer to a
GtkTreeModel
-
refilter
Deprecated.Emits ::row_changed for each row in the child model, which causes the filter to re-evaluate whether a row is visible or not. -
setModifyFunc
@Deprecated public void setModifyFunc(@Nullable Type @Nullable [] types, @Nullable TreeModelFilterModifyFunc func) Deprecated.With thenColumnsandtypesparameters, you give an array of column types for this model (which will be exposed to the parent model/view). Thefunc,dataanddestroyparameters are for specifying the modify function. The modify function will get called for each data access, the goal of the modify function is to return the data which should be displayed at the location specified using the parameters of the modify function.Note that gtk_tree_model_filter_set_modify_func() can only be called once for a given filter model.
- Parameters:
types- TheGTypes of the columns.func- AGtkTreeModelFilterModifyFunc
-
setVisibleColumn
Deprecated.Setscolumnof the child_model to be the column where this TreeModelFilter should look for visibility information.columnsshould be a column of typeG_TYPE_BOOLEAN, wheretruemeans that a row is visible, andfalseif not.Note that gtk_tree_model_filter_set_visible_func() or gtk_tree_model_filter_set_visible_column() can only be called once for a given filter model.
- Parameters:
column- Aintwhich is the column containing the visible information
-
setVisibleFunc
Deprecated.Sets the visible function used when filtering the this TreeModelFilter to befunc.The function should returntrueif the given row should be visible andfalseotherwise.If the condition calculated by the function changes over time (e.g. because it depends on some global parameters), you must call gtk_tree_model_filter_refilter() to keep the visibility information of the model up-to-date.
Note that
funcis called whenever a row is inserted, when it may still be empty. The visible function should therefore take special care of empty rows, like in the example below.static gboolean visible_func (GtkTreeModel *model, GtkTreeIter *iter, gpointer data) { // Visible if row is non-empty and first column is “HI” char *str; gboolean visible = FALSE; gtk_tree_model_get (model, iter, 0, &str, -1); if (str && strcmp (str, "HI") == 0) visible = TRUE; g_free (str); return visible; }Note that gtk_tree_model_filter_set_visible_func() or gtk_tree_model_filter_set_visible_column() can only be called once for a given filter model.
- Parameters:
func- AGtkTreeModelFilterVisibleFunc, the visible function
-
modify
-
visible
-
builder
Deprecated.ATreeModelFilter.Builderobject constructs aTreeModelFilterwith the specified properties. Use the variousset...()methods to set properties, and finish construction withTreeModelFilter.Builder.build().- Returns:
- the builder object
-
FilterListModelinstead.