2014-10-22 21:41:50 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2012 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
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Authors: Benjamin Otte <otte@gnome.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "gtkprivate.h"
|
|
|
|
#include "gtkcssstyleprivate.h"
|
|
|
|
|
|
|
|
#include "gtkcssanimationprivate.h"
|
|
|
|
#include "gtkcssarrayvalueprivate.h"
|
|
|
|
#include "gtkcssenumvalueprivate.h"
|
|
|
|
#include "gtkcssinheritvalueprivate.h"
|
|
|
|
#include "gtkcssinitialvalueprivate.h"
|
|
|
|
#include "gtkcssnumbervalueprivate.h"
|
|
|
|
#include "gtkcsssectionprivate.h"
|
|
|
|
#include "gtkcssshorthandpropertyprivate.h"
|
|
|
|
#include "gtkcssstringvalueprivate.h"
|
|
|
|
#include "gtkcssstylepropertyprivate.h"
|
|
|
|
#include "gtkcsstransitionprivate.h"
|
|
|
|
#include "gtkstyleanimationprivate.h"
|
|
|
|
#include "gtkstylepropertyprivate.h"
|
|
|
|
#include "gtkstyleproviderprivate.h"
|
|
|
|
|
2014-10-23 02:10:03 +00:00
|
|
|
G_DEFINE_ABSTRACT_TYPE (GtkCssStyle, gtk_css_style, G_TYPE_OBJECT)
|
2014-10-22 21:41:50 +00:00
|
|
|
|
2014-10-23 02:10:03 +00:00
|
|
|
static GtkCssSection *
|
|
|
|
gtk_css_style_real_get_section (GtkCssStyle *style,
|
|
|
|
guint id)
|
2014-10-22 21:41:50 +00:00
|
|
|
{
|
2014-10-23 02:10:03 +00:00
|
|
|
return NULL;
|
2014-10-22 21:41:50 +00:00
|
|
|
}
|
|
|
|
|
2015-02-27 17:41:13 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_css_style_real_is_static (GtkCssStyle *style)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2014-10-22 21:41:50 +00:00
|
|
|
static void
|
|
|
|
gtk_css_style_class_init (GtkCssStyleClass *klass)
|
|
|
|
{
|
2014-10-23 02:10:03 +00:00
|
|
|
klass->get_section = gtk_css_style_real_get_section;
|
2015-02-27 17:41:13 +00:00
|
|
|
klass->is_static = gtk_css_style_real_is_static;
|
2014-10-22 21:41:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_css_style_init (GtkCssStyle *style)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkCssValue *
|
|
|
|
gtk_css_style_get_value (GtkCssStyle *style,
|
|
|
|
guint id)
|
|
|
|
{
|
|
|
|
gtk_internal_return_val_if_fail (GTK_IS_CSS_STYLE (style), NULL);
|
|
|
|
|
2014-10-23 02:10:03 +00:00
|
|
|
return GTK_CSS_STYLE_GET_CLASS (style)->get_value (style, id);
|
2014-10-22 21:41:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkCssSection *
|
|
|
|
gtk_css_style_get_section (GtkCssStyle *style,
|
|
|
|
guint id)
|
|
|
|
{
|
|
|
|
gtk_internal_return_val_if_fail (GTK_IS_CSS_STYLE (style), NULL);
|
|
|
|
|
2014-10-23 02:10:03 +00:00
|
|
|
return GTK_CSS_STYLE_GET_CLASS (style)->get_section (style, id);
|
2014-10-22 21:41:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkBitmask *
|
2015-09-28 05:43:03 +00:00
|
|
|
gtk_css_style_add_difference (GtkBitmask *accumulated,
|
|
|
|
GtkCssStyle *style,
|
2014-10-22 21:41:50 +00:00
|
|
|
GtkCssStyle *other)
|
|
|
|
{
|
2015-09-28 05:43:03 +00:00
|
|
|
gint len, i;
|
2014-10-22 21:41:50 +00:00
|
|
|
|
2015-02-22 17:04:43 +00:00
|
|
|
if (style == other)
|
2015-09-28 05:43:03 +00:00
|
|
|
return accumulated;
|
2015-02-22 17:04:43 +00:00
|
|
|
|
2014-10-23 02:10:03 +00:00
|
|
|
len = _gtk_css_style_property_get_n_properties ();
|
2014-10-22 21:41:50 +00:00
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
{
|
2015-09-28 05:43:03 +00:00
|
|
|
if (_gtk_bitmask_get (accumulated, i))
|
|
|
|
continue;
|
|
|
|
|
2014-10-23 02:10:03 +00:00
|
|
|
if (!_gtk_css_value_equal (gtk_css_style_get_value (style, i),
|
|
|
|
gtk_css_style_get_value (other, i)))
|
2015-09-28 05:43:03 +00:00
|
|
|
accumulated = _gtk_bitmask_set (accumulated, i, TRUE);
|
2014-10-22 21:41:50 +00:00
|
|
|
}
|
|
|
|
|
2015-09-28 05:43:03 +00:00
|
|
|
return accumulated;
|
2014-10-22 21:41:50 +00:00
|
|
|
}
|
|
|
|
|
2015-02-27 17:41:13 +00:00
|
|
|
gboolean
|
|
|
|
gtk_css_style_is_static (GtkCssStyle *style)
|
|
|
|
{
|
|
|
|
gtk_internal_return_val_if_fail (GTK_IS_CSS_STYLE (style), TRUE);
|
|
|
|
|
|
|
|
return GTK_CSS_STYLE_GET_CLASS (style)->is_static (style);
|
|
|
|
}
|
|
|
|
|
2016-01-03 22:05:16 +00:00
|
|
|
/*
|
|
|
|
* gtk_css_style_print:
|
|
|
|
* @style: a #GtkCssStyle
|
|
|
|
* @string: the #GString to print to
|
|
|
|
* @indent: level of indentation to use
|
|
|
|
* @skip_initial: %TRUE to skip properties that have their initial value
|
|
|
|
*
|
|
|
|
* Print the @style to @string, in CSS format. Every property is printed
|
|
|
|
* on a line by itself, indented by @indent spaces. If @skip_initial is
|
|
|
|
* %TRUE, properties are only printed if their value in @style is different
|
|
|
|
* from the initial value of the property.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE is any properties have been printed
|
|
|
|
*/
|
|
|
|
gboolean
|
2014-10-22 21:41:50 +00:00
|
|
|
gtk_css_style_print (GtkCssStyle *style,
|
2016-01-03 20:34:08 +00:00
|
|
|
GString *string,
|
|
|
|
guint indent,
|
|
|
|
gboolean skip_initial)
|
2014-10-22 21:41:50 +00:00
|
|
|
{
|
|
|
|
guint i;
|
2016-01-03 22:05:16 +00:00
|
|
|
gboolean retval = FALSE;
|
2014-10-22 21:41:50 +00:00
|
|
|
|
2016-01-04 01:20:06 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_CSS_STYLE (style), FALSE);
|
|
|
|
g_return_val_if_fail (string != NULL, FALSE);
|
2014-10-22 21:41:50 +00:00
|
|
|
|
|
|
|
for (i = 0; i < _gtk_css_style_property_get_n_properties (); i++)
|
|
|
|
{
|
2016-01-03 20:34:08 +00:00
|
|
|
GtkCssSection *section;
|
|
|
|
GtkCssStyleProperty *prop;
|
|
|
|
GtkCssValue *value;
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
section = gtk_css_style_get_section (style, i);
|
|
|
|
if (!section && skip_initial)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
prop = _gtk_css_style_property_lookup_by_id (i);
|
|
|
|
name = _gtk_style_property_get_name (GTK_STYLE_PROPERTY (prop));
|
|
|
|
value = gtk_css_style_get_value (style, i);
|
|
|
|
|
|
|
|
g_string_append_printf (string, "%*s%s: ", indent, "", name);
|
|
|
|
_gtk_css_value_print (value, string);
|
|
|
|
g_string_append_c (string, ';');
|
|
|
|
|
2014-10-22 21:41:50 +00:00
|
|
|
if (section)
|
|
|
|
{
|
|
|
|
g_string_append (string, " /* ");
|
|
|
|
_gtk_css_section_print (section, string);
|
|
|
|
g_string_append (string, " */");
|
|
|
|
}
|
2016-01-03 20:34:08 +00:00
|
|
|
|
|
|
|
g_string_append_c (string, '\n');
|
2016-01-03 22:05:16 +00:00
|
|
|
|
|
|
|
retval = TRUE;
|
2014-10-22 21:41:50 +00:00
|
|
|
}
|
2016-01-03 22:05:16 +00:00
|
|
|
|
|
|
|
return retval;
|
2014-10-22 21:41:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
gtk_css_style_to_string (GtkCssStyle *style)
|
|
|
|
{
|
|
|
|
GString *string;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_CSS_STYLE (style), NULL);
|
|
|
|
|
|
|
|
string = g_string_new ("");
|
|
|
|
|
2016-01-03 20:34:08 +00:00
|
|
|
gtk_css_style_print (style, string, 0, FALSE);
|
2014-10-22 21:41:50 +00:00
|
|
|
|
|
|
|
return g_string_free (string, FALSE);
|
|
|
|
}
|
|
|
|
|