2011-12-10 00:14:12 +00:00
|
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
|
* Copyright (C) 2010 Carlos Garnacho <carlosg@gnome.org>
|
|
|
|
|
* Copyright (C) 2011 Red Hat, Inc.
|
|
|
|
|
*
|
|
|
|
|
* Authors: Carlos Garnacho <carlosg@gnome.org>
|
|
|
|
|
* Cosimo Cecchi <cosimoc@gnome.org>
|
|
|
|
|
*
|
|
|
|
|
* 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
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2011-12-10 00:14:12 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2012-01-05 15:33:39 +00:00
|
|
|
|
#include "config.h"
|
|
|
|
|
|
2015-01-17 15:55:45 +00:00
|
|
|
|
#include "gtkrenderbackgroundprivate.h"
|
2012-03-29 00:58:32 +00:00
|
|
|
|
|
2012-04-03 09:49:46 +00:00
|
|
|
|
#include "gtkcssarrayvalueprivate.h"
|
2012-04-04 10:39:55 +00:00
|
|
|
|
#include "gtkcssbgsizevalueprivate.h"
|
2019-02-15 01:57:46 +00:00
|
|
|
|
#include "gtkcssboxesprivate.h"
|
2016-02-25 14:40:04 +00:00
|
|
|
|
#include "gtkcsscornervalueprivate.h"
|
2012-03-30 00:19:39 +00:00
|
|
|
|
#include "gtkcssenumvalueprivate.h"
|
2012-03-29 00:58:32 +00:00
|
|
|
|
#include "gtkcssimagevalueprivate.h"
|
2015-01-17 04:11:40 +00:00
|
|
|
|
#include "gtkcssnumbervalueprivate.h"
|
2020-01-14 13:34:15 +00:00
|
|
|
|
#include "gtkcssshadowvalueprivate.h"
|
2012-04-03 20:21:16 +00:00
|
|
|
|
#include "gtkcsspositionvalueprivate.h"
|
2012-04-04 09:44:57 +00:00
|
|
|
|
#include "gtkcssrepeatvalueprivate.h"
|
2020-01-10 12:02:33 +00:00
|
|
|
|
#include "gtkcsscolorvalueprivate.h"
|
2015-01-17 04:23:00 +00:00
|
|
|
|
#include "gtkcssstyleprivate.h"
|
2012-03-29 00:58:32 +00:00
|
|
|
|
#include "gtkcsstypesprivate.h"
|
2011-12-10 00:14:12 +00:00
|
|
|
|
|
2012-01-05 15:33:39 +00:00
|
|
|
|
#include <math.h>
|
|
|
|
|
|
2011-12-10 00:14:12 +00:00
|
|
|
|
#include <gdk/gdk.h>
|
|
|
|
|
|
2016-12-13 20:00:28 +00:00
|
|
|
|
#include "gsk/gskroundedrectprivate.h"
|
|
|
|
|
|
2016-12-13 23:08:29 +00:00
|
|
|
|
static void
|
2019-02-15 01:57:46 +00:00
|
|
|
|
gtk_theming_background_snapshot_color (GtkCssBoxes *boxes,
|
|
|
|
|
GtkSnapshot *snapshot,
|
|
|
|
|
const GdkRGBA *bg_color,
|
2020-06-21 06:44:12 +00:00
|
|
|
|
guint n_bg_values)
|
2016-12-13 23:08:29 +00:00
|
|
|
|
{
|
2019-02-15 01:57:46 +00:00
|
|
|
|
const GskRoundedRect *box;
|
|
|
|
|
GtkCssArea clip;
|
2020-06-21 06:44:12 +00:00
|
|
|
|
|
|
|
|
|
clip = _gtk_css_area_value_get (_gtk_css_array_value_get_nth (boxes->style->background->background_clip, n_bg_values - 1));
|
2019-02-15 01:57:46 +00:00
|
|
|
|
box = gtk_css_boxes_get_box (boxes, clip);
|
2016-12-13 23:08:29 +00:00
|
|
|
|
|
2019-02-15 01:57:46 +00:00
|
|
|
|
if (gsk_rounded_rect_is_rectilinear (box))
|
2016-12-13 23:08:29 +00:00
|
|
|
|
{
|
2017-01-13 03:46:09 +00:00
|
|
|
|
gtk_snapshot_append_color (snapshot,
|
|
|
|
|
bg_color,
|
2019-02-15 01:57:46 +00:00
|
|
|
|
&box->bounds);
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-02-15 01:57:46 +00:00
|
|
|
|
gtk_snapshot_push_rounded_clip (snapshot, box);
|
2017-01-13 03:46:09 +00:00
|
|
|
|
gtk_snapshot_append_color (snapshot,
|
|
|
|
|
bg_color,
|
2019-02-15 01:57:46 +00:00
|
|
|
|
&box->bounds);
|
2017-01-12 23:39:59 +00:00
|
|
|
|
gtk_snapshot_pop (snapshot);
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2019-02-15 01:57:46 +00:00
|
|
|
|
gtk_theming_background_snapshot_layer (GtkCssBoxes *bg,
|
|
|
|
|
guint idx,
|
|
|
|
|
GtkSnapshot *snapshot)
|
2016-12-13 23:08:29 +00:00
|
|
|
|
{
|
2020-01-28 07:38:25 +00:00
|
|
|
|
GtkCssBackgroundValues *background = bg->style->background;
|
2016-12-13 23:08:29 +00:00
|
|
|
|
GtkCssRepeatStyle hrepeat, vrepeat;
|
|
|
|
|
const GtkCssValue *pos, *repeat;
|
|
|
|
|
GtkCssImage *image;
|
|
|
|
|
const GskRoundedRect *origin, *clip;
|
|
|
|
|
double image_width, image_height;
|
|
|
|
|
double width, height;
|
2019-12-18 08:40:04 +00:00
|
|
|
|
double x, y;
|
2016-12-13 23:08:29 +00:00
|
|
|
|
|
2020-01-28 07:38:25 +00:00
|
|
|
|
image = _gtk_css_image_value_get_image (_gtk_css_array_value_get_nth (background->background_image, idx));
|
2016-12-13 23:08:29 +00:00
|
|
|
|
|
2017-10-19 13:22:00 +00:00
|
|
|
|
if (image == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-28 07:38:25 +00:00
|
|
|
|
pos = _gtk_css_array_value_get_nth (background->background_position, idx);
|
|
|
|
|
repeat = _gtk_css_array_value_get_nth (background->background_repeat, idx);
|
2017-10-19 13:22:00 +00:00
|
|
|
|
|
2019-02-15 01:57:46 +00:00
|
|
|
|
origin = gtk_css_boxes_get_box (bg,
|
|
|
|
|
_gtk_css_area_value_get (
|
2020-01-28 07:38:25 +00:00
|
|
|
|
_gtk_css_array_value_get_nth (background->background_origin, idx)));
|
2016-12-13 23:08:29 +00:00
|
|
|
|
|
|
|
|
|
width = origin->bounds.size.width;
|
|
|
|
|
height = origin->bounds.size.height;
|
|
|
|
|
|
2017-10-19 13:22:00 +00:00
|
|
|
|
if (width <= 0 || height <= 0)
|
2016-12-13 23:08:29 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2019-02-15 01:57:46 +00:00
|
|
|
|
clip = gtk_css_boxes_get_box (bg,
|
|
|
|
|
_gtk_css_area_value_get (
|
2020-01-28 07:38:25 +00:00
|
|
|
|
_gtk_css_array_value_get_nth (background->background_clip, idx)));
|
2017-10-19 13:22:00 +00:00
|
|
|
|
|
2020-01-28 07:38:25 +00:00
|
|
|
|
_gtk_css_bg_size_value_compute_size (_gtk_css_array_value_get_nth (background->background_size, idx),
|
2016-12-13 23:08:29 +00:00
|
|
|
|
image,
|
|
|
|
|
width,
|
|
|
|
|
height,
|
|
|
|
|
&image_width,
|
|
|
|
|
&image_height);
|
|
|
|
|
|
|
|
|
|
if (image_width <= 0 || image_height <= 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* optimization */
|
|
|
|
|
if (image_width == width)
|
|
|
|
|
hrepeat = GTK_CSS_REPEAT_STYLE_NO_REPEAT;
|
2020-06-21 06:31:24 +00:00
|
|
|
|
else
|
|
|
|
|
hrepeat = _gtk_css_background_repeat_value_get_x (repeat);
|
|
|
|
|
|
2016-12-13 23:08:29 +00:00
|
|
|
|
if (image_height == height)
|
|
|
|
|
vrepeat = GTK_CSS_REPEAT_STYLE_NO_REPEAT;
|
2020-06-21 06:31:24 +00:00
|
|
|
|
else
|
|
|
|
|
vrepeat = _gtk_css_background_repeat_value_get_y (repeat);
|
2016-12-13 23:08:29 +00:00
|
|
|
|
|
2018-04-24 01:17:23 +00:00
|
|
|
|
gtk_snapshot_push_debug (snapshot, "Layer %u", idx);
|
|
|
|
|
gtk_snapshot_push_rounded_clip (snapshot, clip);
|
2016-12-13 23:08:29 +00:00
|
|
|
|
|
2019-12-18 08:40:04 +00:00
|
|
|
|
x = _gtk_css_position_value_get_x (pos, width - image_width) + origin->bounds.origin.x;
|
|
|
|
|
y = _gtk_css_position_value_get_y (pos, height - image_height) + origin->bounds.origin.y;
|
2016-12-13 23:08:29 +00:00
|
|
|
|
if (hrepeat == GTK_CSS_REPEAT_STYLE_NO_REPEAT && vrepeat == GTK_CSS_REPEAT_STYLE_NO_REPEAT)
|
|
|
|
|
{
|
|
|
|
|
/* shortcut for normal case */
|
2019-12-18 10:43:26 +00:00
|
|
|
|
if (x != 0 || y != 0)
|
|
|
|
|
{
|
|
|
|
|
gtk_snapshot_save (snapshot);
|
|
|
|
|
gtk_snapshot_translate (snapshot, &GRAPHENE_POINT_INIT (x, y));
|
|
|
|
|
gtk_css_image_snapshot (image, snapshot, image_width, image_height);
|
|
|
|
|
gtk_snapshot_restore (snapshot);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
gtk_css_image_snapshot (image, snapshot, image_width, image_height);
|
|
|
|
|
}
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-01-01 18:52:18 +00:00
|
|
|
|
float repeat_width, repeat_height;
|
|
|
|
|
graphene_rect_t fill_rect;
|
2016-12-13 23:08:29 +00:00
|
|
|
|
|
|
|
|
|
/* If ‘background-repeat’ is ‘round’ for one (or both) dimensions,
|
|
|
|
|
* there is a second step. The UA must scale the image in that
|
|
|
|
|
* dimension (or both dimensions) so that it fits a whole number of
|
|
|
|
|
* times in the background positioning area. In the case of the width
|
|
|
|
|
* (height is analogous):
|
|
|
|
|
*
|
|
|
|
|
* If X ≠ 0 is the width of the image after step one and W is the width
|
|
|
|
|
* of the background positioning area, then the rounded width
|
|
|
|
|
* X' = W / round(W / X) where round() is a function that returns the
|
|
|
|
|
* nearest natural number (integer greater than zero).
|
|
|
|
|
*
|
|
|
|
|
* If ‘background-repeat’ is ‘round’ for one dimension only and if
|
|
|
|
|
* ‘background-size’ is ‘auto’ for the other dimension, then there is
|
|
|
|
|
* a third step: that other dimension is scaled so that the original
|
|
|
|
|
* aspect ratio is restored.
|
|
|
|
|
*/
|
|
|
|
|
if (hrepeat == GTK_CSS_REPEAT_STYLE_ROUND)
|
|
|
|
|
{
|
|
|
|
|
double n = round (width / image_width);
|
|
|
|
|
|
|
|
|
|
n = MAX (1, n);
|
|
|
|
|
|
|
|
|
|
if (vrepeat != GTK_CSS_REPEAT_STYLE_ROUND
|
|
|
|
|
/* && vsize == auto (it is by default) */)
|
|
|
|
|
image_height *= width / (image_width * n);
|
|
|
|
|
image_width = width / n;
|
|
|
|
|
}
|
|
|
|
|
if (vrepeat == GTK_CSS_REPEAT_STYLE_ROUND)
|
|
|
|
|
{
|
|
|
|
|
double n = round (height / image_height);
|
|
|
|
|
|
|
|
|
|
n = MAX (1, n);
|
|
|
|
|
|
|
|
|
|
if (hrepeat != GTK_CSS_REPEAT_STYLE_ROUND
|
|
|
|
|
/* && hsize == auto (it is by default) */)
|
|
|
|
|
image_width *= height / (image_height * n);
|
|
|
|
|
image_height = height / n;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* if hrepeat or vrepeat is 'space', we create a somewhat larger surface
|
|
|
|
|
* to store the extra space. */
|
|
|
|
|
if (hrepeat == GTK_CSS_REPEAT_STYLE_SPACE)
|
|
|
|
|
{
|
|
|
|
|
double n = floor (width / image_width);
|
2017-01-01 18:52:18 +00:00
|
|
|
|
repeat_width = n ? round (width / n) : 0;
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2017-01-01 18:52:18 +00:00
|
|
|
|
repeat_width = round (image_width);
|
2016-12-13 23:08:29 +00:00
|
|
|
|
|
|
|
|
|
if (vrepeat == GTK_CSS_REPEAT_STYLE_SPACE)
|
|
|
|
|
{
|
|
|
|
|
double n = floor (height / image_height);
|
2017-01-01 18:52:18 +00:00
|
|
|
|
repeat_height = n ? round (height / n) : 0;
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2017-01-01 18:52:18 +00:00
|
|
|
|
repeat_height = round (image_height);
|
2016-12-13 23:08:29 +00:00
|
|
|
|
|
|
|
|
|
if (hrepeat == GTK_CSS_REPEAT_STYLE_NO_REPEAT)
|
|
|
|
|
{
|
2017-01-01 18:52:18 +00:00
|
|
|
|
fill_rect.origin.x = _gtk_css_position_value_get_x (pos, width - image_width);
|
|
|
|
|
fill_rect.size.width = image_width;
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-01-01 18:52:18 +00:00
|
|
|
|
fill_rect.origin.x = 0;
|
|
|
|
|
fill_rect.size.width = width;
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (vrepeat == GTK_CSS_REPEAT_STYLE_NO_REPEAT)
|
|
|
|
|
{
|
2017-01-01 18:52:18 +00:00
|
|
|
|
fill_rect.origin.y = _gtk_css_position_value_get_y (pos, height - image_height);
|
|
|
|
|
fill_rect.size.height = image_height;
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-01-01 18:52:18 +00:00
|
|
|
|
fill_rect.origin.y = 0;
|
|
|
|
|
fill_rect.size.height = height;
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-01 18:52:18 +00:00
|
|
|
|
gtk_snapshot_push_repeat (snapshot,
|
|
|
|
|
&fill_rect,
|
|
|
|
|
&GRAPHENE_RECT_INIT (
|
2019-12-18 08:40:04 +00:00
|
|
|
|
x, y,
|
2017-01-01 18:52:18 +00:00
|
|
|
|
repeat_width, repeat_height
|
2018-04-24 01:17:23 +00:00
|
|
|
|
));
|
2019-12-18 08:40:04 +00:00
|
|
|
|
|
2019-02-21 04:34:12 +00:00
|
|
|
|
gtk_snapshot_translate (snapshot, &GRAPHENE_POINT_INIT (
|
2019-12-18 08:40:04 +00:00
|
|
|
|
x + 0.5 * (repeat_width - image_width),
|
|
|
|
|
y + 0.5 * (repeat_height - image_height)));
|
2017-01-01 18:52:18 +00:00
|
|
|
|
gtk_css_image_snapshot (image, snapshot, image_width, image_height);
|
2016-12-13 23:08:29 +00:00
|
|
|
|
|
2017-01-12 23:39:59 +00:00
|
|
|
|
gtk_snapshot_pop (snapshot);
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-12 23:39:59 +00:00
|
|
|
|
gtk_snapshot_pop (snapshot);
|
2018-04-24 01:17:23 +00:00
|
|
|
|
gtk_snapshot_pop (snapshot);
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-13 15:16:39 +00:00
|
|
|
|
void
|
2019-02-15 05:15:50 +00:00
|
|
|
|
gtk_css_style_snapshot_background (GtkCssBoxes *boxes,
|
|
|
|
|
GtkSnapshot *snapshot)
|
2016-11-13 15:16:39 +00:00
|
|
|
|
{
|
2020-02-04 09:17:15 +00:00
|
|
|
|
const GtkCssBackgroundValues *background = boxes->style->background;
|
2020-02-01 08:11:39 +00:00
|
|
|
|
GtkCssValue *background_image;
|
|
|
|
|
const GdkRGBA *bg_color;
|
|
|
|
|
const GtkCssValue *box_shadow;
|
|
|
|
|
gboolean has_bg_color;
|
|
|
|
|
gboolean has_bg_image;
|
|
|
|
|
gboolean has_shadow;
|
2020-06-21 06:44:12 +00:00
|
|
|
|
int idx;
|
|
|
|
|
guint number_of_layers;
|
2016-11-13 15:16:39 +00:00
|
|
|
|
|
2020-02-01 08:11:39 +00:00
|
|
|
|
if (background->base.type == GTK_CSS_BACKGROUND_INITIAL_VALUES)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
background_image = background->background_image;
|
|
|
|
|
bg_color = gtk_css_color_value_get_rgba (background->background_color);
|
|
|
|
|
box_shadow = background->box_shadow;
|
|
|
|
|
|
|
|
|
|
has_bg_color = !gdk_rgba_is_clear (bg_color);
|
|
|
|
|
has_bg_image = _gtk_css_image_value_get_image (_gtk_css_array_value_get_nth (background_image, 0)) != NULL;
|
|
|
|
|
has_shadow = !gtk_css_shadow_value_is_none (box_shadow);
|
|
|
|
|
|
2016-11-13 15:16:39 +00:00
|
|
|
|
/* This is the common default case of no background */
|
2020-01-25 15:21:00 +00:00
|
|
|
|
if (!has_bg_color && !has_bg_image && !has_shadow)
|
2016-11-13 15:16:39 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2018-04-24 01:17:23 +00:00
|
|
|
|
gtk_snapshot_push_debug (snapshot, "CSS background");
|
|
|
|
|
|
2020-01-25 15:21:00 +00:00
|
|
|
|
if (has_shadow)
|
|
|
|
|
gtk_css_shadow_value_snapshot_outset (box_shadow,
|
|
|
|
|
snapshot,
|
|
|
|
|
gtk_css_boxes_get_border_box (boxes));
|
2016-11-13 15:16:39 +00:00
|
|
|
|
|
2020-06-21 06:44:12 +00:00
|
|
|
|
number_of_layers = _gtk_css_array_value_get_n_values (background_image);
|
|
|
|
|
|
2020-01-25 15:21:00 +00:00
|
|
|
|
if (has_bg_image)
|
2017-01-12 22:20:31 +00:00
|
|
|
|
{
|
2020-01-28 07:38:25 +00:00
|
|
|
|
GtkCssValue *blend_modes = background->background_blend_mode;
|
2020-01-25 15:21:00 +00:00
|
|
|
|
GskBlendMode *blend_mode_values = g_alloca (sizeof (GskBlendMode) * number_of_layers);
|
2016-11-19 19:38:22 +00:00
|
|
|
|
|
2020-01-25 15:21:00 +00:00
|
|
|
|
for (idx = number_of_layers - 1; idx >= 0; idx--)
|
2016-12-13 23:08:29 +00:00
|
|
|
|
{
|
2020-01-25 15:21:00 +00:00
|
|
|
|
blend_mode_values[idx] = _gtk_css_blend_mode_value_get (_gtk_css_array_value_get_nth (blend_modes, idx));
|
|
|
|
|
|
|
|
|
|
if (blend_mode_values[idx] != GSK_BLEND_MODE_DEFAULT)
|
|
|
|
|
gtk_snapshot_push_blend (snapshot, blend_mode_values[idx]);
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
2020-01-25 15:21:00 +00:00
|
|
|
|
|
|
|
|
|
if (has_bg_color)
|
2020-06-21 06:44:12 +00:00
|
|
|
|
gtk_theming_background_snapshot_color (boxes, snapshot, bg_color, number_of_layers);
|
2020-01-25 15:21:00 +00:00
|
|
|
|
|
|
|
|
|
for (idx = number_of_layers - 1; idx >= 0; idx--)
|
2016-12-13 23:08:29 +00:00
|
|
|
|
{
|
2020-01-25 15:21:00 +00:00
|
|
|
|
if (blend_mode_values[idx] == GSK_BLEND_MODE_DEFAULT)
|
|
|
|
|
{
|
|
|
|
|
gtk_theming_background_snapshot_layer (boxes, idx, snapshot);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
gtk_snapshot_pop (snapshot);
|
|
|
|
|
gtk_theming_background_snapshot_layer (boxes, idx, snapshot);
|
|
|
|
|
gtk_snapshot_pop (snapshot);
|
|
|
|
|
}
|
2016-12-13 23:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-25 15:21:00 +00:00
|
|
|
|
else if (has_bg_color)
|
|
|
|
|
{
|
2020-06-21 06:44:12 +00:00
|
|
|
|
gtk_theming_background_snapshot_color (boxes, snapshot, bg_color, number_of_layers);
|
2020-01-25 15:21:00 +00:00
|
|
|
|
}
|
2016-11-19 19:38:22 +00:00
|
|
|
|
|
2020-01-25 15:21:00 +00:00
|
|
|
|
if (has_shadow)
|
|
|
|
|
gtk_css_shadow_value_snapshot_inset (box_shadow,
|
|
|
|
|
snapshot,
|
|
|
|
|
gtk_css_boxes_get_padding_box (boxes));
|
2018-04-24 01:17:23 +00:00
|
|
|
|
|
|
|
|
|
gtk_snapshot_pop (snapshot);
|
2016-11-13 15:16:39 +00:00
|
|
|
|
}
|
|
|
|
|
|