diff options
author | Carsten Haitzler <raster@src.gnome.org> | 1998-07-03 20:33:16 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@src.gnome.org> | 1998-07-03 20:33:16 +0000 |
commit | 4389781ea1ec28ddcfc7a2c7f543ce7405d34f31 (patch) | |
tree | 924b41dff9752c6dd7f91fdea0e5b4f51135c302 /gtk/gtkcheckbutton.h | |
parent | 0da6bdc3304d7fcd0d37e04a117804b229990d1f (diff) | |
download | gtk+-themes.tar.gz |
Wheee now others can get to play :)themes
Wheee now others can get to play :)
Diffstat (limited to 'gtk/gtkcheckbutton.h')
-rw-r--r-- | gtk/gtkcheckbutton.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/gtk/gtkcheckbutton.h b/gtk/gtkcheckbutton.h index 8994db563e..45ee37b953 100644 --- a/gtk/gtkcheckbutton.h +++ b/gtk/gtkcheckbutton.h @@ -38,7 +38,12 @@ typedef struct _GtkCheckButtonClass GtkCheckButtonClass; struct _GtkCheckButton { - GtkToggleButton toggle_button; + GtkToggleButton toggle_button; + + void (* init) (GtkWidget *button); + void (* border) (GtkWidget *button); + void (* draw) (GtkWidget *button, GdkRectangle *area); + void (* exit) (GtkWidget *button); }; struct _GtkCheckButtonClass @@ -56,7 +61,13 @@ struct _GtkCheckButtonClass guint gtk_check_button_get_type (void); GtkWidget* gtk_check_button_new (void); GtkWidget* gtk_check_button_new_with_label (const gchar *label); - +void gtk_check_button_set_theme (GtkCheckButton *check_button, + void (* init) (GtkWidget *check_button), + void (* border) (GtkWidget *check_button), + void (* draw) (GtkWidget *check_button, GdkRectangle *area), + void (* exit) (GtkWidget *check_button)); + + #ifdef __cplusplus } |