summaryrefslogtreecommitdiff
path: root/gtk/gtkstyle.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2009-11-27 01:23:55 -0500
committerMatthias Clasen <mclasen@redhat.com>2009-11-27 01:23:55 -0500
commit0567ea1c1834609821460abb91bd4144da565c7a (patch)
treeff1ab63137775078bd6b217c6092162930d0fb60 /gtk/gtkstyle.h
parentc1dfd2f2f5a958eb73f7e9f6a653963b58008d79 (diff)
downloadgtk+-0567ea1c1834609821460abb91bd4144da565c7a.tar.gz
Add customary args to gtk_style_paint_spinner()
...and adjust all callers.
Diffstat (limited to 'gtk/gtkstyle.h')
-rw-r--r--gtk/gtkstyle.h22
1 files changed, 14 insertions, 8 deletions
diff --git a/gtk/gtkstyle.h b/gtk/gtkstyle.h
index 3e1401bcf4..75dc109ec9 100644
--- a/gtk/gtkstyle.h
+++ b/gtk/gtkstyle.h
@@ -406,6 +406,9 @@ struct _GtkStyleClass
void (*draw_spinner) (GtkStyle *style,
GdkWindow *window,
GtkStateType state_type,
+ GdkRectangle *area,
+ GtkWidget *widget,
+ const gchar *detail,
guint step,
gint x,
gint y,
@@ -863,14 +866,17 @@ void gtk_paint_resize_grip (GtkStyle *style,
gint y,
gint width,
gint height);
-void gtk_paint_spinner (GtkStyle *style,
- GdkWindow *window,
- GtkStateType state_type,
- guint step,
- gint x,
- gint y,
- gint width,
- gint height);
+void gtk_paint_spinner (GtkStyle *style,
+ GdkWindow *window,
+ GtkStateType state_type,
+ const GdkRectangle *area,
+ GtkWidget *widget,
+ const gchar *detail,
+ guint step,
+ gint x,
+ gint y,
+ gint width,
+ gint height);
GType gtk_border_get_type (void) G_GNUC_CONST;
GtkBorder *gtk_border_new (void) G_GNUC_MALLOC;