diff options
Diffstat (limited to 'gtk/gtkinfobar.c')
-rw-r--r-- | gtk/gtkinfobar.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gtk/gtkinfobar.c b/gtk/gtkinfobar.c index 625883a71d..85d18f01b7 100644 --- a/gtk/gtkinfobar.c +++ b/gtk/gtkinfobar.c @@ -135,6 +135,21 @@ enum LAST_PROP }; +typedef struct _GtkInfoBarClass GtkInfoBarClass; + +struct _GtkInfoBar +{ + GtkBox parent_instance; +}; + +struct _GtkInfoBarClass +{ + GtkBoxClass parent_class; + + void (* response) (GtkInfoBar *info_bar, gint response_id); + void (* close) (GtkInfoBar *info_bar); +}; + typedef struct { GtkWidget *content_area; |