2012-03-26 15:24:02 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 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 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 "gtkcssinheritvalueprivate.h"
|
|
|
|
|
2012-11-25 14:35:27 +00:00
|
|
|
#include "gtkcssinitialvalueprivate.h"
|
2012-07-17 12:01:52 +00:00
|
|
|
#include "gtkstylecontextprivate.h"
|
|
|
|
|
2012-03-26 15:24:02 +00:00
|
|
|
struct _GtkCssValue {
|
|
|
|
GTK_CSS_VALUE_BASE
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_css_value_inherit_free (GtkCssValue *value)
|
|
|
|
{
|
|
|
|
/* Can only happen if the unique value gets unreffed too often */
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
2012-07-11 04:56:07 +00:00
|
|
|
static GtkCssValue *
|
2017-10-31 03:31:46 +00:00
|
|
|
gtk_css_value_inherit_compute (GtkCssValue *value,
|
|
|
|
guint property_id,
|
|
|
|
GtkStyleProvider *provider,
|
|
|
|
GtkCssStyle *style,
|
|
|
|
GtkCssStyle *parent_style)
|
2012-07-11 04:56:07 +00:00
|
|
|
{
|
2015-01-31 10:56:15 +00:00
|
|
|
if (parent_style)
|
2012-08-24 23:59:13 +00:00
|
|
|
{
|
2015-01-31 10:56:15 +00:00
|
|
|
return _gtk_css_value_ref (gtk_css_style_get_value (parent_style, property_id));
|
2012-08-24 23:59:13 +00:00
|
|
|
}
|
2012-07-17 12:01:52 +00:00
|
|
|
else
|
2012-08-24 23:59:13 +00:00
|
|
|
{
|
2012-11-25 14:35:27 +00:00
|
|
|
return _gtk_css_value_compute (_gtk_css_initial_value_get (),
|
2012-08-24 23:59:13 +00:00
|
|
|
property_id,
|
2012-09-28 16:02:46 +00:00
|
|
|
provider,
|
2015-01-31 10:56:15 +00:00
|
|
|
style,
|
2015-02-14 01:27:39 +00:00
|
|
|
parent_style);
|
2012-08-24 23:59:13 +00:00
|
|
|
}
|
2012-07-11 04:56:07 +00:00
|
|
|
}
|
|
|
|
|
cssvalue: Add _gtk_css_value_equal()
For now, we return FALSE for all default css values, so this is not very
useful.
I also think of this as an optimization equal, not a guaranteed equal,
because we don't even have a notion of what "equal" means.
For example, for background-repeat, "repeat, repeat" and "repeat"
are functionally equivalent. But the cssvalue has no idea that it's used
for background-repeat.
As a more complicated example, "repeat, no-repeat" and "repeat" are
equal to what one sees as long as there's only one image listed
background-image-source. But once you start transition'ing to an image
with 2 sources, it's different...
2012-03-26 23:43:12 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_css_value_inherit_equal (const GtkCssValue *value1,
|
|
|
|
const GtkCssValue *value2)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-03-30 15:47:26 +00:00
|
|
|
static GtkCssValue *
|
|
|
|
gtk_css_value_inherit_transition (GtkCssValue *start,
|
|
|
|
GtkCssValue *end,
|
2012-08-30 13:51:29 +00:00
|
|
|
guint property_id,
|
2012-03-30 15:47:26 +00:00
|
|
|
double progress)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-03-26 15:24:02 +00:00
|
|
|
static void
|
|
|
|
gtk_css_value_inherit_print (const GtkCssValue *value,
|
|
|
|
GString *string)
|
|
|
|
{
|
|
|
|
g_string_append (string, "inherit");
|
|
|
|
}
|
|
|
|
|
|
|
|
static const GtkCssValueClass GTK_CSS_VALUE_INHERIT = {
|
2020-01-09 10:57:00 +00:00
|
|
|
"GtkCssInheritValue",
|
2012-03-26 15:24:02 +00:00
|
|
|
gtk_css_value_inherit_free,
|
2012-07-11 04:56:07 +00:00
|
|
|
gtk_css_value_inherit_compute,
|
cssvalue: Add _gtk_css_value_equal()
For now, we return FALSE for all default css values, so this is not very
useful.
I also think of this as an optimization equal, not a guaranteed equal,
because we don't even have a notion of what "equal" means.
For example, for background-repeat, "repeat, repeat" and "repeat"
are functionally equivalent. But the cssvalue has no idea that it's used
for background-repeat.
As a more complicated example, "repeat, no-repeat" and "repeat" are
equal to what one sees as long as there's only one image listed
background-image-source. But once you start transition'ing to an image
with 2 sources, it's different...
2012-03-26 23:43:12 +00:00
|
|
|
gtk_css_value_inherit_equal,
|
2012-03-30 15:47:26 +00:00
|
|
|
gtk_css_value_inherit_transition,
|
2018-02-13 04:55:33 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2012-03-26 15:24:02 +00:00
|
|
|
gtk_css_value_inherit_print
|
|
|
|
};
|
|
|
|
|
|
|
|
static GtkCssValue inherit = { >K_CSS_VALUE_INHERIT, 1 };
|
|
|
|
|
|
|
|
GtkCssValue *
|
|
|
|
_gtk_css_inherit_value_new (void)
|
|
|
|
{
|
|
|
|
return _gtk_css_value_ref (&inherit);
|
|
|
|
}
|
2014-05-11 01:08:40 +00:00
|
|
|
|
|
|
|
GtkCssValue *
|
|
|
|
_gtk_css_inherit_value_get (void)
|
|
|
|
{
|
|
|
|
return &inherit;
|
|
|
|
}
|