[gimp/gtk3-port: 169/226] app: port GimpStrokeEditor to GtkStyleContext
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 169/226] app: port GimpStrokeEditor to GtkStyleContext
- Date: Thu, 2 Jan 2014 19:32:39 +0000 (UTC)
commit 1c69f9d57cfe5e9f4b66362d1f312cf81e62b2d9
Author: Michael Natterer <mitch gimp org>
Date: Mon Jan 3 14:30:12 2011 +0100
app: port GimpStrokeEditor to GtkStyleContext
app/widgets/gimpstrokeeditor.c | 25 ++++++++++++++-----------
1 files changed, 14 insertions(+), 11 deletions(-)
---
diff --git a/app/widgets/gimpstrokeeditor.c b/app/widgets/gimpstrokeeditor.c
index cc0fbab..dfedbdd 100644
--- a/app/widgets/gimpstrokeeditor.c
+++ b/app/widgets/gimpstrokeeditor.c
@@ -329,22 +329,25 @@ gimp_stroke_editor_draw_button (GtkWidget *widget,
cairo_t *cr,
gpointer data)
{
- GtkStyle *style = gtk_widget_get_style (widget);
- GtkAllocation allocation;
- gint w;
+ GtkStyleContext *style = gtk_widget_get_style_context (widget);
+ GtkAllocation allocation;
+ gint w;
gtk_widget_get_allocation (widget, &allocation);
w = MIN (allocation.width, allocation.height) * 2 / 3;
- gtk_paint_arrow (style, cr,
- gtk_widget_get_state (widget),
- GTK_SHADOW_IN,
- widget, NULL,
- data ? GTK_ARROW_LEFT : GTK_ARROW_RIGHT, TRUE,
- (allocation.width - w) / 2,
- (allocation.height - w) / 2,
- w, w);
+ gtk_style_context_save (style);
+ gtk_style_context_set_state (style, gtk_widget_get_state_flags (widget));
+
+ gtk_render_arrow (style, cr,
+ data ? 3 * (G_PI / 2) : 1 * (G_PI / 2),
+ (allocation.width - w) / 2,
+ (allocation.height - w) / 2,
+ w);
+
+ gtk_style_context_restore (style);
+
return FALSE;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]