GtkStyleContext: Add gtk_render_arrow().

This commit is contained in:
Carlos Garnacho
2010-03-27 19:57:54 +01:00
parent b7ca7d19ee
commit 01a8e06842
2 changed files with 28 additions and 0 deletions

View File

@ -629,5 +629,27 @@ gtk_render_option (GtkStyleContext *context,
x, y, width, height); x, y, width, height);
} }
void
gtk_render_arrow (GtkStyleContext *context,
cairo_t *cr,
gdouble angle,
gdouble x,
gdouble y,
gdouble size)
{
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_arrow (priv->theming_engine, cr,
angle, x, y, size);
}
#define __GTK_STYLE_CONTEXT_C__ #define __GTK_STYLE_CONTEXT_C__
#include "gtkaliasdef.c" #include "gtkaliasdef.c"

View File

@ -115,6 +115,12 @@ void gtk_render_option (GtkStyleContext *context,
gdouble y, gdouble y,
gdouble width, gdouble width,
gdouble height); gdouble height);
void gtk_render_arrow (GtkStyleContext *context,
cairo_t *cr,
gdouble angle,
gdouble x,
gdouble y,
gdouble size);
G_END_DECLS G_END_DECLS