[gtk+/gtk-style-context: 54/251] GtkStyleContext: Add gtk_render_handle().



commit 0e9ce6aee35c9b1dda24f225c7eb6fe12c14fddf
Author: Carlos Garnacho <carlosg gnome org>
Date:   Sat Mar 27 21:28:44 2010 +0100

    GtkStyleContext: Add gtk_render_handle().

 gtk/gtkstylecontext.c |   22 ++++++++++++++++++++++
 gtk/gtkstylecontext.h |    7 +++++++
 2 files changed, 29 insertions(+), 0 deletions(-)
---
diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c
index c1fa38c..9ec30d0 100644
--- a/gtk/gtkstylecontext.c
+++ b/gtk/gtkstylecontext.c
@@ -846,5 +846,27 @@ gtk_render_extension (GtkStyleContext *context,
   engine_class->render_extension (priv->theming_engine, cr, x, y, width, height, gap_side);
 }
 
+void
+gtk_render_handle (GtkStyleContext *context,
+                   cairo_t         *cr,
+                   gdouble          x,
+                   gdouble          y,
+                   gdouble          width,
+                   gdouble          height,
+                   GtkOrientation   orientation)
+{
+  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_handle (priv->theming_engine, cr, x, y, width, height, orientation);
+}
+
 #define __GTK_STYLE_CONTEXT_C__
 #include "gtkaliasdef.c"
diff --git a/gtk/gtkstylecontext.h b/gtk/gtkstylecontext.h
index d0f3804..2c2485b 100644
--- a/gtk/gtkstylecontext.h
+++ b/gtk/gtkstylecontext.h
@@ -179,6 +179,13 @@ void gtk_render_extension (GtkStyleContext *context,
                            gdouble          width,
                            gdouble          height,
                            GtkPositionType  gap_side);
+void gtk_render_handle    (GtkStyleContext *context,
+                           cairo_t         *cr,
+                           gdouble          x,
+                           gdouble          y,
+                           gdouble          width,
+                           gdouble          height,
+                           GtkOrientation   orientation);
 
 G_END_DECLS
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]