2011-12-31 12:43:31 +00:00
|
|
|
|
/*
|
|
|
|
|
* Copyright © 2011 Red Hat Inc.
|
|
|
|
|
*
|
|
|
|
|
* 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.1 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
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2011-12-31 12:43:31 +00:00
|
|
|
|
*
|
|
|
|
|
* Authors: Benjamin Otte <otte@gnome.org>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
|
#include "gtkcssstylepropertyprivate.h"
|
|
|
|
|
|
2012-10-01 16:21:30 +00:00
|
|
|
|
#include "gtkcssenumvalueprivate.h"
|
2012-03-26 15:24:02 +00:00
|
|
|
|
#include "gtkcssinheritvalueprivate.h"
|
|
|
|
|
#include "gtkcssinitialvalueprivate.h"
|
2012-01-01 17:28:27 +00:00
|
|
|
|
#include "gtkcsstypesprivate.h"
|
2014-05-11 01:08:40 +00:00
|
|
|
|
#include "gtkcssunsetvalueprivate.h"
|
2011-12-31 18:28:59 +00:00
|
|
|
|
#include "gtkintl.h"
|
2012-01-01 17:28:27 +00:00
|
|
|
|
#include "gtkprivatetypebuiltins.h"
|
2015-09-08 12:06:17 +00:00
|
|
|
|
#include "gtkprivate.h"
|
2012-01-01 20:58:45 +00:00
|
|
|
|
|
2012-01-24 16:49:29 +00:00
|
|
|
|
/* this is in case round() is not provided by the compiler,
|
|
|
|
|
* such as in the case of C89 compilers, like MSVC
|
|
|
|
|
*/
|
|
|
|
|
#include "fallback-c89.c"
|
|
|
|
|
|
2011-12-31 18:28:59 +00:00
|
|
|
|
enum {
|
|
|
|
|
PROP_0,
|
2012-04-02 06:53:51 +00:00
|
|
|
|
PROP_ANIMATED,
|
2015-01-27 03:32:09 +00:00
|
|
|
|
PROP_AFFECTS,
|
2011-12-31 18:28:59 +00:00
|
|
|
|
PROP_ID,
|
2011-12-31 18:59:16 +00:00
|
|
|
|
PROP_INHERIT,
|
|
|
|
|
PROP_INITIAL
|
2011-12-31 18:28:59 +00:00
|
|
|
|
};
|
|
|
|
|
|
2011-12-31 12:43:31 +00:00
|
|
|
|
G_DEFINE_TYPE (GtkCssStyleProperty, _gtk_css_style_property, GTK_TYPE_STYLE_PROPERTY)
|
|
|
|
|
|
2012-12-10 13:49:51 +00:00
|
|
|
|
static GtkCssStylePropertyClass *gtk_css_style_property_class = NULL;
|
|
|
|
|
|
2011-12-31 18:28:59 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_css_style_property_constructed (GObject *object)
|
|
|
|
|
{
|
|
|
|
|
GtkCssStyleProperty *property = GTK_CSS_STYLE_PROPERTY (object);
|
|
|
|
|
GtkCssStylePropertyClass *klass = GTK_CSS_STYLE_PROPERTY_GET_CLASS (property);
|
|
|
|
|
|
|
|
|
|
property->id = klass->style_properties->len;
|
|
|
|
|
g_ptr_array_add (klass->style_properties, property);
|
|
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (_gtk_css_style_property_parent_class)->constructed (object);
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-31 18:59:16 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_css_style_property_set_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
|
|
|
|
GtkCssStyleProperty *property = GTK_CSS_STYLE_PROPERTY (object);
|
|
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
|
{
|
2012-04-02 06:53:51 +00:00
|
|
|
|
case PROP_ANIMATED:
|
|
|
|
|
property->animated = g_value_get_boolean (value);
|
|
|
|
|
break;
|
2015-01-27 03:32:09 +00:00
|
|
|
|
case PROP_AFFECTS:
|
|
|
|
|
property->affects = g_value_get_flags (value);
|
|
|
|
|
break;
|
2011-12-31 18:59:16 +00:00
|
|
|
|
case PROP_INHERIT:
|
|
|
|
|
property->inherit = g_value_get_boolean (value);
|
|
|
|
|
break;
|
|
|
|
|
case PROP_INITIAL:
|
2012-03-06 13:16:32 +00:00
|
|
|
|
property->initial_value = g_value_dup_boxed (value);
|
|
|
|
|
g_assert (property->initial_value != NULL);
|
2011-12-31 18:59:16 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-31 18:28:59 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_css_style_property_get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
|
|
|
|
GtkCssStyleProperty *property = GTK_CSS_STYLE_PROPERTY (object);
|
|
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
|
{
|
2012-04-02 06:53:51 +00:00
|
|
|
|
case PROP_ANIMATED:
|
|
|
|
|
g_value_set_boolean (value, property->animated);
|
|
|
|
|
break;
|
2015-01-27 03:32:09 +00:00
|
|
|
|
case PROP_AFFECTS:
|
|
|
|
|
g_value_set_flags (value, property->affects);
|
|
|
|
|
break;
|
2011-12-31 18:28:59 +00:00
|
|
|
|
case PROP_ID:
|
|
|
|
|
g_value_set_boolean (value, property->id);
|
|
|
|
|
break;
|
2011-12-31 18:59:16 +00:00
|
|
|
|
case PROP_INHERIT:
|
|
|
|
|
g_value_set_boolean (value, property->inherit);
|
|
|
|
|
break;
|
|
|
|
|
case PROP_INITIAL:
|
2012-03-06 13:16:32 +00:00
|
|
|
|
g_value_set_boxed (value, property->initial_value);
|
2011-12-31 18:59:16 +00:00
|
|
|
|
break;
|
2011-12-31 18:28:59 +00:00
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-26 15:24:02 +00:00
|
|
|
|
static GtkCssValue *
|
2012-01-02 08:53:03 +00:00
|
|
|
|
gtk_css_style_property_parse_value (GtkStyleProperty *property,
|
2012-04-18 20:04:44 +00:00
|
|
|
|
GtkCssParser *parser)
|
2012-01-02 08:53:03 +00:00
|
|
|
|
{
|
2012-01-02 17:05:06 +00:00
|
|
|
|
GtkCssStyleProperty *style_property = GTK_CSS_STYLE_PROPERTY (property);
|
2012-01-02 09:06:47 +00:00
|
|
|
|
|
2019-03-24 13:03:52 +00:00
|
|
|
|
if (gtk_css_parser_try_ident (parser, "initial"))
|
2012-01-02 08:53:03 +00:00
|
|
|
|
{
|
|
|
|
|
/* the initial value can be explicitly specified with the
|
|
|
|
|
* ‘initial’ keyword which all properties accept.
|
|
|
|
|
*/
|
2012-03-26 15:24:02 +00:00
|
|
|
|
return _gtk_css_initial_value_new ();
|
2012-01-02 08:53:03 +00:00
|
|
|
|
}
|
2019-03-24 13:03:52 +00:00
|
|
|
|
else if (gtk_css_parser_try_ident (parser, "inherit"))
|
2012-01-02 08:53:03 +00:00
|
|
|
|
{
|
|
|
|
|
/* All properties accept the ‘inherit’ value which
|
|
|
|
|
* explicitly specifies that the value will be determined
|
|
|
|
|
* by inheritance. The ‘inherit’ value can be used to
|
|
|
|
|
* strengthen inherited values in the cascade, and it can
|
|
|
|
|
* also be used on properties that are not normally inherited.
|
|
|
|
|
*/
|
2012-03-26 15:24:02 +00:00
|
|
|
|
return _gtk_css_inherit_value_new ();
|
2012-01-02 17:05:06 +00:00
|
|
|
|
}
|
2019-03-24 13:03:52 +00:00
|
|
|
|
else if (gtk_css_parser_try_ident (parser, "unset"))
|
2014-05-11 01:08:40 +00:00
|
|
|
|
{
|
|
|
|
|
/* If the cascaded value of a property is the unset keyword,
|
|
|
|
|
* then if it is an inherited property, this is treated as
|
|
|
|
|
* inherit, and if it is not, this is treated as initial.
|
|
|
|
|
*/
|
|
|
|
|
return _gtk_css_unset_value_new ();
|
|
|
|
|
}
|
2012-01-02 09:06:47 +00:00
|
|
|
|
|
2012-04-18 19:58:22 +00:00
|
|
|
|
return (* style_property->parse_value) (style_property, parser);
|
2012-01-02 08:53:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-31 12:43:31 +00:00
|
|
|
|
static void
|
|
|
|
|
_gtk_css_style_property_class_init (GtkCssStylePropertyClass *klass)
|
|
|
|
|
{
|
2011-12-31 18:28:59 +00:00
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2012-01-01 20:58:45 +00:00
|
|
|
|
GtkStylePropertyClass *property_class = GTK_STYLE_PROPERTY_CLASS (klass);
|
2011-12-31 18:28:59 +00:00
|
|
|
|
|
|
|
|
|
object_class->constructed = gtk_css_style_property_constructed;
|
2011-12-31 18:59:16 +00:00
|
|
|
|
object_class->set_property = gtk_css_style_property_set_property;
|
2011-12-31 18:28:59 +00:00
|
|
|
|
object_class->get_property = gtk_css_style_property_get_property;
|
|
|
|
|
|
2012-04-02 06:53:51 +00:00
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
|
PROP_ANIMATED,
|
|
|
|
|
g_param_spec_boolean ("animated",
|
|
|
|
|
P_("Animated"),
|
|
|
|
|
P_("Set if the value can be animated"),
|
|
|
|
|
FALSE,
|
2017-11-18 03:56:25 +00:00
|
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
|
2015-01-27 03:32:09 +00:00
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
|
PROP_AFFECTS,
|
|
|
|
|
g_param_spec_flags ("affects",
|
|
|
|
|
P_("Affects"),
|
|
|
|
|
P_("Set if the value affects the sizing of elements"),
|
|
|
|
|
GTK_TYPE_CSS_AFFECTS,
|
|
|
|
|
0,
|
2017-11-18 03:56:25 +00:00
|
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
|
2011-12-31 18:28:59 +00:00
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
|
PROP_ID,
|
|
|
|
|
g_param_spec_uint ("id",
|
|
|
|
|
P_("ID"),
|
|
|
|
|
P_("The numeric id for quick access"),
|
|
|
|
|
0, G_MAXUINT, 0,
|
2017-11-18 03:56:25 +00:00
|
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
2011-12-31 18:59:16 +00:00
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
|
PROP_INHERIT,
|
|
|
|
|
g_param_spec_boolean ("inherit",
|
|
|
|
|
P_("Inherit"),
|
|
|
|
|
P_("Set if the value is inherited by default"),
|
|
|
|
|
FALSE,
|
2017-11-18 03:56:25 +00:00
|
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
|
2011-12-31 18:59:16 +00:00
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
|
PROP_INITIAL,
|
|
|
|
|
g_param_spec_boxed ("initial-value",
|
|
|
|
|
P_("Initial value"),
|
|
|
|
|
P_("The initial specified value used for this property"),
|
2012-03-06 13:16:32 +00:00
|
|
|
|
GTK_TYPE_CSS_VALUE,
|
2017-11-18 03:56:25 +00:00
|
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
|
2011-12-31 18:28:59 +00:00
|
|
|
|
|
2012-01-02 08:53:03 +00:00
|
|
|
|
property_class->parse_value = gtk_css_style_property_parse_value;
|
2012-01-01 20:58:45 +00:00
|
|
|
|
|
2011-12-31 18:28:59 +00:00
|
|
|
|
klass->style_properties = g_ptr_array_new ();
|
2012-11-30 19:37:46 +00:00
|
|
|
|
|
2012-12-10 13:49:51 +00:00
|
|
|
|
gtk_css_style_property_class = klass;
|
2011-12-31 12:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-03-26 15:24:02 +00:00
|
|
|
|
static GtkCssValue *
|
2012-01-02 17:05:06 +00:00
|
|
|
|
gtk_css_style_property_real_parse_value (GtkCssStyleProperty *property,
|
2012-04-18 19:58:22 +00:00
|
|
|
|
GtkCssParser *parser)
|
2012-01-02 17:05:06 +00:00
|
|
|
|
{
|
2012-03-27 13:58:22 +00:00
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
return NULL;
|
2012-01-02 17:05:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-31 12:43:31 +00:00
|
|
|
|
static void
|
2012-01-02 16:50:32 +00:00
|
|
|
|
_gtk_css_style_property_init (GtkCssStyleProperty *property)
|
2011-12-31 12:43:31 +00:00
|
|
|
|
{
|
2012-01-02 17:05:06 +00:00
|
|
|
|
property->parse_value = gtk_css_style_property_real_parse_value;
|
2011-12-31 12:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-31 18:28:59 +00:00
|
|
|
|
/**
|
|
|
|
|
* _gtk_css_style_property_get_n_properties:
|
|
|
|
|
*
|
|
|
|
|
* Gets the number of style properties. This number can increase when new
|
|
|
|
|
* theme engines are loaded. Shorthand properties are not included here.
|
|
|
|
|
*
|
|
|
|
|
* Returns: The number of style properties.
|
|
|
|
|
**/
|
|
|
|
|
guint
|
|
|
|
|
_gtk_css_style_property_get_n_properties (void)
|
|
|
|
|
{
|
2012-12-10 13:49:51 +00:00
|
|
|
|
if (G_UNLIKELY (gtk_css_style_property_class == NULL))
|
2012-01-09 21:06:17 +00:00
|
|
|
|
{
|
|
|
|
|
_gtk_style_property_init_properties ();
|
2012-12-10 13:49:51 +00:00
|
|
|
|
g_assert (gtk_css_style_property_class);
|
2012-01-09 21:06:17 +00:00
|
|
|
|
}
|
2011-12-31 18:28:59 +00:00
|
|
|
|
|
2012-12-10 13:49:51 +00:00
|
|
|
|
return gtk_css_style_property_class->style_properties->len;
|
2011-12-31 18:28:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* _gtk_css_style_property_lookup_by_id:
|
|
|
|
|
* @id: the id of the property
|
|
|
|
|
*
|
|
|
|
|
* Gets the style property with the given id. All style properties (but not
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* shorthand properties) are indexable by id so that it’s easy to use arrays
|
2011-12-31 18:28:59 +00:00
|
|
|
|
* when doing style lookups.
|
|
|
|
|
*
|
|
|
|
|
* Returns: (transfer none): The style property with the given id
|
|
|
|
|
**/
|
|
|
|
|
GtkCssStyleProperty *
|
|
|
|
|
_gtk_css_style_property_lookup_by_id (guint id)
|
|
|
|
|
{
|
|
|
|
|
|
2012-12-10 13:49:51 +00:00
|
|
|
|
if (G_UNLIKELY (gtk_css_style_property_class == NULL))
|
2012-01-09 21:06:17 +00:00
|
|
|
|
{
|
|
|
|
|
_gtk_style_property_init_properties ();
|
2012-12-10 13:49:51 +00:00
|
|
|
|
g_assert (gtk_css_style_property_class);
|
2012-01-09 21:06:17 +00:00
|
|
|
|
}
|
2011-12-31 18:28:59 +00:00
|
|
|
|
|
2015-09-08 12:06:17 +00:00
|
|
|
|
gtk_internal_return_val_if_fail (id < gtk_css_style_property_class->style_properties->len, NULL);
|
2012-12-10 13:49:51 +00:00
|
|
|
|
|
|
|
|
|
return g_ptr_array_index (gtk_css_style_property_class->style_properties, id);
|
2011-12-31 18:28:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-31 18:59:16 +00:00
|
|
|
|
/**
|
|
|
|
|
* _gtk_css_style_property_is_inherit:
|
|
|
|
|
* @property: the property
|
|
|
|
|
*
|
2014-02-04 23:53:51 +00:00
|
|
|
|
* Queries if the given @property is inherited. See the
|
|
|
|
|
* [CSS Documentation](http://www.w3.org/TR/css3-cascade/#inheritance)
|
|
|
|
|
* for an explanation of this concept.
|
2011-12-31 18:59:16 +00:00
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if the property is inherited by default.
|
|
|
|
|
**/
|
|
|
|
|
gboolean
|
|
|
|
|
_gtk_css_style_property_is_inherit (GtkCssStyleProperty *property)
|
|
|
|
|
{
|
2015-09-08 12:06:17 +00:00
|
|
|
|
gtk_internal_return_val_if_fail (GTK_IS_CSS_STYLE_PROPERTY (property), FALSE);
|
2011-12-31 18:59:16 +00:00
|
|
|
|
|
|
|
|
|
return property->inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-02 06:53:51 +00:00
|
|
|
|
/**
|
|
|
|
|
* _gtk_css_style_property_is_animated:
|
|
|
|
|
* @property: the property
|
|
|
|
|
*
|
2014-02-04 23:53:51 +00:00
|
|
|
|
* Queries if the given @property can be is animated. See the
|
|
|
|
|
* [CSS Documentation](http://www.w3.org/TR/css3-transitions/#animatable-css)
|
|
|
|
|
* for animatable properties.
|
2012-04-02 06:53:51 +00:00
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if the property can be animated.
|
|
|
|
|
**/
|
|
|
|
|
gboolean
|
|
|
|
|
_gtk_css_style_property_is_animated (GtkCssStyleProperty *property)
|
|
|
|
|
{
|
2015-09-08 12:06:17 +00:00
|
|
|
|
gtk_internal_return_val_if_fail (GTK_IS_CSS_STYLE_PROPERTY (property), FALSE);
|
2012-04-02 06:53:51 +00:00
|
|
|
|
|
|
|
|
|
return property->animated;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-27 03:32:09 +00:00
|
|
|
|
/**
|
|
|
|
|
* _gtk_css_style_property_get_affects:
|
|
|
|
|
* @property: the property
|
|
|
|
|
*
|
|
|
|
|
* Returns all the things this property affects. See @GtkCssAffects for what
|
|
|
|
|
* the flags mean.
|
|
|
|
|
*
|
|
|
|
|
* Returns: The things this property affects.
|
|
|
|
|
**/
|
|
|
|
|
GtkCssAffects
|
|
|
|
|
_gtk_css_style_property_get_affects (GtkCssStyleProperty *property)
|
|
|
|
|
{
|
2015-09-08 12:06:17 +00:00
|
|
|
|
gtk_internal_return_val_if_fail (GTK_IS_CSS_STYLE_PROPERTY (property), 0);
|
2015-01-27 03:32:09 +00:00
|
|
|
|
|
|
|
|
|
return property->affects;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-31 18:28:59 +00:00
|
|
|
|
/**
|
|
|
|
|
* _gtk_css_style_property_get_id:
|
|
|
|
|
* @property: the property
|
|
|
|
|
*
|
|
|
|
|
* Gets the id for the given property. IDs are used to allow using arrays
|
|
|
|
|
* for style lookups.
|
|
|
|
|
*
|
|
|
|
|
* Returns: The id of the property
|
|
|
|
|
**/
|
|
|
|
|
guint
|
|
|
|
|
_gtk_css_style_property_get_id (GtkCssStyleProperty *property)
|
|
|
|
|
{
|
2015-09-08 12:06:17 +00:00
|
|
|
|
gtk_internal_return_val_if_fail (GTK_IS_CSS_STYLE_PROPERTY (property), 0);
|
2011-12-31 18:28:59 +00:00
|
|
|
|
|
|
|
|
|
return property->id;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-31 18:59:16 +00:00
|
|
|
|
/**
|
|
|
|
|
* _gtk_css_style_property_get_initial_value:
|
|
|
|
|
* @property: the property
|
|
|
|
|
*
|
2014-02-04 23:53:51 +00:00
|
|
|
|
* Queries the initial value of the given @property. See the
|
|
|
|
|
* [CSS Documentation](http://www.w3.org/TR/css3-cascade/#intial)
|
|
|
|
|
* for an explanation of this concept.
|
2011-12-31 18:59:16 +00:00
|
|
|
|
*
|
2015-12-28 19:41:33 +00:00
|
|
|
|
* Returns: (transfer none): the initial value. The value will never change.
|
2011-12-31 18:59:16 +00:00
|
|
|
|
**/
|
2012-03-06 13:16:32 +00:00
|
|
|
|
GtkCssValue *
|
2011-12-31 18:45:17 +00:00
|
|
|
|
_gtk_css_style_property_get_initial_value (GtkCssStyleProperty *property)
|
|
|
|
|
{
|
2015-09-08 12:06:17 +00:00
|
|
|
|
gtk_internal_return_val_if_fail (GTK_IS_CSS_STYLE_PROPERTY (property), NULL);
|
2011-12-31 18:45:17 +00:00
|
|
|
|
|
2012-03-06 13:16:32 +00:00
|
|
|
|
return property->initial_value;
|
2011-12-31 18:45:17 +00:00
|
|
|
|
}
|