diff options
author | Benjamin Otte <otte@redhat.com> | 2015-12-12 02:02:04 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2015-12-12 02:16:04 +0100 |
commit | 971a277419800fbcaa9dafa8bb68fdb19d866aee (patch) | |
tree | 0ce504568b8718d82d87da6045a39ea0a497be1a /gtk/gtkcssstylechange.c | |
parent | 0ad259a178f5172364c3acce41f8d5cde0f571c6 (diff) | |
download | gtk+-971a277419800fbcaa9dafa8bb68fdb19d866aee.tar.gz |
cssnode: Change style-changed signal
Instead of having old and new style, now have a GtkCssStyleChange opaque
object that will compute the changes you are interested in for you.
This simplifies change signal handlers quite a bit and avoids lots of
repeated computation in every signal handler.
Diffstat (limited to 'gtk/gtkcssstylechange.c')
-rw-r--r-- | gtk/gtkcssstylechange.c | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/gtk/gtkcssstylechange.c b/gtk/gtkcssstylechange.c new file mode 100644 index 0000000000..49cbc1cf13 --- /dev/null +++ b/gtk/gtkcssstylechange.c @@ -0,0 +1,97 @@ +/* GTK - The GIMP Toolkit + * Copyright (C) 2015 Benjamin Otte <otte@gnome.org> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + */ + +#include "config.h" + +#include "gtkcssstylechangeprivate.h" + +#include "gtkcssstylepropertyprivate.h" + +void +gtk_css_style_change_init (GtkCssStyleChange *change, + GtkCssStyle *old_style, + GtkCssStyle *new_style) +{ + change->old_style = g_object_ref (old_style); + change->new_style = g_object_ref (new_style); + + change->n_compared = 0; + + change->affects = 0; + change->has_change = FALSE; +} + +void +gtk_css_style_change_finish (GtkCssStyleChange *change) +{ + g_object_unref (change->old_style); + g_object_unref (change->new_style); +} + +GtkCssStyle * +gtk_css_style_change_get_old_style (GtkCssStyleChange *change) +{ + return change->old_style; +} + +GtkCssStyle * +gtk_css_style_change_get_new_style (GtkCssStyleChange *change) +{ + return change->new_style; +} + +static gboolean +gtk_css_style_compare_next_value (GtkCssStyleChange *change) +{ + if (change->n_compared == GTK_CSS_PROPERTY_N_PROPERTIES) + return FALSE; + + if (!_gtk_css_value_equal (gtk_css_style_get_value (change->old_style, change->n_compared), + gtk_css_style_get_value (change->new_style, change->n_compared))) + { + change->has_change = TRUE; + change->affects |= _gtk_css_style_property_get_affects (_gtk_css_style_property_lookup_by_id (change->n_compared)); + } + + change->n_compared++; + + return TRUE; +} + +gboolean +gtk_css_style_change_has_change (GtkCssStyleChange *change) +{ + do { + if (change->has_change) + return TRUE; + } while (gtk_css_style_compare_next_value (change)); + + return FALSE; +} + +gboolean +gtk_css_style_change_affects (GtkCssStyleChange *change, + GtkCssAffects affects) +{ + do { + if (change->affects & affects) + return TRUE; + } while (gtk_css_style_compare_next_value (change)); + + return FALSE; +} + |