summaryrefslogtreecommitdiff
path: root/gtk/gtkinfobar.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-05-26 22:30:33 -0400
committerMatthias Clasen <mclasen@redhat.com>2019-05-26 22:30:33 -0400
commit8cffa11a8be6ef98be606da10f6e2eccca3b530e (patch)
tree4032a94bad5d60812384f004e352de785a9993ad /gtk/gtkinfobar.c
parentaea82cb33196e1ada5ecbea314de86f6ab79c197 (diff)
downloadgtk+-8cffa11a8be6ef98be606da10f6e2eccca3b530e.tar.gz
info bar: Make final
Diffstat (limited to 'gtk/gtkinfobar.c')
-rw-r--r--gtk/gtkinfobar.c15
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;