[gtk+/gtk-style-context: 232/260] 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: 232/260] GtkThemingEngine: Use border-image to render borders if an image is available.
- Date: Wed, 20 Oct 2010 10:40:56 +0000 (UTC)
commit 44181fe08185a8ec247802faca7a872862985883
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 | 18 +++++++++++++++---
1 files changed, 15 insertions(+), 3 deletions(-)
---
diff --git a/gtk/gtkthemingengine.c b/gtk/gtkthemingengine.c
index 5a2285a..a5241c3 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_save (cr);
+ 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]