filterlistmodel: Rewrite to use GtkFilter

This commit is contained in:
Benjamin Otte
2019-11-10 02:39:31 +01:00
committed by Matthias Clasen
parent b1090ac8e2
commit 4abdf695e3
6 changed files with 431 additions and 204 deletions

View File

@@ -169,6 +169,7 @@ constraint_view_init (ConstraintView *self)
GListModel *guides; GListModel *guides;
GListModel *children; GListModel *children;
GListModel *constraints; GListModel *constraints;
GtkFilter *filter;
manager = gtk_constraint_layout_new (); manager = gtk_constraint_layout_new ();
gtk_widget_set_layout_manager (GTK_WIDGET (self), manager); gtk_widget_set_layout_manager (GTK_WIDGET (self), manager);
@@ -176,8 +177,12 @@ constraint_view_init (ConstraintView *self)
all_children = gtk_widget_observe_children (GTK_WIDGET (self)); all_children = gtk_widget_observe_children (GTK_WIDGET (self));
all_constraints = gtk_constraint_layout_observe_constraints (GTK_CONSTRAINT_LAYOUT (manager)); all_constraints = gtk_constraint_layout_observe_constraints (GTK_CONSTRAINT_LAYOUT (manager));
guides = gtk_constraint_layout_observe_guides (GTK_CONSTRAINT_LAYOUT (manager)); guides = gtk_constraint_layout_observe_guides (GTK_CONSTRAINT_LAYOUT (manager));
constraints = (GListModel *)gtk_filter_list_model_new (all_constraints, omit_internal, NULL, NULL); filter = gtk_custom_filter_new (omit_internal, NULL, NULL);
children = (GListModel *)gtk_filter_list_model_new (all_children, omit_internal, NULL, NULL); constraints = (GListModel *)gtk_filter_list_model_new (all_constraints, filter);
g_object_unref (filter);
filter = gtk_custom_filter_new (omit_internal, NULL, NULL);
children = (GListModel *)gtk_filter_list_model_new (all_children, filter);
g_object_unref (filter);
list = g_list_store_new (G_TYPE_LIST_MODEL); list = g_list_store_new (G_TYPE_LIST_MODEL);
g_list_store_append (list, children); g_list_store_append (list, children);

View File

@@ -1232,9 +1232,8 @@ gtk_filter_list_model_new
gtk_filter_list_model_new_for_type gtk_filter_list_model_new_for_type
gtk_filter_list_model_set_model gtk_filter_list_model_set_model
gtk_filter_list_model_get_model gtk_filter_list_model_get_model
gtk_filter_list_model_set_filter_func gtk_filter_list_model_set_filter
gtk_filter_list_model_has_filter gtk_filter_list_model_get_filter
gtk_filter_list_model_refilter
<SUBSECTION Standard> <SUBSECTION Standard>
GTK_FILTER_LIST_MODEL GTK_FILTER_LIST_MODEL
GTK_IS_FILTER_LIST_MODEL GTK_IS_FILTER_LIST_MODEL

View File

@@ -29,17 +29,17 @@
* SECTION:gtkfilterlistmodel * SECTION:gtkfilterlistmodel
* @title: GtkFilterListModel * @title: GtkFilterListModel
* @short_description: A list model that filters its items * @short_description: A list model that filters its items
* @see_also: #GListModel * @see_also: #GListModel, #GtkFilter
* *
* #GtkFilterListModel is a list model that filters a given other * #GtkFilterListModel is a list model that filters a given other
* listmodel. * listmodel.
* It hides some elements from the other model according to * It hides some elements from the other model according to
* criteria given by a #GtkFilterListModelFilterFunc. * criteria given by a #GtkFilter.
*/ */
enum { enum {
PROP_0, PROP_0,
PROP_HAS_FILTER, PROP_FILTER,
PROP_ITEM_TYPE, PROP_ITEM_TYPE,
PROP_MODEL, PROP_MODEL,
NUM_PROPERTIES NUM_PROPERTIES
@@ -65,11 +65,10 @@ struct _GtkFilterListModel
GType item_type; GType item_type;
GListModel *model; GListModel *model;
GtkFilterListModelFilterFunc filter_func; GtkFilter *filter;
gpointer user_data; GtkFilterMatch strictness;
GDestroyNotify user_destroy;
GtkRbTree *items; /* NULL if filter_func == NULL */ GtkRbTree *items; /* NULL if strictness != GTK_FILTER_MATCH_SOME */
}; };
struct _GtkFilterListModelClass struct _GtkFilterListModelClass
@@ -79,6 +78,33 @@ struct _GtkFilterListModelClass
static GParamSpec *properties[NUM_PROPERTIES] = { NULL, }; static GParamSpec *properties[NUM_PROPERTIES] = { NULL, };
static void
gtk_filter_list_model_augment (GtkRbTree *filter,
gpointer _aug,
gpointer _node,
gpointer left,
gpointer right)
{
FilterNode *node = _node;
FilterAugment *aug = _aug;
aug->n_items = 1;
aug->n_visible = node->visible ? 1 : 0;
if (left)
{
FilterAugment *left_aug = gtk_rb_tree_get_augment (filter, left);
aug->n_items += left_aug->n_items;
aug->n_visible += left_aug->n_visible;
}
if (right)
{
FilterAugment *right_aug = gtk_rb_tree_get_augment (filter, right);
aug->n_items += right_aug->n_items;
aug->n_visible += right_aug->n_visible;
}
}
static FilterNode * static FilterNode *
gtk_filter_list_model_get_nth_filtered (GtkRbTree *tree, gtk_filter_list_model_get_nth_filtered (GtkRbTree *tree,
guint position, guint position,
@@ -180,11 +206,20 @@ gtk_filter_list_model_get_n_items (GListModel *list)
FilterAugment *aug; FilterAugment *aug;
FilterNode *node; FilterNode *node;
if (self->model == NULL) switch (self->strictness)
return 0; {
case GTK_FILTER_MATCH_NONE:
return 0;
if (!self->items) case GTK_FILTER_MATCH_ALL:
return g_list_model_get_n_items (self->model); return g_list_model_get_n_items (self->model);
default:
g_assert_not_reached ();
G_GNUC_FALLTHROUGH;
case GTK_FILTER_MATCH_SOME:
break;
}
node = gtk_rb_tree_get_root (self->items); node = gtk_rb_tree_get_root (self->items);
if (node == NULL) if (node == NULL)
@@ -201,13 +236,22 @@ gtk_filter_list_model_get_item (GListModel *list,
GtkFilterListModel *self = GTK_FILTER_LIST_MODEL (list); GtkFilterListModel *self = GTK_FILTER_LIST_MODEL (list);
guint unfiltered; guint unfiltered;
if (self->model == NULL) switch (self->strictness)
return NULL; {
case GTK_FILTER_MATCH_NONE:
return NULL;
if (self->items) case GTK_FILTER_MATCH_ALL:
gtk_filter_list_model_get_nth_filtered (self->items, position, &unfiltered); unfiltered = position;
else break;
unfiltered = position;
default:
g_assert_not_reached ();
G_GNUC_FALLTHROUGH;
case GTK_FILTER_MATCH_SOME:
gtk_filter_list_model_get_nth_filtered (self->items, position, &unfiltered);
break;
}
return g_list_model_get_item (self->model, unfiltered); return g_list_model_get_item (self->model, unfiltered);
} }
@@ -230,8 +274,11 @@ gtk_filter_list_model_run_filter (GtkFilterListModel *self,
gpointer item; gpointer item;
gboolean visible; gboolean visible;
/* all other cases should have beeen optimized away */
g_assert (self->strictness == GTK_FILTER_MATCH_SOME);
item = g_list_model_get_item (self->model, position); item = g_list_model_get_item (self->model, position);
visible = self->filter_func (item, self->user_data); visible = gtk_filter_match (self->filter, item);
g_object_unref (item); g_object_unref (item);
return visible; return visible;
@@ -269,10 +316,20 @@ gtk_filter_list_model_items_changed_cb (GListModel *model,
FilterNode *node; FilterNode *node;
guint i, filter_position, filter_removed, filter_added; guint i, filter_position, filter_removed, filter_added;
if (self->items == NULL) switch (self->strictness)
{ {
case GTK_FILTER_MATCH_NONE:
return;
case GTK_FILTER_MATCH_ALL:
g_list_model_items_changed (G_LIST_MODEL (self), position, removed, added); g_list_model_items_changed (G_LIST_MODEL (self), position, removed, added);
return; return;
default:
g_assert_not_reached ();
G_GNUC_FALLTHROUGH;
case GTK_FILTER_MATCH_SOME:
break;
} }
node = gtk_filter_list_model_get_nth (self->items, position, &filter_position); node = gtk_filter_list_model_get_nth (self->items, position, &filter_position);
@@ -303,6 +360,10 @@ gtk_filter_list_model_set_property (GObject *object,
switch (prop_id) switch (prop_id)
{ {
case PROP_FILTER:
gtk_filter_list_model_set_filter (self, g_value_get_object (value));
break;
case PROP_ITEM_TYPE: case PROP_ITEM_TYPE:
self->item_type = g_value_get_gtype (value); self->item_type = g_value_get_gtype (value);
break; break;
@@ -327,8 +388,8 @@ gtk_filter_list_model_get_property (GObject *object,
switch (prop_id) switch (prop_id)
{ {
case PROP_HAS_FILTER: case PROP_FILTER:
g_value_set_boolean (value, self->items != NULL); g_value_set_object (value, self->filter);
break; break;
case PROP_ITEM_TYPE: case PROP_ITEM_TYPE:
@@ -357,17 +418,223 @@ gtk_filter_list_model_clear_model (GtkFilterListModel *self)
gtk_rb_tree_remove_all (self->items); gtk_rb_tree_remove_all (self->items);
} }
/*<private>
* gtk_filter_list_model_find_filtered:
* @self: a #GtkFilterListModel
* @start: (out) (caller-allocates): number of unfiltered items
* at start of list
* @end: (out) (caller-allocates): number of unfiltered items
* at end of list
* @n_items: (out) (caller-allocates): number of unfiltered items in
* list
*
* Checks if elements in self->items are filtered out and returns
* the range that they occupy.
* This function is intended to be used for GListModel::items-changed
* emissions, so it is called in an intermediate state for @self.
*
* Returns: %TRUE if elements are filtered out, %FALSE if none are
**/
static gboolean
gtk_filter_list_model_find_filtered (GtkFilterListModel *self,
guint *start,
guint *end,
guint *n_items)
{
FilterNode *root, *node, *tmp;
FilterAugment *aug;
if (self->items == NULL || self->model == NULL)
return FALSE;
root = gtk_rb_tree_get_root (self->items);
if (root == NULL)
return FALSE; /* empty parent model */
aug = gtk_rb_tree_get_augment (self->items, root);
if (aug->n_items == aug->n_visible)
return FALSE; /* all items visible */
/* find first filtered */
*start = 0;
*end = 0;
*n_items = aug->n_visible;
node = root;
while (node)
{
tmp = gtk_rb_tree_node_get_left (node);
if (tmp)
{
aug = gtk_rb_tree_get_augment (self->items, tmp);
if (aug->n_visible < aug->n_items)
{
node = tmp;
continue;
}
*start += aug->n_items;
}
if (!node->visible)
break;
(*start)++;
node = gtk_rb_tree_node_get_right (node);
}
/* find last filtered by doing everything the opposite way */
node = root;
while (node)
{
tmp = gtk_rb_tree_node_get_right (node);
if (tmp)
{
aug = gtk_rb_tree_get_augment (self->items, tmp);
if (aug->n_visible < aug->n_items)
{
node = tmp;
continue;
}
*end += aug->n_items;
}
if (!node->visible)
break;
(*end)++;
node = gtk_rb_tree_node_get_left (node);
}
return TRUE;
}
static void
gtk_filter_list_model_refilter (GtkFilterListModel *self);
static void
gtk_filter_list_model_update_strictness_and_refilter (GtkFilterListModel *self)
{
GtkFilterMatch new_strictness;
if (self->model == NULL)
new_strictness = GTK_FILTER_MATCH_NONE;
else if (self->filter == NULL)
new_strictness = GTK_FILTER_MATCH_ALL;
else
new_strictness = gtk_filter_get_strictness (self->filter);
/* don't set self->strictness yet so get_n_items() and friends return old values */
switch (new_strictness)
{
case GTK_FILTER_MATCH_NONE:
{
guint n_before = g_list_model_get_n_items (G_LIST_MODEL (self));
g_clear_pointer (&self->items, gtk_rb_tree_unref);
self->strictness = new_strictness;
if (n_before > 0)
g_list_model_items_changed (G_LIST_MODEL (self), 0, n_before, 0);
}
break;
case GTK_FILTER_MATCH_ALL:
switch (self->strictness)
{
case GTK_FILTER_MATCH_NONE:
self->strictness = new_strictness;
g_list_model_items_changed (G_LIST_MODEL (self), 0, 0, g_list_model_get_n_items (self->model));
break;
case GTK_FILTER_MATCH_ALL:
self->strictness = new_strictness;
break;
default:
case GTK_FILTER_MATCH_SOME:
{
guint start, end, n_before, n_after;
self->strictness = new_strictness;
if (gtk_filter_list_model_find_filtered (self, &start, &end, &n_before))
{
n_after = g_list_model_get_n_items (G_LIST_MODEL (self));
g_clear_pointer (&self->items, gtk_rb_tree_unref);
g_list_model_items_changed (G_LIST_MODEL (self), start, n_before - end - start, n_after - end - start);
}
else
{
g_clear_pointer (&self->items, gtk_rb_tree_unref);
}
}
break;
}
break;
default:
g_assert_not_reached ();
G_GNUC_FALLTHROUGH;
case GTK_FILTER_MATCH_SOME:
switch (self->strictness)
{
case GTK_FILTER_MATCH_NONE:
{
guint n_after;
self->strictness = new_strictness;
self->items = gtk_rb_tree_new (FilterNode,
FilterAugment,
gtk_filter_list_model_augment,
NULL, NULL);
n_after = gtk_filter_list_model_add_items (self, NULL, 0, g_list_model_get_n_items (self->model));
if (n_after > 0)
g_list_model_items_changed (G_LIST_MODEL (self), 0, 0, n_after);
}
break;
case GTK_FILTER_MATCH_ALL:
{
guint start, end, n_before, n_after;
self->strictness = new_strictness;
self->items = gtk_rb_tree_new (FilterNode,
FilterAugment,
gtk_filter_list_model_augment,
NULL, NULL);
n_before = g_list_model_get_n_items (self->model);
gtk_filter_list_model_add_items (self, NULL, 0, n_before);
if (gtk_filter_list_model_find_filtered (self, &start, &end, &n_after))
g_list_model_items_changed (G_LIST_MODEL (self), start, n_before - end - start, n_after - end - start);
}
break;
default:
case GTK_FILTER_MATCH_SOME:
gtk_filter_list_model_refilter (self);
break;
}
}
}
static void
gtk_filter_list_model_filter_changed_cb (GtkFilter *filter,
GtkFilterChange change,
GtkFilterListModel *self)
{
gtk_filter_list_model_update_strictness_and_refilter (self);
}
static void
gtk_filter_list_model_clear_filter (GtkFilterListModel *self)
{
if (self->filter == NULL)
return;
g_signal_handlers_disconnect_by_func (self->filter, gtk_filter_list_model_filter_changed_cb, self);
g_clear_object (&self->filter);
}
static void static void
gtk_filter_list_model_dispose (GObject *object) gtk_filter_list_model_dispose (GObject *object)
{ {
GtkFilterListModel *self = GTK_FILTER_LIST_MODEL (object); GtkFilterListModel *self = GTK_FILTER_LIST_MODEL (object);
gtk_filter_list_model_clear_model (self); gtk_filter_list_model_clear_model (self);
if (self->user_destroy) gtk_filter_list_model_clear_filter (self);
self->user_destroy (self->user_data);
self->filter_func = NULL;
self->user_data = NULL;
self->user_destroy = NULL;
g_clear_pointer (&self->items, gtk_rb_tree_unref); g_clear_pointer (&self->items, gtk_rb_tree_unref);
G_OBJECT_CLASS (gtk_filter_list_model_parent_class)->dispose (object); G_OBJECT_CLASS (gtk_filter_list_model_parent_class)->dispose (object);
@@ -383,16 +650,16 @@ gtk_filter_list_model_class_init (GtkFilterListModelClass *class)
gobject_class->dispose = gtk_filter_list_model_dispose; gobject_class->dispose = gtk_filter_list_model_dispose;
/** /**
* GtkFilterListModel:has-filter: * GtkFilterListModel:filter:
* *
* If a filter is set for this model * The filter for this model
*/ */
properties[PROP_HAS_FILTER] = properties[PROP_FILTER] =
g_param_spec_boolean ("has-filter", g_param_spec_object ("filter",
P_("has filter"), P_("Filter"),
P_("If a filter is set for this model"), P_("The filter set for this model"),
FALSE, GTK_TYPE_FILTER,
GTK_PARAM_READABLE | G_PARAM_EXPLICIT_NOTIFY); GTK_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY);
/** /**
* GtkFilterListModel:item-type: * GtkFilterListModel:item-type:
@@ -424,53 +691,22 @@ gtk_filter_list_model_class_init (GtkFilterListModelClass *class)
static void static void
gtk_filter_list_model_init (GtkFilterListModel *self) gtk_filter_list_model_init (GtkFilterListModel *self)
{ {
} self->strictness = GTK_FILTER_MATCH_NONE;
static void
gtk_filter_list_model_augment (GtkRbTree *filter,
gpointer _aug,
gpointer _node,
gpointer left,
gpointer right)
{
FilterNode *node = _node;
FilterAugment *aug = _aug;
aug->n_items = 1;
aug->n_visible = node->visible ? 1 : 0;
if (left)
{
FilterAugment *left_aug = gtk_rb_tree_get_augment (filter, left);
aug->n_items += left_aug->n_items;
aug->n_visible += left_aug->n_visible;
}
if (right)
{
FilterAugment *right_aug = gtk_rb_tree_get_augment (filter, right);
aug->n_items += right_aug->n_items;
aug->n_visible += right_aug->n_visible;
}
} }
/** /**
* gtk_filter_list_model_new: * gtk_filter_list_model_new:
* @model: the model to sort * @model: the model to sort
* @filter_func: (allow-none): filter function or %NULL to not filter items * @filter: (allow-none): filter or %NULL to not filter items
* @user_data: (closure): user data passed to @filter_func
* @user_destroy: destroy notifier for @user_data
* *
* Creates a new #GtkFilterListModel that will filter @model using the given * Creates a new #GtkFilterListModel that will filter @model using the given
* @filter_func. * @filter.
* *
* Returns: a new #GtkFilterListModel * Returns: a new #GtkFilterListModel
**/ **/
GtkFilterListModel * GtkFilterListModel *
gtk_filter_list_model_new (GListModel *model, gtk_filter_list_model_new (GListModel *model,
GtkFilterListModelFilterFunc filter_func, GtkFilter *filter)
gpointer user_data,
GDestroyNotify user_destroy)
{ {
GtkFilterListModel *result; GtkFilterListModel *result;
@@ -479,11 +715,9 @@ gtk_filter_list_model_new (GListModel *model,
result = g_object_new (GTK_TYPE_FILTER_LIST_MODEL, result = g_object_new (GTK_TYPE_FILTER_LIST_MODEL,
"item-type", g_list_model_get_item_type (model), "item-type", g_list_model_get_item_type (model),
"model", model, "model", model,
"filter", filter,
NULL); NULL);
if (filter_func)
gtk_filter_list_model_set_filter_func (result, filter_func, user_data, user_destroy);
return result; return result;
} }
@@ -492,7 +726,7 @@ gtk_filter_list_model_new (GListModel *model,
* @item_type: the type of the items that will be returned * @item_type: the type of the items that will be returned
* *
* Creates a new empty filter list model set up to return items of type @item_type. * Creates a new empty filter list model set up to return items of type @item_type.
* It is up to the application to set a proper filter function and model to ensure * It is up to the application to set a proper filter and model to ensure
* the item type is matched. * the item type is matched.
* *
* Returns: a new #GtkFilterListModel * Returns: a new #GtkFilterListModel
@@ -508,66 +742,53 @@ gtk_filter_list_model_new_for_type (GType item_type)
} }
/** /**
* gtk_filter_list_model_set_filter_func: * gtk_filter_list_model_set_filter:
* @self: a #GtkFilterListModel * @self: a #GtkFilterListModel
* @filter_func: (allow-none): filter function or %NULL to not filter items * @filter: (allow-none) (transfer none): filter to use or %NULL to not filter items
* @user_data: (closure): user data passed to @filter_func
* @user_destroy: destroy notifier for @user_data
* *
* Sets the function used to filter items. The function will be called for every * Sets the filter used to filter items.
* item and if it returns %TRUE the item is considered visible.
**/ **/
void void
gtk_filter_list_model_set_filter_func (GtkFilterListModel *self, gtk_filter_list_model_set_filter (GtkFilterListModel *self,
GtkFilterListModelFilterFunc filter_func, GtkFilter *filter)
gpointer user_data,
GDestroyNotify user_destroy)
{ {
gboolean was_filtered, will_be_filtered;
g_return_if_fail (GTK_IS_FILTER_LIST_MODEL (self)); g_return_if_fail (GTK_IS_FILTER_LIST_MODEL (self));
g_return_if_fail (filter_func != NULL || (user_data == NULL && !user_destroy)); g_return_if_fail (filter == NULL || GTK_IS_FILTER (filter));
was_filtered = self->filter_func != NULL; if (self->filter == filter)
will_be_filtered = filter_func != NULL;
if (!was_filtered && !will_be_filtered)
return; return;
if (self->user_destroy) gtk_filter_list_model_clear_filter (self);
self->user_destroy (self->user_data);
self->filter_func = filter_func; if (filter)
self->user_data = user_data;
self->user_destroy = user_destroy;
if (!will_be_filtered)
{ {
g_clear_pointer (&self->items, gtk_rb_tree_unref); self->filter = g_object_ref (filter);
g_signal_connect (filter, "changed", G_CALLBACK (gtk_filter_list_model_filter_changed_cb), self);
gtk_filter_list_model_filter_changed_cb (filter, GTK_FILTER_CHANGE_DIFFERENT, self);
} }
else if (!was_filtered) else
{ {
guint i, n_items; gtk_filter_list_model_update_strictness_and_refilter (self);
self->items = gtk_rb_tree_new (FilterNode,
FilterAugment,
gtk_filter_list_model_augment,
NULL, NULL);
if (self->model)
{
n_items = g_list_model_get_n_items (self->model);
for (i = 0; i < n_items; i++)
{
FilterNode *node = gtk_rb_tree_insert_before (self->items, NULL);
node->visible = TRUE;
}
}
} }
gtk_filter_list_model_refilter (self); g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_FILTER]);
}
if (was_filtered != will_be_filtered) /**
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_HAS_FILTER]); * gtk_filter_list_model_get_filter:
* @self: a #GtkFilterListModel
*
* Gets the #GtkFilter currently set on @self.
*
* Returns: (nullable) (transfer none): The filter currently in use
* or %NULL if the list isn't filtered
**/
GtkFilter *
gtk_filter_list_model_get_filter (GtkFilterListModel *self)
{
g_return_val_if_fail (GTK_IS_FILTER_LIST_MODEL (self), FALSE);
return self->filter;
} }
/** /**
@@ -579,8 +800,8 @@ gtk_filter_list_model_set_filter_func (GtkFilterListModel *self,
* *
* Note that GTK makes no effort to ensure that @model conforms to * Note that GTK makes no effort to ensure that @model conforms to
* the item type of @self. It assumes that the caller knows what they * the item type of @self. It assumes that the caller knows what they
* are doing and have set up an appropriate filter function to ensure * are doing and have set up an appropriate filter to ensure that item
* that item types match. * types match.
**/ **/
void void
gtk_filter_list_model_set_model (GtkFilterListModel *self, gtk_filter_list_model_set_model (GtkFilterListModel *self,
@@ -603,14 +824,23 @@ gtk_filter_list_model_set_model (GtkFilterListModel *self,
{ {
self->model = g_object_ref (model); self->model = g_object_ref (model);
g_signal_connect (model, "items-changed", G_CALLBACK (gtk_filter_list_model_items_changed_cb), self); g_signal_connect (model, "items-changed", G_CALLBACK (gtk_filter_list_model_items_changed_cb), self);
if (self->items) if (removed == 0)
{
self->strictness = GTK_FILTER_MATCH_NONE;
gtk_filter_list_model_update_strictness_and_refilter (self);
added = 0;
}
else if (self->items)
added = gtk_filter_list_model_add_items (self, NULL, 0, g_list_model_get_n_items (model)); added = gtk_filter_list_model_add_items (self, NULL, 0, g_list_model_get_n_items (model));
else else
added = g_list_model_get_n_items (model); added = g_list_model_get_n_items (model);
} }
else else
added = 0; {
self->strictness = GTK_FILTER_MATCH_NONE;
added = 0;
}
if (removed > 0 || added > 0) if (removed > 0 || added > 0)
g_list_model_items_changed (G_LIST_MODEL (self), 0, removed, added); g_list_model_items_changed (G_LIST_MODEL (self), 0, removed, added);
@@ -633,32 +863,7 @@ gtk_filter_list_model_get_model (GtkFilterListModel *self)
return self->model; return self->model;
} }
/** static void
* gtk_filter_list_model_has_filter:
* @self: a #GtkFilterListModel
*
* Checks if a filter function is currently set on @self
*
* Returns: %TRUE if a filter function is set
**/
gboolean
gtk_filter_list_model_has_filter (GtkFilterListModel *self)
{
g_return_val_if_fail (GTK_IS_FILTER_LIST_MODEL (self), FALSE);
return self->filter_func != NULL;
}
/**
* gtk_filter_list_model_refilter:
* @self: a #GtkFilterListModel
*
* Causes @self to refilter all items in the model.
*
* Calling this function is necessary when data used by the filter
* function has changed.
**/
void
gtk_filter_list_model_refilter (GtkFilterListModel *self) gtk_filter_list_model_refilter (GtkFilterListModel *self)
{ {
FilterNode *node; FilterNode *node;

View File

@@ -26,7 +26,7 @@
#endif #endif
#include <gio/gio.h> #include <gio/gio.h>
#include <gtk/gtkwidget.h> #include <gtk/gtkfilter.h>
G_BEGIN_DECLS G_BEGIN_DECLS
@@ -36,42 +36,22 @@ G_BEGIN_DECLS
GDK_AVAILABLE_IN_ALL GDK_AVAILABLE_IN_ALL
G_DECLARE_FINAL_TYPE (GtkFilterListModel, gtk_filter_list_model, GTK, FILTER_LIST_MODEL, GObject) G_DECLARE_FINAL_TYPE (GtkFilterListModel, gtk_filter_list_model, GTK, FILTER_LIST_MODEL, GObject)
/**
* GtkFilterListModelFilterFunc:
* @item: (type GObject): The item that may be filtered
* @user_data: user data
*
* User function that is called to determine if the @item of the original model should be visible.
* If it should be visible, this function must return %TRUE. If the model should filter out the
* @item, %FALSE must be returned.
*
* Returns: %TRUE to keep the item around
*/
typedef gboolean (* GtkFilterListModelFilterFunc) (gpointer item, gpointer user_data);
GDK_AVAILABLE_IN_ALL GDK_AVAILABLE_IN_ALL
GtkFilterListModel * gtk_filter_list_model_new (GListModel *model, GtkFilterListModel * gtk_filter_list_model_new (GListModel *model,
GtkFilterListModelFilterFunc filter_func, GtkFilter *filter);
gpointer user_data,
GDestroyNotify user_destroy);
GDK_AVAILABLE_IN_ALL GDK_AVAILABLE_IN_ALL
GtkFilterListModel * gtk_filter_list_model_new_for_type (GType item_type); GtkFilterListModel * gtk_filter_list_model_new_for_type (GType item_type);
GDK_AVAILABLE_IN_ALL GDK_AVAILABLE_IN_ALL
void gtk_filter_list_model_set_filter_func (GtkFilterListModel *self, void gtk_filter_list_model_set_filter (GtkFilterListModel *self,
GtkFilterListModelFilterFunc filter_func, GtkFilter *filter);
gpointer user_data, GDK_AVAILABLE_IN_ALL
GDestroyNotify user_destroy); GtkFilter * gtk_filter_list_model_get_filter (GtkFilterListModel *self);
GDK_AVAILABLE_IN_ALL GDK_AVAILABLE_IN_ALL
void gtk_filter_list_model_set_model (GtkFilterListModel *self, void gtk_filter_list_model_set_model (GtkFilterListModel *self,
GListModel *model); GListModel *model);
GDK_AVAILABLE_IN_ALL GDK_AVAILABLE_IN_ALL
GListModel * gtk_filter_list_model_get_model (GtkFilterListModel *self); GListModel * gtk_filter_list_model_get_model (GtkFilterListModel *self);
GDK_AVAILABLE_IN_ALL
gboolean gtk_filter_list_model_has_filter (GtkFilterListModel *self);
GDK_AVAILABLE_IN_ALL
void gtk_filter_list_model_refilter (GtkFilterListModel *self);
G_END_DECLS G_END_DECLS

View File

@@ -36,6 +36,7 @@
#include "gtkcelllayout.h" #include "gtkcelllayout.h"
#include "gtkcomboboxprivate.h" #include "gtkcomboboxprivate.h"
#include "gtkfilterlistmodel.h" #include "gtkfilterlistmodel.h"
#include "gtkcustomfilter.h"
#include "gtkflattenlistmodel.h" #include "gtkflattenlistmodel.h"
#include "gtkbuiltiniconprivate.h" #include "gtkbuiltiniconprivate.h"
#include "gtkiconview.h" #include "gtkiconview.h"
@@ -1091,6 +1092,7 @@ toplevel_filter_func (gpointer item,
static GListModel * static GListModel *
create_root_model (GdkDisplay *display) create_root_model (GdkDisplay *display)
{ {
GtkFilter *custom_filter;
GtkFilterListModel *filter; GtkFilterListModel *filter;
GtkFlattenListModel *flatten; GtkFlattenListModel *flatten;
GListStore *list, *special; GListStore *list, *special;
@@ -1107,9 +1109,9 @@ create_root_model (GdkDisplay *display)
g_object_unref (special); g_object_unref (special);
filter = gtk_filter_list_model_new_for_type (G_TYPE_OBJECT); filter = gtk_filter_list_model_new_for_type (G_TYPE_OBJECT);
gtk_filter_list_model_set_filter_func (filter, custom_filter = gtk_custom_filter_new (toplevel_filter_func,
toplevel_filter_func,
display, NULL); display, NULL);
gtk_filter_list_model_set_filter (filter, custom_filter);
gtk_filter_list_model_set_model (filter, gtk_window_get_toplevels ()); gtk_filter_list_model_set_model (filter, gtk_window_get_toplevels ());
g_list_store_append (list, filter); g_list_store_append (list, filter);
g_object_unref (filter); g_object_unref (filter);

View File

@@ -150,14 +150,20 @@ free_changes (gpointer data)
} }
static GtkFilterListModel * static GtkFilterListModel *
new_model (guint size, new_model (guint size,
GtkFilterListModelFilterFunc filter_func, GtkCustomFilterFunc filter_func,
gpointer data) gpointer data)
{ {
GtkFilterListModel *result; GtkFilterListModel *result;
GtkFilter *filter;
GString *changes; GString *changes;
result = gtk_filter_list_model_new (G_LIST_MODEL (new_store (1, size, 1)), filter_func, data, NULL); if (filter_func)
filter = gtk_custom_filter_new (filter_func, data, NULL);
else
filter = NULL;
result = gtk_filter_list_model_new (G_LIST_MODEL (new_store (1, size, 1)), filter);
g_clear_object (&filter);
changes = g_string_new (""); changes = g_string_new ("");
g_object_set_qdata_full (G_OBJECT(result), changes_quark, changes, free_changes); g_object_set_qdata_full (G_OBJECT(result), changes_quark, changes, free_changes);
g_signal_connect (result, "items-changed", G_CALLBACK (items_changed), changes); g_signal_connect (result, "items-changed", G_CALLBACK (items_changed), changes);
@@ -220,89 +226,119 @@ test_create (void)
} }
static void static void
test_empty_set_filter_func (void) test_empty_set_filter (void)
{ {
GtkFilterListModel *filter; GtkFilterListModel *filter;
GtkFilter *custom;
filter = new_model (10, NULL, NULL); filter = new_model (10, NULL, NULL);
gtk_filter_list_model_set_filter_func (filter, is_smaller_than, GUINT_TO_POINTER (20), NULL); custom = gtk_custom_filter_new (is_smaller_than, GUINT_TO_POINTER (20), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, "1 2 3 4 5 6 7 8 9 10"); assert_model (filter, "1 2 3 4 5 6 7 8 9 10");
assert_changes (filter, ""); assert_changes (filter, "");
g_object_unref (filter); g_object_unref (filter);
filter = new_model (10, NULL, NULL); filter = new_model (10, NULL, NULL);
gtk_filter_list_model_set_filter_func (filter, is_smaller_than, GUINT_TO_POINTER (7), NULL); custom = gtk_custom_filter_new (is_smaller_than, GUINT_TO_POINTER (7), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, "1 2 3 4 5 6"); assert_model (filter, "1 2 3 4 5 6");
assert_changes (filter, "6-4"); assert_changes (filter, "6-4");
g_object_unref (filter); g_object_unref (filter);
filter = new_model (10, NULL, NULL); filter = new_model (10, NULL, NULL);
gtk_filter_list_model_set_filter_func (filter, is_smaller_than, GUINT_TO_POINTER (0), NULL); custom = gtk_custom_filter_new (is_smaller_than, GUINT_TO_POINTER (0), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, ""); assert_model (filter, "");
assert_changes (filter, "0-10"); assert_changes (filter, "0-10");
g_object_unref (filter); g_object_unref (filter);
filter = new_model (10, NULL, NULL); filter = new_model (10, NULL, NULL);
gtk_filter_list_model_set_filter_func (filter, is_larger_than, GUINT_TO_POINTER (0), NULL); custom = gtk_custom_filter_new (is_larger_than, GUINT_TO_POINTER (0), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, "1 2 3 4 5 6 7 8 9 10"); assert_model (filter, "1 2 3 4 5 6 7 8 9 10");
assert_changes (filter, ""); assert_changes (filter, "");
g_object_unref (filter); g_object_unref (filter);
filter = new_model (10, NULL, NULL); filter = new_model (10, NULL, NULL);
gtk_filter_list_model_set_filter_func (filter, is_larger_than, GUINT_TO_POINTER (3), NULL); custom = gtk_custom_filter_new (is_larger_than, GUINT_TO_POINTER (3), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, "4 5 6 7 8 9 10"); assert_model (filter, "4 5 6 7 8 9 10");
assert_changes (filter, "0-3"); assert_changes (filter, "0-3");
g_object_unref (filter); g_object_unref (filter);
filter = new_model (10, NULL, NULL); filter = new_model (10, NULL, NULL);
gtk_filter_list_model_set_filter_func (filter, is_larger_than, GUINT_TO_POINTER (20), NULL); custom = gtk_custom_filter_new (is_larger_than, GUINT_TO_POINTER (20), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, ""); assert_model (filter, "");
assert_changes (filter, "0-10"); assert_changes (filter, "0-10");
g_object_unref (filter); g_object_unref (filter);
filter = new_model (10, NULL, NULL); filter = new_model (10, NULL, NULL);
gtk_filter_list_model_set_filter_func (filter, is_near, GUINT_TO_POINTER (5), NULL); custom = gtk_custom_filter_new (is_near, GUINT_TO_POINTER (5), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, "3 4 5 6 7"); assert_model (filter, "3 4 5 6 7");
assert_changes (filter, "0-10+5"); assert_changes (filter, "0-10+5");
g_object_unref (filter); g_object_unref (filter);
filter = new_model (10, NULL, NULL); filter = new_model (10, NULL, NULL);
gtk_filter_list_model_set_filter_func (filter, is_not_near, GUINT_TO_POINTER (5), NULL); custom = gtk_custom_filter_new (is_not_near, GUINT_TO_POINTER (5), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, "1 2 8 9 10"); assert_model (filter, "1 2 8 9 10");
assert_changes (filter, "2-5"); assert_changes (filter, "2-5");
g_object_unref (filter); g_object_unref (filter);
} }
static void static void
test_change_filter_func (void) test_change_filter (void)
{ {
GtkFilterListModel *filter; GtkFilterListModel *filter;
GtkFilter *custom;
filter = new_model (10, is_not_near, GUINT_TO_POINTER (5)); filter = new_model (10, is_not_near, GUINT_TO_POINTER (5));
assert_model (filter, "1 2 8 9 10"); assert_model (filter, "1 2 8 9 10");
assert_changes (filter, ""); assert_changes (filter, "");
gtk_filter_list_model_set_filter_func (filter, is_not_near, GUINT_TO_POINTER (6), NULL); custom = gtk_custom_filter_new (is_not_near, GUINT_TO_POINTER (6), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, "1 2 3 9 10"); assert_model (filter, "1 2 3 9 10");
assert_changes (filter, "2-1+1"); assert_changes (filter, "2-1+1");
gtk_filter_list_model_set_filter_func (filter, is_not_near, GUINT_TO_POINTER (9), NULL); custom = gtk_custom_filter_new (is_not_near, GUINT_TO_POINTER (9), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, "1 2 3 4 5 6"); assert_model (filter, "1 2 3 4 5 6");
assert_changes (filter, "3-2+3"); assert_changes (filter, "3-2+3");
gtk_filter_list_model_set_filter_func (filter, is_smaller_than, GUINT_TO_POINTER (6), NULL); custom = gtk_custom_filter_new (is_smaller_than, GUINT_TO_POINTER (6), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, "1 2 3 4 5"); assert_model (filter, "1 2 3 4 5");
assert_changes (filter, "-5"); assert_changes (filter, "-5");
gtk_filter_list_model_set_filter_func (filter, is_larger_than, GUINT_TO_POINTER (4), NULL); custom = gtk_custom_filter_new (is_larger_than, GUINT_TO_POINTER (4), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, "5 6 7 8 9 10"); assert_model (filter, "5 6 7 8 9 10");
assert_changes (filter, "0-5+6"); assert_changes (filter, "0-5+6");
gtk_filter_list_model_set_filter_func (filter, is_not_near, GUINT_TO_POINTER (2), NULL); custom = gtk_custom_filter_new (is_not_near, GUINT_TO_POINTER (2), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, "5 6 7 8 9 10"); assert_model (filter, "5 6 7 8 9 10");
assert_changes (filter, ""); assert_changes (filter, "");
gtk_filter_list_model_set_filter_func (filter, is_not_near, GUINT_TO_POINTER (4), NULL); custom = gtk_custom_filter_new (is_not_near, GUINT_TO_POINTER (4), NULL);
gtk_filter_list_model_set_filter (filter, custom);
g_object_unref (custom);
assert_model (filter, "1 7 8 9 10"); assert_model (filter, "1 7 8 9 10");
assert_changes (filter, "0-2+1"); assert_changes (filter, "0-2+1");
@@ -319,8 +355,8 @@ main (int argc, char *argv[])
changes_quark = g_quark_from_static_string ("What did I see? Can I believe what I saw?"); changes_quark = g_quark_from_static_string ("What did I see? Can I believe what I saw?");
g_test_add_func ("/filterlistmodel/create", test_create); g_test_add_func ("/filterlistmodel/create", test_create);
g_test_add_func ("/filterlistmodel/empty_set_filter_func", test_empty_set_filter_func); g_test_add_func ("/filterlistmodel/empty_set_filter", test_empty_set_filter);
g_test_add_func ("/filterlistmodel/change_filter_func", test_change_filter_func); g_test_add_func ("/filterlistmodel/change_filter", test_change_filter);
return g_test_run (); return g_test_run ();
} }