summaryrefslogtreecommitdiff
path: root/gtk/gtkcsswidgetnode.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2015-02-07 18:53:07 +0100
committerBenjamin Otte <otte@redhat.com>2015-03-18 15:23:30 +0100
commit020f3f11c801617b8acdba3dcbc852426aba848f (patch)
treee515139ce27fd4c68f41d475eb22d7d2f10f064c /gtk/gtkcsswidgetnode.c
parentcdd964a3af4ac73ba09c975e73054c5ba618ed99 (diff)
downloadgtk+-020f3f11c801617b8acdba3dcbc852426aba848f.tar.gz
cssnode: Handle invalidate queueing differently
Instead of directly requesting the layout phase, register a tick callback. This is what the docs suggest for animations and it's what we need for the next commit.
Diffstat (limited to 'gtk/gtkcsswidgetnode.c')
-rw-r--r--gtk/gtkcsswidgetnode.c20
1 files changed, 17 insertions, 3 deletions
diff --git a/gtk/gtkcsswidgetnode.c b/gtk/gtkcsswidgetnode.c
index cb46bb2a46..a684431e9e 100644
--- a/gtk/gtkcsswidgetnode.c
+++ b/gtk/gtkcsswidgetnode.c
@@ -46,9 +46,22 @@ gtk_css_widget_node_queue_validate (GtkCssNode *node)
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
if (GTK_IS_RESIZE_CONTAINER (widget_node->widget))
- {
- _gtk_container_queue_restyle (GTK_CONTAINER (widget_node->widget));
- }
+ widget_node->validate_cb_id = gtk_widget_add_tick_callback (widget_node->widget,
+ (GtkTickCallback) _gtk_container_queue_restyle,
+ NULL,
+ NULL);
+ G_GNUC_END_IGNORE_DEPRECATIONS
+}
+
+static void
+gtk_css_widget_node_dequeue_validate (GtkCssNode *node)
+{
+ GtkCssWidgetNode *widget_node = GTK_CSS_WIDGET_NODE (node);
+
+ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
+ if (GTK_IS_RESIZE_CONTAINER (widget_node->widget))
+ gtk_widget_remove_tick_callback (widget_node->widget,
+ widget_node->validate_cb_id);
G_GNUC_END_IGNORE_DEPRECATIONS
}
@@ -204,6 +217,7 @@ gtk_css_widget_node_class_init (GtkCssWidgetNodeClass *klass)
node_class->update_style = gtk_css_widget_node_update_style;
node_class->validate = gtk_css_widget_node_validate;
node_class->queue_validate = gtk_css_widget_node_queue_validate;
+ node_class->dequeue_validate = gtk_css_widget_node_dequeue_validate;
node_class->create_widget_path = gtk_css_widget_node_create_widget_path;
node_class->get_widget_path = gtk_css_widget_node_get_widget_path;
node_class->get_style_provider = gtk_css_widget_node_get_style_provider;