GtkStyleContext: Add gtk_render_frame().
This commit is contained in:
@ -672,5 +672,26 @@ gtk_render_background (GtkStyleContext *context,
|
|||||||
engine_class->render_background (priv->theming_engine, cr, x, y, width, height);
|
engine_class->render_background (priv->theming_engine, cr, x, y, width, height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
gtk_render_frame (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_frame (priv->theming_engine, cr, x, y, width, height);
|
||||||
|
}
|
||||||
|
|
||||||
#define __GTK_STYLE_CONTEXT_C__
|
#define __GTK_STYLE_CONTEXT_C__
|
||||||
#include "gtkaliasdef.c"
|
#include "gtkaliasdef.c"
|
||||||
|
|||||||
@ -127,6 +127,12 @@ void gtk_render_background (GtkStyleContext *context,
|
|||||||
gdouble y,
|
gdouble y,
|
||||||
gdouble width,
|
gdouble width,
|
||||||
gdouble height);
|
gdouble height);
|
||||||
|
void gtk_render_frame (GtkStyleContext *context,
|
||||||
|
cairo_t *cr,
|
||||||
|
gdouble x,
|
||||||
|
gdouble y,
|
||||||
|
gdouble width,
|
||||||
|
gdouble height);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user