[gtk+/gtk-style-context] GtkThemingEngine: Use border-image to render borders if an image is available.
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/gtk-style-context] GtkThemingEngine: Use border-image to render borders if an image is available.
- Date: Fri, 24 Sep 2010 20:12:43 +0000 (UTC)
commit f0e0e563a0a149553bfaf721e5bbba84198da448
Author: Carlos Garnacho <carlosg gnome org>
Date: Fri Sep 24 22:08:49 2010 +0200
GtkThemingEngine: Use border-image to render borders if an image is available.
gtk/gtkthemingengine.c | 16 ++++++++++++++--
1 files changed, 14 insertions(+), 2 deletions(-)
---
diff --git a/gtk/gtkthemingengine.c b/gtk/gtkthemingengine.c
index 5a2285a..49720ff 100644
--- a/gtk/gtkthemingengine.c
+++ b/gtk/gtkthemingengine.c
@@ -26,6 +26,7 @@
#include <gtk/gtkstylecontext.h>
#include <gtk/gtkintl.h>
+#include "gtk9slice.h"
#include "gtkpango.h"
typedef struct GtkThemingEnginePrivate GtkThemingEnginePrivate;
@@ -961,15 +962,26 @@ gtk_theming_engine_render_frame (GtkThemingEngine *engine,
GtkStateFlags flags;
GdkColor lighter, darker;
GdkColor *bg_color;
+ Gtk9Slice *slice;
cairo_save (cr);
flags = gtk_theming_engine_get_state (engine);
- cairo_set_line_width (cr, 1);
-
gtk_theming_engine_get (engine, flags,
+ "border-image", &slice,
"background-color", &bg_color,
NULL);
+
+ if (slice)
+ {
+ gtk_9slice_render (slice, cr, x, y, width, height);
+ gtk_9slice_unref (slice);
+ gdk_color_free (bg_color);
+ return;
+ }
+
+ cairo_set_line_width (cr, 1);
+
color_shade (bg_color, 0.7, &darker);
color_shade (bg_color, 1.3, &lighter);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]