TreeModelFilter
Deprecated since version 4.10: Use FilterListModel
instead.
Superclasses: Object
Implemented Interfaces: TreeDragSource
, TreeModel
- Constructors:
TreeModelFilter(**properties)
Methods
- class TreeModelFilter
- clear_cache() None
This function should almost never be called. It clears the
filter
of any cached iterators that haven’t been reffed withref_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.Deprecated since version 4.10: Please do not use it in newly written code
- convert_child_iter_to_iter(child_iter: TreeIter) tuple[bool, TreeIter]
Sets
filter_iter
to point to the row infilter
that corresponds to the row pointed at bychild_iter
. Iffilter_iter
was not set,False
is returned.Deprecated since version 4.10: Please do not use it in newly written code
- Parameters:
child_iter – A valid
GtkTreeIter
pointing to a row on the child model.
- convert_child_path_to_path(child_path: TreePath) TreePath | None
Converts
child_path
to a path relative tofilter
. That is,child_path
points to a path in the child model. The rerturned path will point to the same row in the filtered model. Ifchild_path
isn’t a valid path on the child model or points to a row which is not visible infilter
, thenNone
is returned.Deprecated since version 4.10: Please do not use it in newly written code
- Parameters:
child_path – A
GtkTreePath
to convert.
- convert_iter_to_child_iter(filter_iter: TreeIter) TreeIter
Sets
child_iter
to point to the row pointed to byfilter_iter
.Deprecated since version 4.10: Please do not use it in newly written code
- Parameters:
filter_iter – A valid
GtkTreeIter
pointing to a row onfilter
.
- convert_path_to_child_path(filter_path: TreePath) TreePath | None
Converts
filter_path
to a path on the child model offilter
. That is,filter_path
points to a location infilter
. The returned path will point to the same location in the model not being filtered. Iffilter_path
does not point to a location in the child model,None
is returned.Deprecated since version 4.10: Please do not use it in newly written code
- Parameters:
filter_path – A
GtkTreePath
to convert.
- get_model() TreeModel
Returns a pointer to the child model of
filter
.Deprecated since version 4.10: Please do not use it in newly written code
- refilter() None
Emits ::row_changed for each row in the child model, which causes the filter to re-evaluate whether a row is visible or not.
Deprecated since version 4.10: Please do not use it in newly written code
- set_modify_func(types: Sequence[type], func: Callable[[...], Any], *data: Any) None
With the
n_columns
andtypes
parameters, you give an array of column types for this model (which will be exposed to the parent model/view). Thefunc
,data
anddestroy
parameters 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
set_modify_func()
can only be called once for a given filter model.Deprecated since version 4.10: Please do not use it in newly written code
- Parameters:
types – The
GType
’s of the columns.func – A
GtkTreeModelFilterModifyFunc
data – User data to pass to the modify function
- set_value(iter, column, value)
- Parameters:
iter
column
value
- set_visible_column(column: int) None
Sets
column
of the child_model to be the column wherefilter
should look for visibility information.columns
should be a column of typebool
, whereTrue
means that a row is visible, andFalse
if not.Note that
set_visible_func()
orset_visible_column()
can only be called once for a given filter model.Deprecated since version 4.10: Please do not use it in newly written code
- Parameters:
column – A
int
which is the column containing the visible information
- set_visible_func(func, data=None)
Sets the visible function used when filtering the
filter
to befunc
. The function should returnTrue
if the given row should be visible andFalse
otherwise.If the condition calculated by the function changes over time (e.g. because it depends on some global parameters), you must call
refilter()
to keep the visibility information of the model up-to-date.Note that
func
is 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
set_visible_func()
orset_visible_column()
can only be called once for a given filter model.Deprecated since version 4.10: Please do not use it in newly written code
- Parameters:
func – A
GtkTreeModelFilterVisibleFunc
, the visible functiondata – User data to pass to the visible function