class Gtk::TreeModelFilter
- Gtk::TreeModelFilter
- GObject::Object
- Reference
- Object
Overview
A Gtk::TreeModel
which hides parts of an underlying tree model
A Gtk::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::TreePath
indicating the root node for the filter at construction time.
The basic API is similar to Gtk::TreeModelSort
. For an example on its usage,
see the section on Gtk::TreeModelSort
.
When using Gtk::TreeModelFilter
, it is important to realize that
Gtk::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::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::TreeModel
documentation. (Note that e.g. Gtk::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::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::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::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::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::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::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.
Included Modules
Defined in:
lib/gi-crystal/src/auto/gtk-4.0/tree_model_filter.crConstructors
-
.new
Initialize a new
TreeModelFilter
. - .new(*, child_model : Gtk::TreeModel | Nil = nil, virtual_root : Gtk::TreePath | Nil = nil)
Class Method Summary
-
.g_type : UInt64
Returns the type id (GType) registered in GLib type system.
Instance Method Summary
-
#==(other : self)
Returns
true
if this reference is the same as other. - #child_model : Gtk::TreeModel | Nil
- #child_model=(value : Gtk::TreeModel | Nil) : Gtk::TreeModel | Nil
-
#clear_cache : Nil
This function should almost never be called.
-
#convert_child_iter_to_iter(child_iter : Gtk::TreeIter) : Gtk::TreeIter
Sets filter_iter to point to the row in filter that corresponds to the row pointed at by child_iter.
-
#convert_child_path_to_path(child_path : Gtk::TreePath) : Gtk::TreePath | Nil
Converts child_path to a path relative to filter.
-
#convert_iter_to_child_iter(filter_iter : Gtk::TreeIter) : Gtk::TreeIter
Sets child_iter to point to the row pointed to by filter_iter.
-
#convert_path_to_child_path(filter_path : Gtk::TreePath) : Gtk::TreePath | Nil
Converts filter_path to a path on the child model of filter.
-
#hash(hasher)
See
Object#hash(hasher)
-
#model : Gtk::TreeModel
Returns a pointer to the child model of filter.
-
#refilter : Nil
Emits ::row_changed for each row in the child model, which causes the filter to re-evaluate whether a row is visible or not.
-
#set_modify_func(types : Enumerable(UInt64), func : Gtk::TreeModelFilterModifyFunc) : Nil
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).
- #virtual_root : Gtk::TreePath | Nil
- #virtual_root=(value : Gtk::TreePath | Nil) : Gtk::TreePath | Nil
-
#visible_column=(column : Int32) : Nil
Sets column of the child_model to be the column where filter should look for visibility information.
-
#visible_func=(func : Gtk::TreeModelFilterVisibleFunc) : Nil
Sets the visible function used when filtering the filter to be func.
Instance methods inherited from module Gtk::TreeModel
column_type(index_ : Int32) : UInt64
column_type,
filter_new(root : Gtk::TreePath | Nil) : Gtk::TreeModel
filter_new,
flags : Gtk::TreeModelFlags
flags,
foreach(func : Gtk::TreeModelForeachFunc, user_data : Pointer(Void) | Nil) : Nil
foreach,
iter(path : Gtk::TreePath) : Gtk::TreeIter
iter,
iter_children(parent : Gtk::TreeIter | Nil) : Gtk::TreeIter
iter_children,
iter_first : Gtk::TreeIter
iter_first,
iter_from_string(path_string : String) : Gtk::TreeIter
iter_from_string,
iter_has_child(iter : Gtk::TreeIter) : Bool
iter_has_child,
iter_n_children(iter : Gtk::TreeIter | Nil) : Int32
iter_n_children,
iter_next(iter : Gtk::TreeIter) : Bool
iter_next,
iter_nth_child(parent : Gtk::TreeIter | Nil, n : Int32) : Gtk::TreeIter
iter_nth_child,
iter_parent(child : Gtk::TreeIter) : Gtk::TreeIter
iter_parent,
iter_previous(iter : Gtk::TreeIter) : Bool
iter_previous,
n_columns : Int32
n_columns,
path(iter : Gtk::TreeIter) : Gtk::TreePath
path,
ref_node(iter : Gtk::TreeIter) : Nil
ref_node,
row_changed(path : Gtk::TreePath, iter : Gtk::TreeIter) : Nil
row_changed,
row_changed_signal
row_changed_signal,
row_deleted(path : Gtk::TreePath) : Nil
row_deleted,
row_deleted_signal
row_deleted_signal,
row_has_child_toggled(path : Gtk::TreePath, iter : Gtk::TreeIter) : Nil
row_has_child_toggled,
row_has_child_toggled_signal
row_has_child_toggled_signal,
row_inserted(path : Gtk::TreePath, iter : Gtk::TreeIter) : Nil
row_inserted,
row_inserted_signal
row_inserted_signal,
rows_reordered(path : Gtk::TreePath, iter : Gtk::TreeIter | Nil, new_order : Enumerable(Int32)) : Nil
rows_reordered,
string_from_iter(iter : Gtk::TreeIter) : String | Nil
string_from_iter,
to_unsafe
to_unsafe,
unref_node(iter : Gtk::TreeIter) : Nil
unref_node,
value(iter : Gtk::TreeIter, column : Int32) : GObject::Value
value
Constructor methods inherited from module Gtk::TreeModel
cast(obj : GObject::Object) : self
cast
Class methods inherited from module Gtk::TreeModel
cast?(obj : GObject::Object) : self | Nil
cast?,
g_type : UInt64
g_type
Instance methods inherited from module Gtk::TreeDragSource
drag_data_delete(path : Gtk::TreePath) : Bool
drag_data_delete,
drag_data_get(path : Gtk::TreePath) : Gdk::ContentProvider | Nil
drag_data_get,
row_draggable(path : Gtk::TreePath) : Bool
row_draggable,
to_unsafe
to_unsafe
Constructor methods inherited from module Gtk::TreeDragSource
cast(obj : GObject::Object) : self
cast
Class methods inherited from module Gtk::TreeDragSource
cast?(obj : GObject::Object) : self | Nil
cast?,
g_type : UInt64
g_type
Instance methods inherited from class GObject::Object
==(other : self)
==,
bind_property(source_property : String, target : GObject::Object, target_property : String, flags : GObject::BindingFlags) : GObject::Binding
bind_property,
bind_property_full(source_property : String, target : GObject::Object, target_property : String, flags : GObject::BindingFlags, transform_to : GObject::Closure, transform_from : GObject::Closure) : GObject::Binding
bind_property_full,
data(key : String) : Pointer(Void) | Nil
data,
finalize
finalize,
freeze_notify : Nil
freeze_notify,
getv(names : Enumerable(String), values : Enumerable(_)) : Nil
getv,
hash(hasher)
hash,
notify(property_name : String) : Nil
notify,
notify_by_pspec(pspec : GObject::ParamSpec) : Nil
notify_by_pspec,
notify_signal
notify_signal,
property(property_name : String, value : _) : Nil
property,
qdata(quark : UInt32) : Pointer(Void) | Nil
qdata,
ref_count : UInt32
ref_count,
run_dispose : Nil
run_dispose,
set_data(key : String, data : Pointer(Void) | Nil) : Nil
set_data,
set_property(property_name : String, value : _) : Nil
set_property,
steal_data(key : String) : Pointer(Void) | Nil
steal_data,
steal_qdata(quark : UInt32) : Pointer(Void) | Nil
steal_qdata,
thaw_notify : Nil
thaw_notify,
to_unsafe : Pointer(Void)
to_unsafe,
watch_closure(closure : GObject::Closure) : Nil
watch_closure
Constructor methods inherited from class GObject::Object
cast(obj : GObject::Object) : self
cast,
new(pointer : Pointer(Void), transfer : GICrystal::Transfer)new new, newv(object_type : UInt64, parameters : Enumerable(GObject::Parameter)) : self newv
Class methods inherited from class GObject::Object
cast?(obj : GObject::Object) : self | Nil
cast?,
compat_control(what : UInt64, data : Pointer(Void) | Nil) : UInt64
compat_control,
g_type : UInt64
g_type,
interface_find_property(g_iface : GObject::TypeInterface, property_name : String) : GObject::ParamSpec
interface_find_property,
interface_list_properties(g_iface : GObject::TypeInterface) : Enumerable(GObject::ParamSpec)
interface_list_properties
Macros inherited from class GObject::Object
previous_vfunc(*args)
previous_vfunc,
previous_vfunc!(*args)
previous_vfunc!,
signal(signature)
signal
Constructor Detail
Class Method Detail
Returns the type id (GType) registered in GLib type system.
Instance Method Detail
Returns true
if this reference is the same as other. Invokes same?
.
This function should almost never be called. It clears the filter 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.
Sets filter_iter to point to the row in filter that corresponds to the
row pointed at by child_iter. If filter_iter was not set, false
is
returned.
Converts child_path to a path relative to filter. 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. If child_path isn’t a valid path on the
child model or points to a row which is not visible in filter, then nil
is returned.
Sets child_iter to point to the row pointed to by filter_iter.
Converts filter_path to a path on the child model of filter. That is, filter_path points to a location in filter. The returned path will
point to the same location in the model not being filtered. If filter_path
does not point to a location in the child model, nil
is returned.
Emits ::row_changed for each row in the child model, which causes the filter to re-evaluate whether a row is visible or not.
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 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.
Sets column of the child_model to be the column where filter should
look for visibility information. columns should be a column of type
%G_TYPE_BOOLEAN, where true
means that a row is visible, and false
if 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.
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.
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 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 (Gtk::TreeModel *model, Gtk::TreeIter *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.