summaryrefslogtreecommitdiff
path: root/gtk/gtkcsslookup.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2011-12-31 19:45:17 +0100
committerBenjamin Otte <otte@redhat.com>2012-01-09 18:37:52 +0100
commit544d210a614851528159a922fc3120e03332e486 (patch)
treef570f48644af3dbda34de027e2aef1c2a8abfeaf /gtk/gtkcsslookup.c
parent0a3ac5efbced071e080af10e03748eb53e747807 (diff)
downloadgtk+-544d210a614851528159a922fc3120e03332e486.tar.gz
css: Move a bunch of functions
... from GtkStyleProperty to GtkCssStyleProperty.
Diffstat (limited to 'gtk/gtkcsslookup.c')
-rw-r--r--gtk/gtkcsslookup.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtkcsslookup.c b/gtk/gtkcsslookup.c
index 50ee2d5697..3e21304187 100644
--- a/gtk/gtkcsslookup.c
+++ b/gtk/gtkcsslookup.c
@@ -23,7 +23,7 @@
#include "gtkcsstypesprivate.h"
#include "gtkprivatetypebuiltins.h"
-#include "gtkstylepropertyprivate.h"
+#include "gtkcssstylepropertyprivate.h"
#include "gtkstylepropertiesprivate.h"
struct _GtkCssLookup {
@@ -35,7 +35,7 @@ GtkCssLookup *
_gtk_css_lookup_new (void)
{
GtkCssLookup *lookup;
- guint n = _gtk_style_property_get_count ();
+ guint n = _gtk_css_style_property_get_n_properties ();
lookup = g_malloc0 (sizeof (GtkCssLookup) + sizeof (const GValue *) * n);
lookup->missing = _gtk_bitmask_new ();
@@ -117,12 +117,12 @@ _gtk_css_lookup_resolve (GtkCssLookup *lookup,
g_return_val_if_fail (lookup != NULL, NULL);
g_return_val_if_fail (parent == NULL || GTK_IS_STYLE_CONTEXT (parent), NULL);
- n = _gtk_style_property_get_count ();
+ n = _gtk_css_style_property_get_n_properties ();
props = gtk_style_properties_new ();
for (i = 0; i < n; i++)
{
- GtkStyleProperty *prop = _gtk_style_property_get (i);
+ GtkCssStyleProperty *prop = _gtk_css_style_property_lookup_by_id (i);
const GValue *result;
/* http://www.w3.org/TR/css3-cascade/#cascade
@@ -155,7 +155,7 @@ _gtk_css_lookup_resolve (GtkCssLookup *lookup,
/* if the value of the winning declaration is ‘initial’,
* the initial value (see below) becomes the specified value.
*/
- result = _gtk_style_property_get_initial_value (prop);
+ result = _gtk_css_style_property_get_initial_value (prop);
break;
default:
/* This is part of (2) above */
@@ -166,7 +166,7 @@ _gtk_css_lookup_resolve (GtkCssLookup *lookup,
}
else
{
- if (_gtk_style_property_is_inherit (prop))
+ if (_gtk_css_style_property_is_inherit (prop))
{
/* 4) if the property is inherited, the inherited value becomes
* the specified value.
@@ -177,7 +177,7 @@ _gtk_css_lookup_resolve (GtkCssLookup *lookup,
{
/* 5) Otherwise, the initial value becomes the specified value.
*/
- result = _gtk_style_property_get_initial_value (prop);
+ result = _gtk_css_style_property_get_initial_value (prop);
}
}
@@ -195,14 +195,14 @@ _gtk_css_lookup_resolve (GtkCssLookup *lookup,
_gtk_style_properties_set_property_by_property (props,
prop,
0,
- _gtk_style_property_get_initial_value (prop));
+ _gtk_css_style_property_get_initial_value (prop));
}
else
{
GValue value = { 0, };
/* Set NULL here and do the inheritance upon lookup? */
gtk_style_context_get_property (parent,
- _gtk_style_property_get_name (prop),
+ _gtk_style_property_get_name (GTK_STYLE_PROPERTY (prop)),
gtk_style_context_get_state (parent),
&value);
_gtk_style_properties_set_property_by_property (props,