[gtk+/gtk-style-context: 30/490] GtkStyleContext: Add gtk_render_check().



commit 035cdfc64291bb75a9df23085b34612b4dcf7344
Author: Carlos Garnacho <carlosg gnome org>
Date:   Sat Mar 20 14:26:11 2010 +0100

    GtkStyleContext: Add gtk_render_check().

 gtk/gtkstylecontext.c |   24 ++++++++++++++++++++++++
 gtk/gtkstylecontext.h |    8 ++++++++
 2 files changed, 32 insertions(+), 0 deletions(-)
---
diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c
index ddb34dc..96b7f74 100644
--- a/gtk/gtkstylecontext.c
+++ b/gtk/gtkstylecontext.c
@@ -583,5 +583,29 @@ gtk_style_context_has_child_class (GtkStyleContext    *context,
   return FALSE;
 }
 
+
+/* Paint methods */
+void
+gtk_render_check (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_check (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 cc8336e..fadd1fc 100644
--- a/gtk/gtkstylecontext.h
+++ b/gtk/gtkstylecontext.h
@@ -102,6 +102,14 @@ gboolean gtk_style_context_has_child_class   (GtkStyleContext    *context,
                                               const gchar        *class_name,
                                               GtkChildClassFlags *flags_return);
 
+/* Paint methods */
+void gtk_render_check (GtkStyleContext *context,
+                       cairo_t         *cr,
+                       gdouble          x,
+                       gdouble          y,
+                       gdouble          width,
+                       gdouble          height);
+
 G_END_DECLS
 
 #endif /* __GTK_STYLE_CONTEXT_H__ */



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