2012-03-29 00:58:32 +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 "gtkcssimagevalueprivate.h"
|
|
|
|
|
2012-04-02 01:37:25 +00:00
|
|
|
#include "gtkcssimagecrossfadeprivate.h"
|
2012-03-29 00:58:32 +00:00
|
|
|
|
|
|
|
struct _GtkCssValue {
|
|
|
|
GTK_CSS_VALUE_BASE
|
|
|
|
GtkCssImage *image;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_css_value_image_free (GtkCssValue *value)
|
|
|
|
{
|
|
|
|
g_object_unref (value->image);
|
|
|
|
g_slice_free (GtkCssValue, value);
|
|
|
|
}
|
|
|
|
|
2012-07-11 04:56:07 +00:00
|
|
|
static GtkCssValue *
|
2017-10-31 03:31:46 +00:00
|
|
|
gtk_css_value_image_compute (GtkCssValue *value,
|
|
|
|
guint property_id,
|
|
|
|
GtkStyleProvider *provider,
|
|
|
|
GtkCssStyle *style,
|
|
|
|
GtkCssStyle *parent_style)
|
2012-07-11 04:56:07 +00:00
|
|
|
{
|
|
|
|
GtkCssImage *image, *computed;
|
|
|
|
|
|
|
|
image = _gtk_css_image_value_get_image (value);
|
|
|
|
|
|
|
|
if (image == NULL)
|
|
|
|
return _gtk_css_value_ref (value);
|
|
|
|
|
2015-02-14 01:27:39 +00:00
|
|
|
computed = _gtk_css_image_compute (image, property_id, provider, style, parent_style);
|
2012-07-11 04:56:07 +00:00
|
|
|
|
|
|
|
if (computed == image)
|
|
|
|
{
|
|
|
|
g_object_unref (computed);
|
|
|
|
return _gtk_css_value_ref (value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return _gtk_css_image_value_new (computed);
|
|
|
|
}
|
|
|
|
|
2012-03-29 00:58:32 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_css_value_image_equal (const GtkCssValue *value1,
|
|
|
|
const GtkCssValue *value2)
|
|
|
|
{
|
2012-10-11 10:10:20 +00:00
|
|
|
return _gtk_css_image_equal (value1->image, value2->image);
|
2012-03-29 00:58:32 +00:00
|
|
|
}
|
|
|
|
|
2012-03-30 15:47:26 +00:00
|
|
|
static GtkCssValue *
|
|
|
|
gtk_css_value_image_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)
|
|
|
|
{
|
2012-10-02 09:31:36 +00:00
|
|
|
GtkCssImage *transition;
|
2012-04-02 01:37:25 +00:00
|
|
|
|
2012-10-02 09:31:36 +00:00
|
|
|
transition = _gtk_css_image_transition (_gtk_css_image_value_get_image (start),
|
|
|
|
_gtk_css_image_value_get_image (end),
|
|
|
|
property_id,
|
|
|
|
progress);
|
2012-04-02 01:37:25 +00:00
|
|
|
|
2012-10-02 09:31:36 +00:00
|
|
|
return _gtk_css_image_value_new (transition);
|
2012-03-30 15:47:26 +00:00
|
|
|
}
|
|
|
|
|
2018-02-13 06:04:21 +00:00
|
|
|
static gboolean
|
2020-01-24 12:17:09 +00:00
|
|
|
gtk_css_value_image_is_dynamic (const GtkCssValue *value)
|
2018-02-13 06:04:21 +00:00
|
|
|
{
|
|
|
|
GtkCssImage *image = _gtk_css_image_value_get_image (value);
|
|
|
|
|
|
|
|
if (image == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return gtk_css_image_is_dynamic (image);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GtkCssValue *
|
|
|
|
gtk_css_value_image_get_dynamic_value (GtkCssValue *value,
|
|
|
|
gint64 monotonic_time)
|
|
|
|
{
|
|
|
|
GtkCssImage *image, *dynamic;
|
|
|
|
|
|
|
|
image = _gtk_css_image_value_get_image (value);
|
|
|
|
if (image == NULL)
|
|
|
|
return gtk_css_value_ref (value);
|
|
|
|
|
|
|
|
dynamic = gtk_css_image_get_dynamic_image (image, monotonic_time);
|
|
|
|
if (dynamic == image)
|
|
|
|
{
|
|
|
|
g_object_unref (dynamic);
|
|
|
|
return gtk_css_value_ref (value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return _gtk_css_image_value_new (dynamic);
|
|
|
|
}
|
|
|
|
|
2012-03-29 00:58:32 +00:00
|
|
|
static void
|
|
|
|
gtk_css_value_image_print (const GtkCssValue *value,
|
|
|
|
GString *string)
|
|
|
|
{
|
|
|
|
if (value->image)
|
|
|
|
_gtk_css_image_print (value->image, string);
|
|
|
|
else
|
|
|
|
g_string_append (string, "none");
|
|
|
|
}
|
|
|
|
|
|
|
|
static const GtkCssValueClass GTK_CSS_VALUE_IMAGE = {
|
2020-01-09 10:57:00 +00:00
|
|
|
"GtkCssImageValue",
|
2012-03-29 00:58:32 +00:00
|
|
|
gtk_css_value_image_free,
|
2012-07-11 04:56:07 +00:00
|
|
|
gtk_css_value_image_compute,
|
2012-03-29 00:58:32 +00:00
|
|
|
gtk_css_value_image_equal,
|
2012-03-30 15:47:26 +00:00
|
|
|
gtk_css_value_image_transition,
|
2018-02-13 06:04:21 +00:00
|
|
|
gtk_css_value_image_is_dynamic,
|
|
|
|
gtk_css_value_image_get_dynamic_value,
|
2012-03-29 00:58:32 +00:00
|
|
|
gtk_css_value_image_print
|
|
|
|
};
|
|
|
|
|
|
|
|
GtkCssValue *
|
|
|
|
_gtk_css_image_value_new (GtkCssImage *image)
|
|
|
|
{
|
2020-04-18 19:24:13 +00:00
|
|
|
static GtkCssValue image_none_singleton = { >K_CSS_VALUE_IMAGE, 1, TRUE, NULL };
|
2012-03-29 00:58:32 +00:00
|
|
|
GtkCssValue *value;
|
|
|
|
|
|
|
|
if (image == NULL)
|
2020-04-18 19:24:13 +00:00
|
|
|
return _gtk_css_value_ref (&image_none_singleton);
|
2012-03-29 00:58:32 +00:00
|
|
|
|
|
|
|
value = _gtk_css_value_new (GtkCssValue, >K_CSS_VALUE_IMAGE);
|
|
|
|
value->image = image;
|
2020-01-11 13:38:49 +00:00
|
|
|
value->is_computed = gtk_css_image_is_computed (image);
|
2012-03-29 00:58:32 +00:00
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkCssImage *
|
|
|
|
_gtk_css_image_value_get_image (const GtkCssValue *value)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (value->class == >K_CSS_VALUE_IMAGE, NULL);
|
|
|
|
|
|
|
|
return value->image;
|
|
|
|
}
|
|
|
|
|