#include "gtkbinlayout.h"
#include "gtkgestureclick.h"
+#include "a11y/gtkcontaineraccessibleprivate.h"
+
/**
* SECTION:gtkinfobar
* @short_description: Report important messages to the user
gtk_container_remove (GTK_CONTAINER (priv->content_area), child);
}
+static void
+gtk_info_bar_forall (GtkContainer *container,
+ GtkCallback callback,
+ gpointer user_data)
+{
+ GtkInfoBar *self = GTK_INFO_BAR (container);
+ GtkInfoBarPrivate *priv = gtk_info_bar_get_instance_private (self);
+
+ if (priv->revealer)
+ (*callback) (priv->revealer, user_data);
+}
+
static void
gtk_info_bar_dispose (GObject *object)
{
container_class->add = gtk_info_bar_add;
container_class->remove = gtk_info_bar_remove;
+ container_class->forall = gtk_info_bar_forall;
klass->close = gtk_info_bar_close;