gtk.tree_model_filter
Module for [TreeModelFilter] class
Types 3
A [gtk.tree_model.TreeModel] which hides parts of an underlying tree model
A [gtk.tree_model_filter.TreeModelFilter] 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 [gtk.tree_path.TreePath] indicating the root node for the filter at construction time.
The basic API is similar to [gtk.tree_model_sort.TreeModelSort]. For an example on its usage, see the section on [gtk.tree_model_sort.TreeModelSort].
When using [gtk.tree_model_filter.TreeModelFilter], it is important to realize that [gtk.tree_model_filter.TreeModelFilter] 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. [gtk.tree_model_filter.TreeModelFilter] 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 [gtk.tree_model.TreeModel] documentation. (Note that e.g. [gtk.tree_store.TreeStore] 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 [gtk.tree_model.TreeModel] section).
Determining the visibility state of a given node based on the state of its child nodes is a frequently occurring use case. Therefore, [gtk.tree_model_filter.TreeModelFilter] 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, [gtk.tree_model_filter.TreeModelFilter] 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 [gtk.tree_model_filter.TreeModelFilter]'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), [gtk.tree_model_filter.TreeModelFilter] 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 [gtk.tree_store.TreeStore] 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.
Deprecated
TreeModelFilter self()Returns `this`, for use in `with` statements.TreeModelFilterGidBuilder builder()Get builder for [gtk.treemodelfilter.TreeModelFilter] Returns: New builder objectgtk.tree_model.TreeModel childModel() @propertygtk.tree_path.TreePath virtualRoot() @propertyvoid clearCache()This function should almost never be called. It clears the filter of any cached iterators that haven’t been reffed with [gtk.tree_model.TreeModel.refNode]. This might be useful if the child model...bool convertChildIterToIter(out gtk.tree_iter.TreeIter filterIter, gtk.tree_iter.TreeIter childIter)Sets filteriter to point to the row in filter that corresponds to the row pointed at by childiter. If filter_iter was not set, false is returned.gtk.tree_path.TreePath convertChildPathToPath(gtk.tree_path.TreePath childPath)Converts childpath to a path relative to filter. That is, childpath points to a path in the child model. The rerturned path will point to the same row in the filtered model. If child_path isn’t a...void convertIterToChildIter(out gtk.tree_iter.TreeIter childIter, gtk.tree_iter.TreeIter filterIter)Sets childiter to point to the row pointed to by filteriter.gtk.tree_path.TreePath convertPathToChildPath(gtk.tree_path.TreePath filterPath)Converts filterpath to a path on the child model of filter. That is, filterpath points to a location in filter. The returned path will point to the same location in the model not being filtered. If...gtk.tree_model.TreeModel getModel()Returns a pointer to the child model of filter. Returns: A pointer to a [gtk.tree_model.TreeModel]void refilter()Emits ::row_changed for each row in the child model, which causes the filter to re-evaluate whether a row is visible or not.void setModifyFunc(gobject.types.GType[] types, gtk.types.TreeModelFilterModifyFunc func)With the n_columns and types parameters, you give an array of column types for this model (which will be exposed to the parent model/view). The func, data and destroy parameters are for specifying ...void setVisibleColumn(int column)Sets column of the childmodel to be the column where filter should look for visibility information. columns should be a column of type `GTYPE_BOOLEAN`, where true means that a row is visible, and f...void setVisibleFunc(gtk.types.TreeModelFilterVisibleFunc func)Sets the visible function used when filtering the filter to be func. The function should return true if the given row should be visible and false otherwise.Fluent builder for [gtk.tree_model_filter.TreeModelFilter]