[gtk/wip/otte/transform: 13/37] calendar: Use new snapshot transforms
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/otte/transform: 13/37] calendar: Use new snapshot transforms
- Date: Thu, 21 Feb 2019 06:21:55 +0000 (UTC)
commit b1f88b4279e903bcdc50d4d4e5a8773b9365b80c
Author: Benjamin Otte <otte redhat com>
Date: Thu Feb 21 05:34:12 2019 +0100
calendar: Use new snapshot transforms
gtk/gtkcalendar.c | 21 +++++++++------------
1 file changed, 9 insertions(+), 12 deletions(-)
---
diff --git a/gtk/gtkcalendar.c b/gtk/gtkcalendar.c
index 561a474f5b..6b941ced3e 100644
--- a/gtk/gtkcalendar.c
+++ b/gtk/gtkcalendar.c
@@ -2010,9 +2010,9 @@ calendar_snapshot_day_names (GtkCalendar *calendar,
get_component_paddings (calendar, NULL, &day_name_padding, NULL);
context = gtk_widget_get_style_context (widget);
- gtk_snapshot_offset (snapshot,
- inner_border,
- priv->header_h + inner_border);
+ gtk_snapshot_save (snapshot);
+ gtk_snapshot_translate (snapshot,
+ &GRAPHENE_POINT_INIT (inner_border, priv->header_h + inner_border));
day_width = priv->day_width;
cal_width = gtk_widget_get_width (widget) - (inner_border * 2);
@@ -2073,9 +2073,7 @@ calendar_snapshot_day_names (GtkCalendar *calendar,
g_object_unref (layout);
gtk_style_context_restore (context);
- gtk_snapshot_offset (snapshot,
- - inner_border,
- - (priv->header_h + inner_border));
+ gtk_snapshot_restore (snapshot);
}
static void
@@ -2403,16 +2401,15 @@ calendar_snapshot_arrow (GtkCalendar *calendar,
else
image_type = GTK_CSS_IMAGE_BUILTIN_ARROW_RIGHT;
- gtk_snapshot_offset (snapshot,
- rect.x + (rect.width - 8) / 2,
- rect.y + (rect.height - 8) / 2);
+ gtk_snapshot_save (snapshot);
+ gtk_snapshot_translate (snapshot, &GRAPHENE_POINT_INIT(
+ rect.x + (rect.width - 8) / 2,
+ rect.y + (rect.height - 8) / 2));
gtk_css_style_snapshot_icon (gtk_style_context_lookup_style (context),
snapshot,
8, 8,
image_type);
- gtk_snapshot_offset (snapshot,
- - rect.x - (rect.width - 8) / 2,
- - rect.y - (rect.height - 8) / 2);
+ gtk_snapshot_restore (snapshot);
gtk_style_context_restore (context);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]