[gtk+/gtk-style-context: 36/251] GtkStyleContext: Add gtk_render_background().
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/gtk-style-context: 36/251] GtkStyleContext: Add gtk_render_background().
- Date: Tue, 12 Oct 2010 01:58:09 +0000 (UTC)
commit 9866f88a263f4a09c8059f651b633bd17fd74e75
Author: Carlos Garnacho <carlosg gnome org>
Date: Sat Mar 27 20:08:23 2010 +0100
GtkStyleContext: Add gtk_render_background().
gtk/gtkstylecontext.c | 21 +++++++++++++++++++++
gtk/gtkstylecontext.h | 6 ++++++
2 files changed, 27 insertions(+), 0 deletions(-)
---
diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c
index 43fb27a..6f44c6d 100644
--- a/gtk/gtkstylecontext.c
+++ b/gtk/gtkstylecontext.c
@@ -651,5 +651,26 @@ gtk_render_arrow (GtkStyleContext *context,
angle, x, y, size);
}
+void
+gtk_render_background (GtkStyleContext *context,
+ cairo_t *cr,
+ gdouble x,
+ gdouble y,
+ gdouble width,
+ gdouble height)
+{
+ GtkStyleContextPrivate *priv;
+ GtkThemingEngineClass *engine_class;
+
+ g_return_if_fail (GTK_IS_STYLE_CONTEXT (context));
+ g_return_if_fail (cr != NULL);
+
+ priv = GTK_STYLE_CONTEXT_GET_PRIVATE (context);
+ engine_class = GTK_THEMING_ENGINE_GET_CLASS (priv->theming_engine);
+
+ _gtk_theming_engine_set_context (priv->theming_engine, context);
+ engine_class->render_background (priv->theming_engine, cr, x, y, width, height);
+}
+
#define __GTK_STYLE_CONTEXT_C__
#include "gtkaliasdef.c"
diff --git a/gtk/gtkstylecontext.h b/gtk/gtkstylecontext.h
index 806d25f..e68d6f9 100644
--- a/gtk/gtkstylecontext.h
+++ b/gtk/gtkstylecontext.h
@@ -121,6 +121,12 @@ void gtk_render_arrow (GtkStyleContext *context,
gdouble x,
gdouble y,
gdouble size);
+void gtk_render_background (GtkStyleContext *context,
+ cairo_t *cr,
+ gdouble x,
+ gdouble y,
+ gdouble width,
+ gdouble height);
G_END_DECLS
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]