GtkStyleContext: Add gtk_render_slider().

This commit is contained in:
Carlos Garnacho 2010-03-27 21:21:34 +01:00
parent 2ebdf80adc
commit 6a1b54f8bf
2 changed files with 29 additions and 0 deletions

View File

@ -776,5 +776,27 @@ gtk_render_line (GtkStyleContext *context,
engine_class->render_line (priv->theming_engine, cr, x0, y0, x1, y1);
}
void
gtk_render_slider (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_slider (priv->theming_engine, cr, x, y, width, height, orientation);
}
#define __GTK_STYLE_CONTEXT_C__
#include "gtkaliasdef.c"

View File

@ -156,6 +156,13 @@ void gtk_render_line (GtkStyleContext *context,
gdouble y0,
gdouble x1,
gdouble y1);
void gtk_render_slider (GtkStyleContext *context,
cairo_t *cr,
gdouble x,
gdouble y,
gdouble width,
gdouble height,
GtkOrientation orientation);
G_END_DECLS