Method
Gtk.CustomFilter.set_filter_func
Declaration [src]
void
gtk_custom_filter_set_filter_func (
GtkCustomFilter* self,
GtkCustomFilterFunc match_func,
gpointer user_data,
GDestroyNotify user_destroy
)
Description [src]
Sets the function used for filtering items.
If match_func
is NULL
, the filter matches all items.
If the filter func changes its filtering behavior,
gtk_filter_changed()
needs to be called.
If a previous function was set, its user_destroy
will be
called now.