[gtk/path-work-rebased: 9/123] popover: Use fill and stroke nodes instead of Cairo
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/path-work-rebased: 9/123] popover: Use fill and stroke nodes instead of Cairo
- Date: Thu, 7 Apr 2022 20:40:54 +0000 (UTC)
commit e75ec3339a2ae852433a7d1bc1464e3cc1289ec4
Author: Benjamin Otte <otte redhat com>
Date: Wed Nov 11 07:56:03 2020 +0100
popover: Use fill and stroke nodes instead of Cairo
... to render the arrow.
The arrow should really be turned into a real thing - maybe an icon?
gtk/gtkpopover.c | 61 +++++++++++++++++++++++++++++++++++++-------------------
1 file changed, 40 insertions(+), 21 deletions(-)
---
diff --git a/gtk/gtkpopover.c b/gtk/gtkpopover.c
index 2f4a33493e..09bf41328a 100644
--- a/gtk/gtkpopover.c
+++ b/gtk/gtkpopover.c
@@ -1291,6 +1291,28 @@ get_border (GtkCssNode *node,
border->left = _gtk_css_number_value_get (style->border->border_left_width, 100);
}
+static GskPath *
+gtk_popover_get_tail_path (GtkPopover *popover)
+{
+ GskPathBuilder *builder;
+ int initial_x, initial_y;
+ int tip_x, tip_y;
+ int final_x, final_y;
+
+ builder = gsk_path_builder_new ();
+
+ gtk_popover_get_gap_coords (popover,
+ &initial_x, &initial_y,
+ &tip_x, &tip_y,
+ &final_x, &final_y);
+
+ gsk_path_builder_move_to (builder, initial_x, initial_y);
+ gsk_path_builder_line_to (builder, tip_x, tip_y);
+ gsk_path_builder_line_to (builder, final_x, final_y);
+
+ return gsk_path_builder_free_to_path (builder);
+}
+
static void
gtk_popover_apply_tail_path (GtkPopover *popover,
cairo_t *cr)
@@ -1548,22 +1570,14 @@ create_arrow_render_node (GtkPopover *popover)
GtkWidget *widget = GTK_WIDGET (popover);
GtkStyleContext *context;
GtkBorder border;
- cairo_t *cr;
GtkSnapshot *snapshot;
+ GskPath *path;
snapshot = gtk_snapshot_new ();
- cr = gtk_snapshot_append_cairo (snapshot,
- &GRAPHENE_RECT_INIT (
- 0, 0,
- gtk_widget_get_width (widget),
- gtk_widget_get_height (widget)
- ));
-
/* Clip to the arrow shape */
- cairo_save (cr);
- gtk_popover_apply_tail_path (popover, cr);
- cairo_clip (cr);
+ path = gtk_popover_get_tail_path (popover);
+ gtk_snapshot_push_fill (snapshot, path, GSK_FILL_RULE_WINDING);
get_border (priv->arrow_node, &border);
@@ -1571,29 +1585,34 @@ create_arrow_render_node (GtkPopover *popover)
gtk_style_context_save_to_node (context, priv->arrow_node);
/* Render the arrow background */
- gtk_render_background (context, cr,
- 0, 0,
- gtk_widget_get_width (widget),
- gtk_widget_get_height (widget));
+ gtk_snapshot_render_background (snapshot, context,
+ 0, 0,
+ gtk_widget_get_width (widget),
+ gtk_widget_get_height (widget));
/* Render the border of the arrow tip */
if (border.bottom > 0)
{
GtkCssStyle *style;
const GdkRGBA *border_color;
+ GskStroke *stroke;
+ graphene_rect_t bounds;
style = gtk_css_node_get_style (priv->arrow_node);
border_color = gtk_css_color_value_get_rgba (style->border->border_left_color ?
style->border->border_left_color : style->core->color);
- gtk_popover_apply_tail_path (popover, cr);
- gdk_cairo_set_source_rgba (cr, border_color);
+ stroke = gsk_stroke_new (border.bottom + 1);
+ gtk_snapshot_push_stroke (snapshot, path, stroke);
+ gsk_stroke_free (stroke);
+
+ gsk_path_get_bounds (path, &bounds);
+ gtk_snapshot_append_color (snapshot, border_color, &bounds);
- cairo_set_line_width (cr, border.bottom + 1);
- cairo_stroke (cr);
+ gtk_snapshot_pop (snapshot);
}
- cairo_restore (cr);
- cairo_destroy (cr);
+ gtk_snapshot_pop (snapshot);
+ gsk_path_unref (path);
gtk_style_context_restore (context);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]