2012-01-16 17:28:58 +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
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2012-01-16 17:28:58 +00:00
|
|
|
*
|
|
|
|
* Authors: Benjamin Otte <otte@gnome.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "gtkcssimagelinearprivate.h"
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
2012-11-08 16:25:26 +00:00
|
|
|
#include "gtkcsscolorvalueprivate.h"
|
2012-04-04 16:23:49 +00:00
|
|
|
#include "gtkcssnumbervalueprivate.h"
|
|
|
|
#include "gtkcssrgbavalueprivate.h"
|
2012-01-16 17:28:58 +00:00
|
|
|
#include "gtkcssprovider.h"
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GtkCssImageLinear, _gtk_css_image_linear, GTK_TYPE_CSS_IMAGE)
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_css_image_linear_get_start_end (GtkCssImageLinear *linear,
|
|
|
|
double length,
|
|
|
|
double *start,
|
|
|
|
double *end)
|
|
|
|
{
|
|
|
|
GtkCssImageLinearColorStop *stop;
|
|
|
|
double pos;
|
|
|
|
guint i;
|
|
|
|
|
2012-10-06 19:54:10 +00:00
|
|
|
if (linear->repeating)
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
2012-10-06 19:54:10 +00:00
|
|
|
stop = &g_array_index (linear->stops, GtkCssImageLinearColorStop, 0);
|
2012-04-04 16:23:49 +00:00
|
|
|
if (stop->offset == NULL)
|
2012-10-06 19:54:10 +00:00
|
|
|
*start = 0;
|
|
|
|
else
|
|
|
|
*start = _gtk_css_number_value_get (stop->offset, length) / length;
|
|
|
|
|
|
|
|
*end = *start;
|
|
|
|
|
|
|
|
for (i = 0; i < linear->stops->len; i++)
|
|
|
|
{
|
|
|
|
stop = &g_array_index (linear->stops, GtkCssImageLinearColorStop, i);
|
|
|
|
|
|
|
|
if (stop->offset == NULL)
|
|
|
|
continue;
|
2012-01-16 17:28:58 +00:00
|
|
|
|
2012-10-06 19:54:10 +00:00
|
|
|
pos = _gtk_css_number_value_get (stop->offset, length) / length;
|
2012-01-16 17:28:58 +00:00
|
|
|
|
2012-10-06 19:54:10 +00:00
|
|
|
*end = MAX (pos, *end);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stop->offset == NULL)
|
|
|
|
*end = MAX (*end, 1.0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*start = 0;
|
|
|
|
*end = 1;
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_css_image_linear_compute_start_point (double angle_in_degrees,
|
|
|
|
double width,
|
|
|
|
double height,
|
|
|
|
double *x,
|
|
|
|
double *y)
|
|
|
|
{
|
|
|
|
double angle, c, slope, perpendicular;
|
|
|
|
|
|
|
|
angle = fmod (angle_in_degrees, 360);
|
|
|
|
if (angle < 0)
|
|
|
|
angle += 360;
|
|
|
|
|
|
|
|
if (angle == 0)
|
|
|
|
{
|
|
|
|
*x = 0;
|
|
|
|
*y = -height;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (angle == 90)
|
|
|
|
{
|
|
|
|
*x = width;
|
|
|
|
*y = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (angle == 180)
|
|
|
|
{
|
|
|
|
*x = 0;
|
|
|
|
*y = height;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (angle == 270)
|
|
|
|
{
|
|
|
|
*x = -width;
|
|
|
|
*y = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The tan() is confusing because the angle is clockwise
|
|
|
|
* from 'to top' */
|
|
|
|
perpendicular = tan (angle * G_PI / 180);
|
|
|
|
slope = -1 / perpendicular;
|
|
|
|
|
|
|
|
if (angle > 180)
|
|
|
|
width = - width;
|
|
|
|
if (angle < 90 || angle > 270)
|
|
|
|
height = - height;
|
|
|
|
|
|
|
|
/* Compute c (of y = mx + c) of perpendicular */
|
|
|
|
c = height - perpendicular * width;
|
|
|
|
|
|
|
|
*x = c / (slope - perpendicular);
|
|
|
|
*y = perpendicular * *x + c;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-15 04:42:31 +00:00
|
|
|
gtk_css_image_linear_snapshot (GtkCssImage *image,
|
|
|
|
GtkSnapshot *snapshot,
|
|
|
|
double width,
|
|
|
|
double height)
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
|
|
|
GtkCssImageLinear *linear = GTK_CSS_IMAGE_LINEAR (image);
|
2016-12-21 03:48:56 +00:00
|
|
|
GskColorStop *stops;
|
2016-12-15 04:42:31 +00:00
|
|
|
GskRenderNode *node;
|
2017-01-11 15:14:03 +00:00
|
|
|
int off_x, off_y; /* snapshot offset */
|
2015-01-08 18:30:19 +00:00
|
|
|
double angle; /* actual angle of the gradiant line in degrees */
|
2012-01-16 17:28:58 +00:00
|
|
|
double x, y; /* coordinates of start point */
|
|
|
|
double length; /* distance in pixels for 100% */
|
|
|
|
double start, end; /* position of first/last point on gradient line - with gradient line being [0, 1] */
|
|
|
|
double offset;
|
|
|
|
int i, last;
|
2016-12-15 04:42:31 +00:00
|
|
|
char *name;
|
2012-01-16 17:28:58 +00:00
|
|
|
|
2016-02-12 03:09:44 +00:00
|
|
|
if (linear->side)
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
2015-01-08 18:30:19 +00:00
|
|
|
/* special casing the regular cases here so we don't get rounding errors */
|
2016-02-12 03:09:44 +00:00
|
|
|
switch (linear->side)
|
2015-01-08 18:30:19 +00:00
|
|
|
{
|
|
|
|
case 1 << GTK_CSS_RIGHT:
|
|
|
|
angle = 90;
|
|
|
|
break;
|
|
|
|
case 1 << GTK_CSS_LEFT:
|
|
|
|
angle = 270;
|
|
|
|
break;
|
|
|
|
case 1 << GTK_CSS_TOP:
|
|
|
|
angle = 0;
|
|
|
|
break;
|
|
|
|
case 1 << GTK_CSS_BOTTOM:
|
|
|
|
angle = 180;
|
|
|
|
break;
|
|
|
|
default:
|
2016-02-12 03:09:44 +00:00
|
|
|
angle = atan2 (linear->side & 1 << GTK_CSS_TOP ? -width : width,
|
|
|
|
linear->side & 1 << GTK_CSS_LEFT ? -height : height);
|
2015-01-08 18:30:19 +00:00
|
|
|
angle = 180 * angle / G_PI + 90;
|
|
|
|
break;
|
|
|
|
}
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-01-08 18:30:19 +00:00
|
|
|
angle = _gtk_css_number_value_get (linear->angle, 100);
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
|
2015-01-08 18:30:19 +00:00
|
|
|
gtk_css_image_linear_compute_start_point (angle,
|
|
|
|
width, height,
|
|
|
|
&x, &y);
|
|
|
|
|
2012-01-16 17:28:58 +00:00
|
|
|
length = sqrt (x * x + y * y);
|
|
|
|
gtk_css_image_linear_get_start_end (linear, length, &start, &end);
|
|
|
|
|
2016-12-26 16:04:56 +00:00
|
|
|
if (start == end)
|
|
|
|
{
|
|
|
|
/* repeating gradients with all color stops sharing the same offset
|
|
|
|
* get the color of the last color stop */
|
|
|
|
GtkCssImageLinearColorStop *stop = &g_array_index (linear->stops, GtkCssImageLinearColorStop, linear->stops->len - 1);
|
|
|
|
|
|
|
|
gtk_snapshot_append_color_node (snapshot,
|
|
|
|
_gtk_css_rgba_value_get_rgba (stop->color),
|
|
|
|
&GRAPHENE_RECT_INIT (0, 0, width, height),
|
|
|
|
"RepeatingLinearGradient<degenerate>");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-01-16 17:28:58 +00:00
|
|
|
offset = start;
|
|
|
|
last = -1;
|
2016-12-21 03:48:56 +00:00
|
|
|
stops = g_newa (GskColorStop, linear->stops->len);
|
|
|
|
|
2012-01-16 17:28:58 +00:00
|
|
|
for (i = 0; i < linear->stops->len; i++)
|
|
|
|
{
|
|
|
|
GtkCssImageLinearColorStop *stop;
|
|
|
|
double pos, step;
|
|
|
|
|
|
|
|
stop = &g_array_index (linear->stops, GtkCssImageLinearColorStop, i);
|
|
|
|
|
2012-04-04 16:23:49 +00:00
|
|
|
if (stop->offset == NULL)
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
|
|
|
if (i == 0)
|
|
|
|
pos = 0.0;
|
|
|
|
else if (i + 1 == linear->stops->len)
|
|
|
|
pos = 1.0;
|
|
|
|
else
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
2012-04-04 16:23:49 +00:00
|
|
|
pos = _gtk_css_number_value_get (stop->offset, length) / length;
|
2012-01-16 17:28:58 +00:00
|
|
|
|
|
|
|
pos = MAX (pos, offset);
|
|
|
|
step = (pos - offset) / (i - last);
|
|
|
|
for (last = last + 1; last <= i; last++)
|
|
|
|
{
|
|
|
|
stop = &g_array_index (linear->stops, GtkCssImageLinearColorStop, last);
|
|
|
|
|
|
|
|
offset += step;
|
|
|
|
|
2016-12-15 04:42:31 +00:00
|
|
|
stops[last].offset = (offset - start) / (end - start);
|
|
|
|
stops[last].color = *_gtk_css_rgba_value_get_rgba (stop->color);
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
offset = pos;
|
|
|
|
last = i;
|
|
|
|
}
|
|
|
|
|
2016-12-15 04:42:31 +00:00
|
|
|
gtk_snapshot_get_offset (snapshot, &off_x, &off_y);
|
|
|
|
|
|
|
|
if (linear->repeating)
|
|
|
|
{
|
|
|
|
node = gsk_repeating_linear_gradient_node_new (
|
|
|
|
&GRAPHENE_RECT_INIT (off_x, off_y, width, height),
|
|
|
|
&GRAPHENE_POINT_INIT (off_x + width / 2 + x * (start - 0.5), off_y + height / 2 + y * (start - 0.5)),
|
|
|
|
&GRAPHENE_POINT_INIT (off_x + width / 2 + x * (end - 0.5), off_y + height / 2 + y * (end - 0.5)),
|
|
|
|
stops,
|
|
|
|
linear->stops->len);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
node = gsk_linear_gradient_node_new (
|
|
|
|
&GRAPHENE_RECT_INIT (off_x, off_y, width, height),
|
|
|
|
&GRAPHENE_POINT_INIT (off_x + width / 2 + x * (start - 0.5), off_y + height / 2 + y * (start - 0.5)),
|
|
|
|
&GRAPHENE_POINT_INIT (off_x + width / 2 + x * (end - 0.5), off_y + height / 2 + y * (end - 0.5)),
|
|
|
|
stops,
|
|
|
|
linear->stops->len);
|
|
|
|
}
|
2016-12-21 03:48:56 +00:00
|
|
|
|
2017-01-11 09:08:58 +00:00
|
|
|
if (snapshot->record_names)
|
|
|
|
{
|
|
|
|
name = g_strdup_printf ("%sLinearGradient<%ustops>", linear->repeating ? "Repeating" : "", linear->stops->len);
|
|
|
|
gsk_render_node_set_name (node, name);
|
|
|
|
g_free (name);
|
|
|
|
}
|
2016-12-15 04:42:31 +00:00
|
|
|
|
|
|
|
gtk_snapshot_append_node (snapshot, node);
|
2012-01-16 17:28:58 +00:00
|
|
|
|
2016-12-15 04:42:31 +00:00
|
|
|
gsk_render_node_unref (node);
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gtk_css_image_linear_parse (GtkCssImage *image,
|
2012-04-18 19:44:08 +00:00
|
|
|
GtkCssParser *parser)
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
|
|
|
GtkCssImageLinear *linear = GTK_CSS_IMAGE_LINEAR (image);
|
|
|
|
guint i;
|
|
|
|
|
2012-01-17 10:44:07 +00:00
|
|
|
if (_gtk_css_parser_try (parser, "repeating-linear-gradient(", TRUE))
|
|
|
|
linear->repeating = TRUE;
|
|
|
|
else if (_gtk_css_parser_try (parser, "linear-gradient(", TRUE))
|
|
|
|
linear->repeating = FALSE;
|
|
|
|
else
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
|
|
|
_gtk_css_parser_error (parser, "Not a linear gradient");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_gtk_css_parser_try (parser, "to", TRUE))
|
|
|
|
{
|
|
|
|
for (i = 0; i < 2; i++)
|
|
|
|
{
|
|
|
|
if (_gtk_css_parser_try (parser, "left", TRUE))
|
|
|
|
{
|
2016-02-12 03:09:44 +00:00
|
|
|
if (linear->side & ((1 << GTK_CSS_LEFT) | (1 << GTK_CSS_RIGHT)))
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
2015-09-20 06:32:48 +00:00
|
|
|
_gtk_css_parser_error (parser, "Expected 'top', 'bottom' or comma");
|
2012-01-16 17:28:58 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2016-02-12 03:09:44 +00:00
|
|
|
linear->side |= (1 << GTK_CSS_LEFT);
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
else if (_gtk_css_parser_try (parser, "right", TRUE))
|
|
|
|
{
|
2016-02-12 03:09:44 +00:00
|
|
|
if (linear->side & ((1 << GTK_CSS_LEFT) | (1 << GTK_CSS_RIGHT)))
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
2015-09-20 06:32:48 +00:00
|
|
|
_gtk_css_parser_error (parser, "Expected 'top', 'bottom' or comma");
|
2012-01-16 17:28:58 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2016-02-12 03:09:44 +00:00
|
|
|
linear->side |= (1 << GTK_CSS_RIGHT);
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
else if (_gtk_css_parser_try (parser, "top", TRUE))
|
|
|
|
{
|
2016-02-12 03:09:44 +00:00
|
|
|
if (linear->side & ((1 << GTK_CSS_TOP) | (1 << GTK_CSS_BOTTOM)))
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
2015-09-20 06:32:48 +00:00
|
|
|
_gtk_css_parser_error (parser, "Expected 'left', 'right' or comma");
|
2012-01-16 17:28:58 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2016-02-12 03:09:44 +00:00
|
|
|
linear->side |= (1 << GTK_CSS_TOP);
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
else if (_gtk_css_parser_try (parser, "bottom", TRUE))
|
|
|
|
{
|
2016-02-12 03:09:44 +00:00
|
|
|
if (linear->side & ((1 << GTK_CSS_TOP) | (1 << GTK_CSS_BOTTOM)))
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
2015-09-20 06:32:48 +00:00
|
|
|
_gtk_css_parser_error (parser, "Expected 'left', 'right' or comma");
|
2012-01-16 17:28:58 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2016-02-12 03:09:44 +00:00
|
|
|
linear->side |= (1 << GTK_CSS_BOTTOM);
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-02-12 03:09:44 +00:00
|
|
|
if (linear->side == 0)
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
|
|
|
_gtk_css_parser_error (parser, "Expected side that gradient should go to");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_gtk_css_parser_try (parser, ",", TRUE))
|
|
|
|
{
|
|
|
|
_gtk_css_parser_error (parser, "Expected a comma");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
2016-02-12 05:45:06 +00:00
|
|
|
else if (gtk_css_number_value_can_parse (parser))
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
2012-04-04 16:23:49 +00:00
|
|
|
linear->angle = _gtk_css_number_value_parse (parser, GTK_CSS_PARSE_ANGLE);
|
|
|
|
if (linear->angle == NULL)
|
2012-01-16 17:28:58 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!_gtk_css_parser_try (parser, ",", TRUE))
|
|
|
|
{
|
|
|
|
_gtk_css_parser_error (parser, "Expected a comma");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2016-02-12 03:09:44 +00:00
|
|
|
linear->side = 1 << GTK_CSS_BOTTOM;
|
2012-01-16 17:28:58 +00:00
|
|
|
|
|
|
|
do {
|
|
|
|
GtkCssImageLinearColorStop stop;
|
|
|
|
|
2012-11-08 16:25:26 +00:00
|
|
|
stop.color = _gtk_css_color_value_parse (parser);
|
2012-04-07 04:18:03 +00:00
|
|
|
if (stop.color == NULL)
|
2012-01-16 17:28:58 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2016-02-12 05:45:06 +00:00
|
|
|
if (gtk_css_number_value_can_parse (parser))
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
2012-04-04 16:23:49 +00:00
|
|
|
stop.offset = _gtk_css_number_value_parse (parser,
|
|
|
|
GTK_CSS_PARSE_PERCENT
|
|
|
|
| GTK_CSS_PARSE_LENGTH);
|
|
|
|
if (stop.offset == NULL)
|
|
|
|
{
|
2012-04-07 04:18:03 +00:00
|
|
|
_gtk_css_value_unref (stop.color);
|
2012-04-04 16:23:49 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-04 16:23:49 +00:00
|
|
|
stop.offset = NULL;
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_array_append_val (linear->stops, stop);
|
|
|
|
|
|
|
|
} while (_gtk_css_parser_try (parser, ",", TRUE));
|
|
|
|
|
2016-04-18 18:25:11 +00:00
|
|
|
if (linear->stops->len < 2)
|
|
|
|
{
|
|
|
|
_gtk_css_parser_error_full (parser,
|
|
|
|
GTK_CSS_PROVIDER_ERROR_DEPRECATED,
|
|
|
|
"Using one color stop with %s() is deprecated.",
|
|
|
|
linear->repeating ? "repeating-linear-gradient" : "linear-gradient");
|
|
|
|
}
|
|
|
|
|
2012-01-16 17:28:58 +00:00
|
|
|
if (!_gtk_css_parser_try (parser, ")", TRUE))
|
|
|
|
{
|
|
|
|
_gtk_css_parser_error (parser, "Missing closing bracket at end of linear gradient");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_css_image_linear_print (GtkCssImage *image,
|
|
|
|
GString *string)
|
|
|
|
{
|
|
|
|
GtkCssImageLinear *linear = GTK_CSS_IMAGE_LINEAR (image);
|
|
|
|
guint i;
|
|
|
|
|
2012-01-17 10:44:07 +00:00
|
|
|
if (linear->repeating)
|
|
|
|
g_string_append (string, "repeating-linear-gradient(");
|
|
|
|
else
|
|
|
|
g_string_append (string, "linear-gradient(");
|
|
|
|
|
2016-02-12 03:09:44 +00:00
|
|
|
if (linear->side)
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
2016-02-12 03:09:44 +00:00
|
|
|
if (linear->side != (1 << GTK_CSS_BOTTOM))
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
|
|
|
g_string_append (string, "to");
|
|
|
|
|
2016-02-12 03:09:44 +00:00
|
|
|
if (linear->side & (1 << GTK_CSS_TOP))
|
2012-01-16 17:28:58 +00:00
|
|
|
g_string_append (string, " top");
|
2016-02-12 03:09:44 +00:00
|
|
|
else if (linear->side & (1 << GTK_CSS_BOTTOM))
|
2012-01-16 17:28:58 +00:00
|
|
|
g_string_append (string, " bottom");
|
|
|
|
|
2016-02-12 03:09:44 +00:00
|
|
|
if (linear->side & (1 << GTK_CSS_LEFT))
|
2012-01-16 17:28:58 +00:00
|
|
|
g_string_append (string, " left");
|
2016-02-12 03:09:44 +00:00
|
|
|
else if (linear->side & (1 << GTK_CSS_RIGHT))
|
2012-01-16 17:28:58 +00:00
|
|
|
g_string_append (string, " right");
|
|
|
|
|
|
|
|
g_string_append (string, ", ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-04 16:23:49 +00:00
|
|
|
_gtk_css_value_print (linear->angle, string);
|
2012-01-16 17:28:58 +00:00
|
|
|
g_string_append (string, ", ");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < linear->stops->len; i++)
|
|
|
|
{
|
|
|
|
GtkCssImageLinearColorStop *stop;
|
|
|
|
|
|
|
|
if (i > 0)
|
|
|
|
g_string_append (string, ", ");
|
|
|
|
|
|
|
|
stop = &g_array_index (linear->stops, GtkCssImageLinearColorStop, i);
|
|
|
|
|
2012-04-04 16:23:49 +00:00
|
|
|
_gtk_css_value_print (stop->color, string);
|
2012-01-16 17:28:58 +00:00
|
|
|
|
2012-04-04 16:23:49 +00:00
|
|
|
if (stop->offset)
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
|
|
|
g_string_append (string, " ");
|
2012-04-04 16:23:49 +00:00
|
|
|
_gtk_css_value_print (stop->offset, string);
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_string_append (string, ")");
|
|
|
|
}
|
|
|
|
|
|
|
|
static GtkCssImage *
|
2012-09-28 16:02:46 +00:00
|
|
|
gtk_css_image_linear_compute (GtkCssImage *image,
|
|
|
|
guint property_id,
|
|
|
|
GtkStyleProviderPrivate *provider,
|
2015-01-31 10:56:15 +00:00
|
|
|
GtkCssStyle *style,
|
2015-02-14 01:27:39 +00:00
|
|
|
GtkCssStyle *parent_style)
|
2012-01-16 17:28:58 +00:00
|
|
|
{
|
|
|
|
GtkCssImageLinear *linear = GTK_CSS_IMAGE_LINEAR (image);
|
|
|
|
GtkCssImageLinear *copy;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
copy = g_object_new (GTK_TYPE_CSS_IMAGE_LINEAR, NULL);
|
2012-01-17 10:44:07 +00:00
|
|
|
copy->repeating = linear->repeating;
|
2016-02-12 03:09:44 +00:00
|
|
|
copy->side = linear->side;
|
2012-01-16 17:28:58 +00:00
|
|
|
|
2016-02-12 03:09:44 +00:00
|
|
|
if (linear->angle)
|
|
|
|
copy->angle = _gtk_css_value_compute (linear->angle, property_id, provider, style, parent_style);
|
2012-01-16 17:28:58 +00:00
|
|
|
|
|
|
|
g_array_set_size (copy->stops, linear->stops->len);
|
|
|
|
for (i = 0; i < linear->stops->len; i++)
|
|
|
|
{
|
|
|
|
GtkCssImageLinearColorStop *stop, *scopy;
|
|
|
|
|
|
|
|
stop = &g_array_index (linear->stops, GtkCssImageLinearColorStop, i);
|
|
|
|
scopy = &g_array_index (copy->stops, GtkCssImageLinearColorStop, i);
|
|
|
|
|
2015-02-14 01:27:39 +00:00
|
|
|
scopy->color = _gtk_css_value_compute (stop->color, property_id, provider, style, parent_style);
|
2012-01-16 17:28:58 +00:00
|
|
|
|
2012-04-04 16:23:49 +00:00
|
|
|
if (stop->offset)
|
2012-08-28 13:29:56 +00:00
|
|
|
{
|
2015-02-14 01:27:39 +00:00
|
|
|
scopy->offset = _gtk_css_value_compute (stop->offset, property_id, provider, style, parent_style);
|
2012-08-28 13:29:56 +00:00
|
|
|
}
|
2012-04-04 16:23:49 +00:00
|
|
|
else
|
2012-08-28 13:29:56 +00:00
|
|
|
{
|
|
|
|
scopy->offset = NULL;
|
|
|
|
}
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return GTK_CSS_IMAGE (copy);
|
|
|
|
}
|
|
|
|
|
2012-10-02 17:30:02 +00:00
|
|
|
static GtkCssImage *
|
|
|
|
gtk_css_image_linear_transition (GtkCssImage *start_image,
|
|
|
|
GtkCssImage *end_image,
|
|
|
|
guint property_id,
|
|
|
|
double progress)
|
|
|
|
{
|
|
|
|
GtkCssImageLinear *start, *end, *result;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
start = GTK_CSS_IMAGE_LINEAR (start_image);
|
|
|
|
|
|
|
|
if (end_image == NULL)
|
2013-05-28 13:14:55 +00:00
|
|
|
return GTK_CSS_IMAGE_CLASS (_gtk_css_image_linear_parent_class)->transition (start_image, end_image, property_id, progress);
|
2012-10-02 17:30:02 +00:00
|
|
|
|
|
|
|
if (!GTK_IS_CSS_IMAGE_LINEAR (end_image))
|
|
|
|
return GTK_CSS_IMAGE_CLASS (_gtk_css_image_linear_parent_class)->transition (start_image, end_image, property_id, progress);
|
|
|
|
|
|
|
|
end = GTK_CSS_IMAGE_LINEAR (end_image);
|
|
|
|
|
|
|
|
if ((start->repeating != end->repeating)
|
|
|
|
|| (start->stops->len != end->stops->len))
|
|
|
|
return GTK_CSS_IMAGE_CLASS (_gtk_css_image_linear_parent_class)->transition (start_image, end_image, property_id, progress);
|
|
|
|
|
|
|
|
result = g_object_new (GTK_TYPE_CSS_IMAGE_LINEAR, NULL);
|
|
|
|
result->repeating = start->repeating;
|
|
|
|
|
2016-02-12 03:09:44 +00:00
|
|
|
if (start->side != end->side)
|
2016-01-07 21:10:10 +00:00
|
|
|
goto fail;
|
|
|
|
|
2016-02-12 03:09:44 +00:00
|
|
|
result->side = start->side;
|
|
|
|
if (result->side == 0)
|
|
|
|
result->angle = _gtk_css_value_transition (start->angle, end->angle, property_id, progress);
|
2012-10-02 17:30:02 +00:00
|
|
|
if (result->angle == NULL)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
for (i = 0; i < start->stops->len; i++)
|
|
|
|
{
|
|
|
|
GtkCssImageLinearColorStop stop, *start_stop, *end_stop;
|
|
|
|
|
|
|
|
start_stop = &g_array_index (start->stops, GtkCssImageLinearColorStop, i);
|
|
|
|
end_stop = &g_array_index (end->stops, GtkCssImageLinearColorStop, i);
|
|
|
|
|
|
|
|
if ((start_stop->offset != NULL) != (end_stop->offset != NULL))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (start_stop->offset == NULL)
|
|
|
|
{
|
|
|
|
stop.offset = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
stop.offset = _gtk_css_value_transition (start_stop->offset,
|
|
|
|
end_stop->offset,
|
|
|
|
property_id,
|
|
|
|
progress);
|
|
|
|
if (stop.offset == NULL)
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
stop.color = _gtk_css_value_transition (start_stop->color,
|
|
|
|
end_stop->color,
|
|
|
|
property_id,
|
|
|
|
progress);
|
|
|
|
if (stop.color == NULL)
|
|
|
|
{
|
|
|
|
if (stop.offset)
|
|
|
|
_gtk_css_value_unref (stop.offset);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_array_append_val (result->stops, stop);
|
|
|
|
}
|
|
|
|
|
|
|
|
return GTK_CSS_IMAGE (result);
|
|
|
|
|
|
|
|
fail:
|
|
|
|
g_object_unref (result);
|
|
|
|
return GTK_CSS_IMAGE_CLASS (_gtk_css_image_linear_parent_class)->transition (start_image, end_image, property_id, progress);
|
|
|
|
}
|
|
|
|
|
2012-10-31 23:22:39 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_css_image_linear_equal (GtkCssImage *image1,
|
|
|
|
GtkCssImage *image2)
|
|
|
|
{
|
|
|
|
GtkCssImageLinear *linear1 = GTK_CSS_IMAGE_LINEAR (image1);
|
|
|
|
GtkCssImageLinear *linear2 = GTK_CSS_IMAGE_LINEAR (image2);
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
if (linear1->repeating != linear2->repeating ||
|
2016-02-12 03:09:44 +00:00
|
|
|
linear1->side != linear2->side ||
|
|
|
|
(linear1->side == 0 && !_gtk_css_value_equal (linear1->angle, linear2->angle)) ||
|
2012-10-31 23:22:39 +00:00
|
|
|
linear1->stops->len != linear2->stops->len)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
for (i = 0; i < linear1->stops->len; i++)
|
|
|
|
{
|
|
|
|
GtkCssImageLinearColorStop *stop1, *stop2;
|
|
|
|
|
|
|
|
stop1 = &g_array_index (linear1->stops, GtkCssImageLinearColorStop, i);
|
|
|
|
stop2 = &g_array_index (linear2->stops, GtkCssImageLinearColorStop, i);
|
|
|
|
|
|
|
|
if (!_gtk_css_value_equal0 (stop1->offset, stop2->offset) ||
|
|
|
|
!_gtk_css_value_equal (stop1->color, stop2->color))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-01-16 17:28:58 +00:00
|
|
|
static void
|
|
|
|
gtk_css_image_linear_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
GtkCssImageLinear *linear = GTK_CSS_IMAGE_LINEAR (object);
|
|
|
|
|
|
|
|
if (linear->stops)
|
|
|
|
{
|
|
|
|
g_array_free (linear->stops, TRUE);
|
|
|
|
linear->stops = NULL;
|
|
|
|
}
|
|
|
|
|
2016-02-12 03:09:44 +00:00
|
|
|
linear->side = 0;
|
2012-04-04 16:23:49 +00:00
|
|
|
if (linear->angle)
|
|
|
|
{
|
|
|
|
_gtk_css_value_unref (linear->angle);
|
|
|
|
linear->angle = NULL;
|
|
|
|
}
|
|
|
|
|
2012-01-16 17:28:58 +00:00
|
|
|
G_OBJECT_CLASS (_gtk_css_image_linear_parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_gtk_css_image_linear_class_init (GtkCssImageLinearClass *klass)
|
|
|
|
{
|
|
|
|
GtkCssImageClass *image_class = GTK_CSS_IMAGE_CLASS (klass);
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
2016-12-15 04:42:31 +00:00
|
|
|
image_class->snapshot = gtk_css_image_linear_snapshot;
|
2012-01-16 17:28:58 +00:00
|
|
|
image_class->parse = gtk_css_image_linear_parse;
|
|
|
|
image_class->print = gtk_css_image_linear_print;
|
|
|
|
image_class->compute = gtk_css_image_linear_compute;
|
2012-10-31 23:22:39 +00:00
|
|
|
image_class->equal = gtk_css_image_linear_equal;
|
2012-10-02 17:30:02 +00:00
|
|
|
image_class->transition = gtk_css_image_linear_transition;
|
2012-01-16 17:28:58 +00:00
|
|
|
|
|
|
|
object_class->dispose = gtk_css_image_linear_dispose;
|
|
|
|
}
|
|
|
|
|
2012-04-04 16:23:49 +00:00
|
|
|
static void
|
|
|
|
gtk_css_image_clear_color_stop (gpointer color_stop)
|
|
|
|
{
|
|
|
|
GtkCssImageLinearColorStop *stop = color_stop;
|
|
|
|
|
|
|
|
_gtk_css_value_unref (stop->color);
|
|
|
|
if (stop->offset)
|
|
|
|
_gtk_css_value_unref (stop->offset);
|
|
|
|
}
|
|
|
|
|
2012-01-16 17:28:58 +00:00
|
|
|
static void
|
|
|
|
_gtk_css_image_linear_init (GtkCssImageLinear *linear)
|
|
|
|
{
|
|
|
|
linear->stops = g_array_new (FALSE, FALSE, sizeof (GtkCssImageLinearColorStop));
|
2012-04-04 16:23:49 +00:00
|
|
|
g_array_set_clear_func (linear->stops, gtk_css_image_clear_color_stop);
|
2012-01-16 17:28:58 +00:00
|
|
|
}
|
|
|
|
|