style: Convert draw_slider vfunc to Cairo version

This commit is contained in:
Benjamin Otte
2010-08-17 02:46:46 +02:00
parent 24304a2e93
commit f0fd2e3a6e
3 changed files with 92 additions and 37 deletions

View File

@ -841,10 +841,9 @@ draw_focus (GtkStyle *style,
static void
draw_slider (GtkStyle *style,
GdkWindow *window,
cairo_t *cr,
GtkStateType state,
GtkShadowType shadow,
GdkRectangle *area,
GtkWidget *widget,
const gchar *detail,
gint x,
@ -855,9 +854,6 @@ draw_slider (GtkStyle *style,
{
ThemeMatchData match_data;
g_return_if_fail(style != NULL);
g_return_if_fail(window != NULL);
match_data.function = TOKEN_D_SLIDER;
match_data.detail = (gchar *)detail;
match_data.flags = (THEME_MATCH_SHADOW |
@ -867,9 +863,9 @@ draw_slider (GtkStyle *style,
match_data.state = state;
match_data.orientation = orientation;
if (!draw_simple_image_no_cairo (style, window, area, widget, &match_data, TRUE, TRUE,
if (!draw_simple_image (style, cr, widget, &match_data, TRUE, TRUE,
x, y, width, height))
parent_class->draw_slider (style, window, state, shadow, area, widget, detail,
parent_class->draw_slider (style, cr, state, shadow, widget, detail,
x, y, width, height, orientation);
}