[gtk+/wip/otte/queue-resize: 26/31] sizegroup: Simplify widget's size group invalidation
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/otte/queue-resize: 26/31] sizegroup: Simplify widget's size group invalidation
- Date: Tue, 29 Sep 2015 21:23:57 +0000 (UTC)
commit 62c998583a45824baa7306644121ca9659963c1b
Author: Benjamin Otte <otte redhat com>
Date: Mon Sep 28 21:08:57 2015 +0200
sizegroup: Simplify widget's size group invalidation
Since we do not queue resizes twice anymore, we can just walk the list
of groups without deduplication.
gtk/gtksizegroup.c | 68 +++++++++++++++++++--------------------------------
1 files changed, 25 insertions(+), 43 deletions(-)
---
diff --git a/gtk/gtksizegroup.c b/gtk/gtksizegroup.c
index a6e0d1f..e1c9f46 100644
--- a/gtk/gtksizegroup.c
+++ b/gtk/gtksizegroup.c
@@ -203,16 +203,23 @@ _gtk_size_group_get_widget_peers (GtkWidget *for_widget,
}
static void
+queue_resize_on_group (GtkSizeGroup *size_group)
+{
+ GtkSizeGroupPrivate *priv = size_group->priv;
+ GSList *list;
+
+ for (list = priv->widgets; list; list = list->next)
+ {
+ gtk_widget_queue_resize (list->data);
+ }
+}
+
+static void
queue_resize_on_widget (GtkWidget *widget,
gboolean check_siblings)
{
- GHashTable *widgets;
- GHashTable *groups;
GtkWidget *parent;
- widgets = g_hash_table_new (NULL, NULL);
- groups = g_hash_table_new (NULL, NULL);
-
parent = widget;
do
@@ -222,34 +229,24 @@ queue_resize_on_widget (GtkWidget *widget,
gtk_widget_queue_resize_on_widget (parent);
- if (!check_siblings || _gtk_widget_get_sizegroups (parent) == NULL)
+ if (!check_siblings)
{
check_siblings = TRUE;
}
else
{
- GHashTableIter iter;
- gpointer current;
-
- g_hash_table_remove_all (widgets);
- g_hash_table_remove_all (groups);
- add_widget_to_closure (widgets, groups, parent, -1);
-
- g_hash_table_iter_init (&iter, widgets);
- while (g_hash_table_iter_next (&iter, ¤t, NULL))
- {
- if (current == parent)
- {
- /* do nothing */
- }
- else if (current == widget)
- {
- g_warning ("A container and its child are part of this SizeGroup");
- }
- else
- queue_resize_on_widget (current, FALSE);
- }
- }
+ GSList *groups, *l;
+
+ groups = _gtk_widget_get_sizegroups (parent);
+
+ for (l = groups; l; l = l->next)
+ {
+ if (((GtkSizeGroup *) (l->data))->priv->ignore_hidden && !gtk_widget_is_visible (widget))
+ continue;
+
+ queue_resize_on_group (l->data);
+ }
+ }
G_GNUC_BEGIN_IGNORE_DEPRECATIONS;
if (GTK_IS_RESIZE_CONTAINER (parent))
@@ -262,21 +259,6 @@ G_GNUC_END_IGNORE_DEPRECATIONS;
parent = _gtk_widget_get_parent (parent);
}
while (parent);
-
- g_hash_table_destroy (widgets);
- g_hash_table_destroy (groups);
-}
-
-static void
-queue_resize_on_group (GtkSizeGroup *size_group)
-{
- GtkSizeGroupPrivate *priv = size_group->priv;
- GSList *list;
-
- for (list = priv->widgets; list; list = list->next)
- {
- gtk_widget_queue_resize (list->data);
- }
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]