2015-01-20 00:48:46 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 2014,2015 Benjamin Otte
|
|
|
|
*
|
|
|
|
* Authors: Benjamin Otte <otte@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
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "gtkrendericonprivate.h"
|
|
|
|
|
2015-12-15 13:52:17 +00:00
|
|
|
#include "gtkcssimagebuiltinprivate.h"
|
2015-01-20 00:48:46 +00:00
|
|
|
#include "gtkcssimagevalueprivate.h"
|
|
|
|
#include "gtkcssshadowsvalueprivate.h"
|
|
|
|
#include "gtkcssstyleprivate.h"
|
|
|
|
#include "gtkcsstransformvalueprivate.h"
|
2016-11-15 05:19:16 +00:00
|
|
|
#include "gtksnapshotprivate.h"
|
2015-01-20 00:48:46 +00:00
|
|
|
|
2015-12-16 01:15:20 +00:00
|
|
|
#include <math.h>
|
|
|
|
|
2015-01-20 00:48:46 +00:00
|
|
|
void
|
|
|
|
gtk_css_style_render_icon (GtkCssStyle *style,
|
|
|
|
cairo_t *cr,
|
|
|
|
double x,
|
|
|
|
double y,
|
|
|
|
double width,
|
|
|
|
double height,
|
|
|
|
GtkCssImageBuiltinType builtin_type)
|
|
|
|
{
|
|
|
|
const GtkCssValue *shadows;
|
2016-11-18 15:01:56 +00:00
|
|
|
graphene_matrix_t graphene_matrix;
|
2016-01-06 17:14:11 +00:00
|
|
|
cairo_matrix_t matrix, transform_matrix, saved_matrix;
|
2015-01-20 00:48:46 +00:00
|
|
|
GtkCssImage *image;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_CSS_STYLE (style));
|
|
|
|
g_return_if_fail (cr != NULL);
|
|
|
|
|
|
|
|
image = _gtk_css_image_value_get_image (gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_SOURCE));
|
|
|
|
if (image == NULL)
|
|
|
|
return;
|
|
|
|
|
2016-01-06 17:14:11 +00:00
|
|
|
cairo_get_matrix (cr, &saved_matrix);
|
|
|
|
|
2015-01-20 00:48:46 +00:00
|
|
|
shadows = gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_SHADOW);
|
|
|
|
|
|
|
|
cairo_translate (cr, x, y);
|
|
|
|
|
2016-11-18 15:01:56 +00:00
|
|
|
if (gtk_css_transform_value_get_matrix (gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_TRANSFORM), &graphene_matrix) &&
|
|
|
|
graphene_matrix_is_2d (&graphene_matrix))
|
2015-01-20 00:48:46 +00:00
|
|
|
{
|
2016-11-18 15:01:56 +00:00
|
|
|
graphene_matrix_to_2d (&graphene_matrix,
|
|
|
|
&transform_matrix.xx, &transform_matrix.yx,
|
|
|
|
&transform_matrix.xy, &transform_matrix.yy,
|
|
|
|
&transform_matrix.x0, &transform_matrix.y0);
|
2015-01-20 00:48:46 +00:00
|
|
|
/* XXX: Implement -gtk-icon-transform-origin instead of hardcoding "50% 50%" here */
|
|
|
|
cairo_matrix_init_translate (&matrix, width / 2, height / 2);
|
|
|
|
cairo_matrix_multiply (&matrix, &transform_matrix, &matrix);
|
|
|
|
cairo_matrix_translate (&matrix, - width / 2, - height / 2);
|
|
|
|
|
|
|
|
if (_gtk_css_shadows_value_is_none (shadows))
|
|
|
|
{
|
|
|
|
cairo_transform (cr, &matrix);
|
|
|
|
gtk_css_image_builtin_draw (image, cr, width, height, builtin_type);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cairo_push_group (cr);
|
|
|
|
cairo_transform (cr, &matrix);
|
|
|
|
gtk_css_image_builtin_draw (image, cr, width, height, builtin_type);
|
|
|
|
cairo_pop_group_to_source (cr);
|
|
|
|
_gtk_css_shadows_value_paint_icon (shadows, cr);
|
|
|
|
cairo_paint (cr);
|
|
|
|
}
|
|
|
|
}
|
2016-01-06 17:14:11 +00:00
|
|
|
|
|
|
|
cairo_set_matrix (cr, &saved_matrix);
|
2015-01-20 00:48:46 +00:00
|
|
|
}
|
|
|
|
|
2016-11-16 19:51:53 +00:00
|
|
|
void
|
|
|
|
gtk_css_style_snapshot_icon (GtkCssStyle *style,
|
|
|
|
GtkSnapshot *snapshot,
|
|
|
|
double width,
|
|
|
|
double height,
|
|
|
|
GtkCssImageBuiltinType builtin_type)
|
|
|
|
{
|
|
|
|
const GtkCssValue *shadows, *transform;
|
2016-11-18 15:01:56 +00:00
|
|
|
graphene_matrix_t transform_matrix, m1, m2, m3, saved_matrix;
|
2016-11-16 19:51:53 +00:00
|
|
|
GtkCssImage *image;
|
2016-11-19 13:05:42 +00:00
|
|
|
static gboolean shadow_warning;
|
2016-11-16 19:51:53 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_CSS_STYLE (style));
|
|
|
|
g_return_if_fail (snapshot != NULL);
|
|
|
|
|
|
|
|
image = _gtk_css_image_value_get_image (gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_SOURCE));
|
|
|
|
if (image == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
shadows = gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_SHADOW);
|
|
|
|
transform = gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_TRANSFORM);
|
|
|
|
|
2016-11-18 15:01:56 +00:00
|
|
|
if (!gtk_css_transform_value_get_matrix (transform, &transform_matrix))
|
2016-11-16 19:51:53 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
graphene_matrix_init_from_matrix (&saved_matrix, gtk_snapshot_get_transform (snapshot));
|
|
|
|
|
|
|
|
/* XXX: Implement -gtk-icon-transform-origin instead of hardcoding "50% 50%" here */
|
2016-11-21 16:21:38 +00:00
|
|
|
graphene_matrix_init_translate (&m1, &GRAPHENE_POINT3D_INIT(width / 2.0, height / 2.0, 0));
|
2016-11-18 15:01:56 +00:00
|
|
|
graphene_matrix_multiply (&transform_matrix, &m1, &m3);
|
2016-11-21 16:21:38 +00:00
|
|
|
graphene_matrix_init_translate (&m2, &GRAPHENE_POINT3D_INIT(- width / 2.0, - height / 2.0, 0));
|
2016-11-17 00:05:15 +00:00
|
|
|
graphene_matrix_multiply (&m2, &m3, &m1);
|
|
|
|
gtk_snapshot_transform (snapshot, &m1);
|
2016-11-16 19:51:53 +00:00
|
|
|
|
2016-11-19 13:05:42 +00:00
|
|
|
if (!_gtk_css_shadows_value_is_none (shadows) && !shadow_warning)
|
2016-11-16 19:51:53 +00:00
|
|
|
{
|
|
|
|
g_warning ("Painting shadows not implemented for textures yet.");
|
2016-11-19 13:05:42 +00:00
|
|
|
shadow_warning = TRUE;
|
2016-11-16 19:51:53 +00:00
|
|
|
}
|
|
|
|
gtk_css_image_builtin_snapshot (image, snapshot, width, height, builtin_type);
|
|
|
|
|
|
|
|
gtk_snapshot_set_transform (snapshot, &saved_matrix);
|
|
|
|
}
|
|
|
|
|
2016-10-15 20:29:45 +00:00
|
|
|
static gboolean
|
2015-01-20 04:54:45 +00:00
|
|
|
get_surface_extents (cairo_surface_t *surface,
|
|
|
|
GdkRectangle *out_extents)
|
|
|
|
{
|
|
|
|
cairo_t *cr;
|
|
|
|
gboolean result;
|
|
|
|
|
|
|
|
cr = cairo_create (surface);
|
|
|
|
result = gdk_cairo_get_clip_rectangle (cr, out_extents);
|
|
|
|
cairo_destroy (cr);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-01-20 04:21:15 +00:00
|
|
|
void
|
|
|
|
gtk_css_style_render_icon_surface (GtkCssStyle *style,
|
|
|
|
cairo_t *cr,
|
|
|
|
cairo_surface_t *surface,
|
|
|
|
double x,
|
|
|
|
double y)
|
|
|
|
{
|
2015-01-20 04:54:45 +00:00
|
|
|
const GtkCssValue *shadows;
|
2016-11-18 15:01:56 +00:00
|
|
|
graphene_matrix_t graphene_matrix;
|
2015-12-14 01:33:21 +00:00
|
|
|
cairo_matrix_t matrix, transform_matrix, saved_matrix;
|
2015-01-20 04:54:45 +00:00
|
|
|
GdkRectangle extents;
|
|
|
|
|
2015-01-20 04:21:15 +00:00
|
|
|
g_return_if_fail (GTK_IS_CSS_STYLE (style));
|
|
|
|
g_return_if_fail (cr != NULL);
|
|
|
|
g_return_if_fail (surface != NULL);
|
|
|
|
|
2015-01-20 04:54:45 +00:00
|
|
|
shadows = gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_SHADOW);
|
|
|
|
|
|
|
|
if (!get_surface_extents (surface, &extents))
|
|
|
|
{
|
|
|
|
/* weird infinite surface, no special magic for you */
|
|
|
|
cairo_set_source_surface (cr, surface, x, y);
|
|
|
|
_gtk_css_shadows_value_paint_icon (gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_SHADOW), cr);
|
|
|
|
cairo_paint (cr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-12-14 01:33:21 +00:00
|
|
|
cairo_get_matrix (cr, &saved_matrix);
|
2015-01-20 04:54:45 +00:00
|
|
|
cairo_translate (cr, x + extents.x, y + extents.y);
|
2015-01-20 04:21:15 +00:00
|
|
|
|
2016-11-18 15:01:56 +00:00
|
|
|
if (gtk_css_transform_value_get_matrix (gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_TRANSFORM), &graphene_matrix) &&
|
|
|
|
graphene_matrix_is_2d (&graphene_matrix))
|
2015-01-20 04:54:45 +00:00
|
|
|
{
|
|
|
|
cairo_pattern_t *pattern;
|
2015-01-20 04:21:15 +00:00
|
|
|
|
2016-11-18 15:01:56 +00:00
|
|
|
graphene_matrix_to_2d (&graphene_matrix,
|
|
|
|
&transform_matrix.xx, &transform_matrix.yx,
|
|
|
|
&transform_matrix.xy, &transform_matrix.yy,
|
|
|
|
&transform_matrix.x0, &transform_matrix.y0);
|
2015-01-20 04:54:45 +00:00
|
|
|
/* XXX: Implement -gtk-icon-transform-origin instead of hardcoding "50% 50%" here */
|
|
|
|
cairo_matrix_init_translate (&matrix, extents.width / 2, extents.height / 2);
|
|
|
|
cairo_matrix_multiply (&matrix, &transform_matrix, &matrix);
|
|
|
|
cairo_matrix_translate (&matrix, - extents.width / 2, - extents.height / 2);
|
|
|
|
if (cairo_matrix_invert (&matrix) != CAIRO_STATUS_SUCCESS)
|
|
|
|
{
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
cairo_matrix_translate (&matrix, extents.x, extents.y);
|
|
|
|
|
|
|
|
pattern = cairo_pattern_create_for_surface (surface);
|
|
|
|
cairo_pattern_set_matrix (pattern, &matrix);
|
|
|
|
cairo_set_source (cr, pattern);
|
|
|
|
cairo_pattern_destroy (pattern);
|
|
|
|
|
|
|
|
_gtk_css_shadows_value_paint_icon (shadows, cr);
|
|
|
|
cairo_paint (cr);
|
|
|
|
}
|
2015-12-14 01:33:21 +00:00
|
|
|
|
|
|
|
cairo_set_matrix (cr, &saved_matrix);
|
2015-01-20 04:21:15 +00:00
|
|
|
}
|
|
|
|
|
2015-12-16 01:15:20 +00:00
|
|
|
void
|
|
|
|
gtk_css_style_render_icon_get_extents (GtkCssStyle *style,
|
|
|
|
GdkRectangle *extents,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
2016-11-18 15:01:56 +00:00
|
|
|
graphene_matrix_t transform_matrix, translate_matrix, matrix;
|
|
|
|
graphene_rect_t bounds;
|
2015-12-16 01:15:20 +00:00
|
|
|
GtkBorder border;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_CSS_STYLE (style));
|
|
|
|
g_return_if_fail (extents != NULL);
|
|
|
|
|
|
|
|
extents->x = x;
|
|
|
|
extents->y = y;
|
|
|
|
extents->width = width;
|
|
|
|
extents->height = height;
|
|
|
|
|
2016-11-18 15:01:56 +00:00
|
|
|
if (!gtk_css_transform_value_get_matrix (gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_TRANSFORM), &transform_matrix))
|
2015-12-16 01:15:20 +00:00
|
|
|
return;
|
2016-11-18 15:01:56 +00:00
|
|
|
|
2016-11-21 16:21:38 +00:00
|
|
|
graphene_matrix_init_translate (&translate_matrix, &GRAPHENE_POINT3D_INIT(x + width / 2.0, y + height / 2.0, 0));
|
2016-11-19 02:15:51 +00:00
|
|
|
graphene_matrix_multiply (&transform_matrix, &translate_matrix, &matrix);
|
2016-11-18 15:01:56 +00:00
|
|
|
graphene_rect_init (&bounds,
|
|
|
|
- width / 2.0, - height / 2.0,
|
|
|
|
width, height);
|
2015-12-16 01:15:20 +00:00
|
|
|
/* need to round to full pixels */
|
2016-11-18 15:01:56 +00:00
|
|
|
graphene_matrix_transform_bounds (&matrix, &bounds, &bounds);
|
2015-12-16 01:15:20 +00:00
|
|
|
|
|
|
|
_gtk_css_shadows_value_get_extents (gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_SHADOW), &border);
|
|
|
|
|
2016-11-18 15:01:56 +00:00
|
|
|
extents->x = floorf (bounds.origin.x) - border.left;
|
|
|
|
extents->y = floorf (bounds.origin.y) - border.top;
|
2016-11-19 02:15:51 +00:00
|
|
|
extents->width = ceilf (bounds.origin.x + bounds.size.width) - extents->x + border.right;
|
|
|
|
extents->height = ceilf (bounds.origin.y + bounds.size.height) - extents->y + border.bottom;
|
2015-12-16 01:15:20 +00:00
|
|
|
}
|
|
|
|
|
2016-11-15 05:19:16 +00:00
|
|
|
void
|
2016-11-16 19:51:53 +00:00
|
|
|
gtk_css_style_snapshot_icon_texture (GtkCssStyle *style,
|
|
|
|
GtkSnapshot *snapshot,
|
2016-11-26 10:51:30 +00:00
|
|
|
GskTexture *texture,
|
|
|
|
double texture_scale)
|
2016-11-15 05:19:16 +00:00
|
|
|
{
|
|
|
|
const GtkCssValue *shadows, *transform;
|
2016-11-26 10:51:30 +00:00
|
|
|
graphene_matrix_t transform_matrix, translate, matrix, saved_matrix;
|
2016-11-15 05:19:16 +00:00
|
|
|
graphene_rect_t bounds;
|
|
|
|
GskRenderNode *node;
|
2016-11-26 10:51:30 +00:00
|
|
|
double width, height;
|
2016-11-19 13:05:42 +00:00
|
|
|
static gboolean shadow_warning;
|
2016-11-15 05:19:16 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_CSS_STYLE (style));
|
|
|
|
g_return_if_fail (snapshot != NULL);
|
|
|
|
g_return_if_fail (GSK_IS_TEXTURE (texture));
|
2016-11-26 10:51:30 +00:00
|
|
|
g_return_if_fail (texture_scale > 0);
|
2016-11-15 05:19:16 +00:00
|
|
|
|
|
|
|
shadows = gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_SHADOW);
|
|
|
|
transform = gtk_css_style_get_value (style, GTK_CSS_PROPERTY_ICON_TRANSFORM);
|
2016-11-26 10:51:30 +00:00
|
|
|
width = gsk_texture_get_width (texture) / texture_scale;
|
|
|
|
height = gsk_texture_get_height (texture) / texture_scale;
|
2016-11-15 05:19:16 +00:00
|
|
|
|
2016-11-18 15:01:56 +00:00
|
|
|
if (!gtk_css_transform_value_get_matrix (transform, &transform_matrix))
|
2016-11-15 05:19:16 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
graphene_matrix_init_from_matrix (&saved_matrix, gtk_snapshot_get_transform (snapshot));
|
|
|
|
|
|
|
|
/* XXX: Implement -gtk-icon-transform-origin instead of hardcoding "50% 50%" here */
|
2016-11-26 10:51:30 +00:00
|
|
|
graphene_matrix_init_translate (&translate, &GRAPHENE_POINT3D_INIT(width / 2.0, height / 2.0, 0));
|
|
|
|
graphene_matrix_multiply (&transform_matrix, &translate, &matrix);
|
|
|
|
graphene_matrix_translate (&matrix, &GRAPHENE_POINT3D_INIT(- width / 2.0, - height / 2.0, 0));
|
|
|
|
graphene_matrix_scale (&matrix, 1.0 / texture_scale, 1.0 / texture_scale, 1);
|
|
|
|
gtk_snapshot_transform (snapshot, &matrix);
|
2016-11-15 05:19:16 +00:00
|
|
|
|
2016-11-26 10:51:30 +00:00
|
|
|
graphene_rect_init (&bounds, 0, 0, gsk_texture_get_width (texture), gsk_texture_get_height (texture));
|
2016-11-15 05:19:16 +00:00
|
|
|
|
2016-12-10 21:52:22 +00:00
|
|
|
node = gsk_texture_node_new (texture, &bounds);
|
|
|
|
gsk_render_node_set_name (node, "Icon");
|
|
|
|
gtk_snapshot_append_node (snapshot, node);
|
2016-11-19 13:05:42 +00:00
|
|
|
if (!_gtk_css_shadows_value_is_none (shadows) && !shadow_warning)
|
2016-11-15 05:19:16 +00:00
|
|
|
{
|
|
|
|
g_warning ("Painting shadows not implemented for textures yet.");
|
2016-11-19 13:05:42 +00:00
|
|
|
shadow_warning = TRUE;
|
2016-11-15 05:19:16 +00:00
|
|
|
}
|
|
|
|
gsk_render_node_unref (node);
|
|
|
|
|
|
|
|
gtk_snapshot_set_transform (snapshot, &saved_matrix);
|
|
|
|
}
|