2009-06-05 18:56:08 +00:00
|
|
|
|
/*
|
|
|
|
|
* gtkinfobar.c
|
|
|
|
|
* This file is part of GTK+
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2005 - Paolo Maggi
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Modified by the gedit Team, 2005. See the AUTHORS file for a
|
|
|
|
|
* list of people on the gtk Team.
|
|
|
|
|
* See the gedit ChangeLog files for a list of changes.
|
|
|
|
|
*
|
|
|
|
|
* Modified by the GTK+ team, 2008-2009.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
|
#include "gtkinfobar.h"
|
|
|
|
|
#include "gtkaccessible.h"
|
|
|
|
|
#include "gtkbuildable.h"
|
2015-04-25 23:35:22 +00:00
|
|
|
|
#include "gtkbuilderprivate.h"
|
2011-06-08 01:25:20 +00:00
|
|
|
|
#include "gtkbbox.h"
|
2009-06-05 18:56:08 +00:00
|
|
|
|
#include "gtkbox.h"
|
|
|
|
|
#include "gtklabel.h"
|
|
|
|
|
#include "gtkbutton.h"
|
|
|
|
|
#include "gtkenums.h"
|
|
|
|
|
#include "gtkbindings.h"
|
|
|
|
|
#include "gtkdialog.h"
|
2013-07-31 16:40:52 +00:00
|
|
|
|
#include "gtkrevealer.h"
|
2009-06-05 18:56:08 +00:00
|
|
|
|
#include "gtkintl.h"
|
|
|
|
|
#include "gtkprivate.h"
|
2011-06-07 23:55:03 +00:00
|
|
|
|
#include "gtkorientable.h"
|
2014-06-15 15:57:59 +00:00
|
|
|
|
#include "gtkrender.h"
|
2011-01-04 19:51:19 +00:00
|
|
|
|
#include "gtktypebuiltins.h"
|
2016-01-02 23:28:12 +00:00
|
|
|
|
#include "gtkwidgetprivate.h"
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* SECTION:gtkinfobar
|
|
|
|
|
* @short_description: Report important messages to the user
|
|
|
|
|
* @include: gtk/gtk.h
|
|
|
|
|
* @see_also: #GtkStatusbar, #GtkMessageDialog
|
|
|
|
|
*
|
|
|
|
|
* #GtkInfoBar is a widget that can be used to show messages to
|
|
|
|
|
* the user without showing a dialog. It is often temporarily shown
|
|
|
|
|
* at the top or bottom of a document. In contrast to #GtkDialog, which
|
2013-07-15 13:33:44 +00:00
|
|
|
|
* has a action area at the bottom, #GtkInfoBar has an action area
|
|
|
|
|
* at the side.
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
|
|
|
|
* The API of #GtkInfoBar is very similar to #GtkDialog, allowing you
|
|
|
|
|
* to add buttons to the action area with gtk_info_bar_add_button() or
|
|
|
|
|
* gtk_info_bar_new_with_buttons(). The sensitivity of action widgets
|
|
|
|
|
* can be controlled with gtk_info_bar_set_response_sensitive().
|
|
|
|
|
* To add widgets to the main content area of a #GtkInfoBar, use
|
2009-06-08 13:54:59 +00:00
|
|
|
|
* gtk_info_bar_get_content_area() and add your widgets to the container.
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
|
|
|
|
* Similar to #GtkMessageDialog, the contents of a #GtkInfoBar can by
|
|
|
|
|
* classified as error message, warning, informational message, etc,
|
2013-07-15 16:37:58 +00:00
|
|
|
|
* by using gtk_info_bar_set_message_type(). GTK+ may use the message type
|
|
|
|
|
* to determine how the message is displayed.
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
2014-02-02 05:29:00 +00:00
|
|
|
|
* A simple example for using a GtkInfoBar:
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // set up info bar
|
2014-02-12 21:09:09 +00:00
|
|
|
|
* GtkWidget *widget;
|
|
|
|
|
* GtkInfoBar *bar;
|
|
|
|
|
*
|
|
|
|
|
* widget = gtk_info_bar_new ();
|
|
|
|
|
* bar = GTK_INFO_BAR (bar);
|
|
|
|
|
*
|
|
|
|
|
* gtk_widget_set_no_show_all (widget, TRUE);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* message_label = gtk_label_new ("");
|
|
|
|
|
* gtk_widget_show (message_label);
|
2014-02-12 21:09:09 +00:00
|
|
|
|
* content_area = gtk_info_bar_get_content_area (bar);
|
|
|
|
|
* gtk_container_add (GTK_CONTAINER (content_area),
|
|
|
|
|
* message_label);
|
|
|
|
|
* gtk_info_bar_add_button (bar,
|
|
|
|
|
* _("_OK"),
|
|
|
|
|
* GTK_RESPONSE_OK);
|
|
|
|
|
* g_signal_connect (bar,
|
|
|
|
|
* "response",
|
|
|
|
|
* G_CALLBACK (gtk_widget_hide),
|
|
|
|
|
* NULL);
|
2011-09-28 23:06:21 +00:00
|
|
|
|
* gtk_grid_attach (GTK_GRID (grid),
|
2014-02-12 21:09:09 +00:00
|
|
|
|
* widget,
|
2011-09-28 23:06:21 +00:00
|
|
|
|
* 0, 2, 1, 1);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* ...
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // show an error message
|
2014-02-12 21:09:09 +00:00
|
|
|
|
* gtk_label_set_text (GTK_LABEL (message_label), message);
|
|
|
|
|
* gtk_info_bar_set_message_type (bar,
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* GTK_MESSAGE_ERROR);
|
2014-02-12 21:09:09 +00:00
|
|
|
|
* gtk_widget_show (bar);
|
2014-01-27 17:12:55 +00:00
|
|
|
|
* ]|
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
2014-02-05 02:00:58 +00:00
|
|
|
|
* # GtkInfoBar as GtkBuildable
|
2014-02-02 05:29:00 +00:00
|
|
|
|
*
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* The GtkInfoBar implementation of the GtkBuildable interface exposes
|
|
|
|
|
* the content area and action area as internal children with the names
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* “content_area” and “action_area”.
|
2014-02-02 05:29:00 +00:00
|
|
|
|
*
|
2014-02-09 22:24:06 +00:00
|
|
|
|
* GtkInfoBar supports a custom <action-widgets> element, which can contain
|
|
|
|
|
* multiple <action-widget> elements. The “response” attribute specifies a
|
|
|
|
|
* numeric response, and the content of the element is the id of widget
|
|
|
|
|
* (which should be a child of the dialogs @action_area).
|
2015-10-25 21:18:20 +00:00
|
|
|
|
*
|
|
|
|
|
* # CSS nodes
|
|
|
|
|
*
|
|
|
|
|
* GtkInfoBar has a single CSS node with name infobar. The node may get
|
2016-05-02 06:59:40 +00:00
|
|
|
|
* one of the style classes .info, .warning, .error or .question, depending
|
2015-10-25 21:18:20 +00:00
|
|
|
|
* on the message type.
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
PROP_0,
|
2013-07-15 19:04:56 +00:00
|
|
|
|
PROP_MESSAGE_TYPE,
|
|
|
|
|
PROP_SHOW_CLOSE_BUTTON
|
2009-06-05 18:56:08 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct _GtkInfoBarPrivate
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *content_area;
|
|
|
|
|
GtkWidget *action_area;
|
2013-07-15 19:04:56 +00:00
|
|
|
|
GtkWidget *close_button;
|
2013-07-31 16:40:52 +00:00
|
|
|
|
GtkWidget *revealer;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2013-07-15 19:04:56 +00:00
|
|
|
|
gboolean show_close_button;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
GtkMessageType message_type;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef struct _ResponseData ResponseData;
|
|
|
|
|
|
|
|
|
|
struct _ResponseData
|
|
|
|
|
{
|
|
|
|
|
gint response_id;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
RESPONSE,
|
|
|
|
|
CLOSE,
|
|
|
|
|
LAST_SIGNAL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static guint signals[LAST_SIGNAL];
|
|
|
|
|
|
2012-05-07 21:34:46 +00:00
|
|
|
|
#define ACTION_AREA_DEFAULT_BORDER 5
|
|
|
|
|
#define ACTION_AREA_DEFAULT_SPACING 6
|
|
|
|
|
#define CONTENT_AREA_DEFAULT_BORDER 8
|
|
|
|
|
#define CONTENT_AREA_DEFAULT_SPACING 16
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
static void gtk_info_bar_set_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
static void gtk_info_bar_get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
static void gtk_info_bar_buildable_interface_init (GtkBuildableIface *iface);
|
|
|
|
|
static gboolean gtk_info_bar_buildable_custom_tag_start (GtkBuildable *buildable,
|
|
|
|
|
GtkBuilder *builder,
|
|
|
|
|
GObject *child,
|
|
|
|
|
const gchar *tagname,
|
|
|
|
|
GMarkupParser *parser,
|
|
|
|
|
gpointer *data);
|
|
|
|
|
static void gtk_info_bar_buildable_custom_finished (GtkBuildable *buildable,
|
|
|
|
|
GtkBuilder *builder,
|
|
|
|
|
GObject *child,
|
|
|
|
|
const gchar *tagname,
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
|
|
|
2011-06-07 23:55:03 +00:00
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GtkInfoBar, gtk_info_bar, GTK_TYPE_BOX,
|
2013-06-27 19:02:52 +00:00
|
|
|
|
G_ADD_PRIVATE (GtkInfoBar)
|
2009-06-05 18:56:08 +00:00
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_BUILDABLE,
|
|
|
|
|
gtk_info_bar_buildable_interface_init))
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_info_bar_set_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
2011-01-24 02:50:39 +00:00
|
|
|
|
GtkInfoBar *info_bar = GTK_INFO_BAR (object);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
|
{
|
|
|
|
|
case PROP_MESSAGE_TYPE:
|
|
|
|
|
gtk_info_bar_set_message_type (info_bar, g_value_get_enum (value));
|
|
|
|
|
break;
|
2013-07-15 19:04:56 +00:00
|
|
|
|
case PROP_SHOW_CLOSE_BUTTON:
|
|
|
|
|
gtk_info_bar_set_show_close_button (info_bar, g_value_get_boolean (value));
|
|
|
|
|
break;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_info_bar_get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
2011-01-24 02:50:39 +00:00
|
|
|
|
GtkInfoBar *info_bar = GTK_INFO_BAR (object);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
|
{
|
|
|
|
|
case PROP_MESSAGE_TYPE:
|
|
|
|
|
g_value_set_enum (value, gtk_info_bar_get_message_type (info_bar));
|
|
|
|
|
break;
|
2013-07-15 19:04:56 +00:00
|
|
|
|
case PROP_SHOW_CLOSE_BUTTON:
|
|
|
|
|
g_value_set_boolean (value, gtk_info_bar_get_show_close_button (info_bar));
|
|
|
|
|
break;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
response_data_free (gpointer data)
|
|
|
|
|
{
|
|
|
|
|
g_slice_free (ResponseData, data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static ResponseData *
|
|
|
|
|
get_response_data (GtkWidget *widget,
|
|
|
|
|
gboolean create)
|
|
|
|
|
{
|
|
|
|
|
ResponseData *ad = g_object_get_data (G_OBJECT (widget),
|
|
|
|
|
"gtk-info-bar-response-data");
|
|
|
|
|
|
|
|
|
|
if (ad == NULL && create)
|
|
|
|
|
{
|
|
|
|
|
ad = g_slice_new (ResponseData);
|
|
|
|
|
|
|
|
|
|
g_object_set_data_full (G_OBJECT (widget),
|
|
|
|
|
I_("gtk-info-bar-response-data"),
|
|
|
|
|
ad,
|
|
|
|
|
response_data_free);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ad;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GtkWidget *
|
|
|
|
|
find_button (GtkInfoBar *info_bar,
|
|
|
|
|
gint response_id)
|
|
|
|
|
{
|
|
|
|
|
GList *children, *list;
|
|
|
|
|
GtkWidget *child = NULL;
|
|
|
|
|
|
|
|
|
|
children = gtk_container_get_children (GTK_CONTAINER (info_bar->priv->action_area));
|
|
|
|
|
|
|
|
|
|
for (list = children; list; list = list->next)
|
|
|
|
|
{
|
|
|
|
|
ResponseData *rd = get_response_data (list->data, FALSE);
|
|
|
|
|
|
|
|
|
|
if (rd && rd->response_id == response_id)
|
|
|
|
|
{
|
|
|
|
|
child = list->data;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_list_free (children);
|
|
|
|
|
|
|
|
|
|
return child;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_info_bar_close (GtkInfoBar *info_bar)
|
|
|
|
|
{
|
2013-07-15 19:04:56 +00:00
|
|
|
|
if (!gtk_widget_get_visible (info_bar->priv->close_button)
|
|
|
|
|
&& !find_button (info_bar, GTK_RESPONSE_CANCEL))
|
2009-06-05 18:56:08 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
gtk_info_bar_response (GTK_INFO_BAR (info_bar),
|
|
|
|
|
GTK_RESPONSE_CANCEL);
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-31 16:40:52 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_info_bar_show (GtkWidget *widget)
|
|
|
|
|
{
|
|
|
|
|
GtkInfoBarPrivate *priv = GTK_INFO_BAR (widget)->priv;
|
|
|
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (gtk_info_bar_parent_class)->show (widget);
|
|
|
|
|
|
|
|
|
|
gtk_revealer_set_reveal_child (GTK_REVEALER (priv->revealer), TRUE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
child_revealed (GObject *object, GParamSpec *pspec, gpointer data)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *widget = data;
|
|
|
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (gtk_info_bar_parent_class)->hide (widget);
|
|
|
|
|
g_signal_handlers_disconnect_by_func (object, child_revealed, widget);
|
|
|
|
|
g_object_notify (G_OBJECT (widget), "visible");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_info_bar_hide (GtkWidget *widget)
|
|
|
|
|
{
|
|
|
|
|
GtkInfoBarPrivate *priv = GTK_INFO_BAR (widget)->priv;
|
|
|
|
|
|
|
|
|
|
g_signal_connect_object (priv->revealer, "notify::child-revealed",
|
|
|
|
|
G_CALLBACK (child_revealed), widget, 0);
|
2013-11-29 12:13:34 +00:00
|
|
|
|
gtk_revealer_set_reveal_child (GTK_REVEALER (priv->revealer), FALSE);
|
2013-07-31 16:40:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-05 18:56:08 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_info_bar_class_init (GtkInfoBarClass *klass)
|
|
|
|
|
{
|
|
|
|
|
GtkWidgetClass *widget_class;
|
|
|
|
|
GObjectClass *object_class;
|
|
|
|
|
GtkBindingSet *binding_set;
|
|
|
|
|
|
|
|
|
|
widget_class = GTK_WIDGET_CLASS (klass);
|
|
|
|
|
object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
|
|
object_class->get_property = gtk_info_bar_get_property;
|
|
|
|
|
object_class->set_property = gtk_info_bar_set_property;
|
|
|
|
|
|
2013-07-31 16:40:52 +00:00
|
|
|
|
widget_class->show = gtk_info_bar_show;
|
|
|
|
|
widget_class->hide = gtk_info_bar_hide;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
klass->close = gtk_info_bar_close;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkInfoBar:message-type:
|
|
|
|
|
*
|
|
|
|
|
* The type of the message.
|
|
|
|
|
*
|
2013-07-15 16:37:58 +00:00
|
|
|
|
* The type may be used to determine the appearance of the info bar.
|
2009-06-22 21:22:23 +00:00
|
|
|
|
*
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
|
PROP_MESSAGE_TYPE,
|
|
|
|
|
g_param_spec_enum ("message-type",
|
|
|
|
|
P_("Message Type"),
|
|
|
|
|
P_("The type of message"),
|
|
|
|
|
GTK_TYPE_MESSAGE_TYPE,
|
2009-06-22 21:22:23 +00:00
|
|
|
|
GTK_MESSAGE_INFO,
|
2014-06-09 13:00:05 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_CONSTRUCT|G_PARAM_EXPLICIT_NOTIFY));
|
2013-07-15 19:04:56 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkInfoBar:show-close-button:
|
|
|
|
|
*
|
|
|
|
|
* Whether to include a standard close button.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.10
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
|
PROP_SHOW_CLOSE_BUTTON,
|
|
|
|
|
g_param_spec_boolean ("show-close-button",
|
|
|
|
|
P_("Show Close Button"),
|
|
|
|
|
P_("Whether to include a standard close button"),
|
|
|
|
|
FALSE,
|
2014-06-09 13:00:05 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_CONSTRUCT|G_PARAM_EXPLICIT_NOTIFY));
|
2009-06-05 18:56:08 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkInfoBar::response:
|
|
|
|
|
* @info_bar: the object on which the signal is emitted
|
|
|
|
|
* @response_id: the response ID
|
|
|
|
|
*
|
|
|
|
|
* Emitted when an action widget is clicked or the application programmer
|
|
|
|
|
* calls gtk_dialog_response(). The @response_id depends on which action
|
|
|
|
|
* widget was clicked.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
signals[RESPONSE] = g_signal_new (I_("response"),
|
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
|
G_STRUCT_OFFSET (GtkInfoBarClass, response),
|
|
|
|
|
NULL, NULL,
|
|
|
|
|
g_cclosure_marshal_VOID__INT,
|
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
|
G_TYPE_INT);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkInfoBar::close:
|
|
|
|
|
*
|
|
|
|
|
* The ::close signal is a
|
2014-02-07 20:37:02 +00:00
|
|
|
|
* [keybinding signal][GtkBindingSignal]
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* which gets emitted when the user uses a keybinding to dismiss
|
|
|
|
|
* the info bar.
|
|
|
|
|
*
|
|
|
|
|
* The default binding for this signal is the Escape key.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
signals[CLOSE] = g_signal_new (I_("close"),
|
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
|
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
|
|
|
|
|
G_STRUCT_OFFSET (GtkInfoBarClass, close),
|
|
|
|
|
NULL, NULL,
|
|
|
|
|
g_cclosure_marshal_VOID__VOID,
|
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
|
|
|
|
|
binding_set = gtk_binding_set_by_class (klass);
|
|
|
|
|
|
2010-09-08 17:35:51 +00:00
|
|
|
|
gtk_binding_entry_add_signal (binding_set, GDK_KEY_Escape, 0, "close", 0);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2013-03-22 10:45:31 +00:00
|
|
|
|
/* Bind class to template
|
|
|
|
|
*/
|
2014-01-23 23:59:20 +00:00
|
|
|
|
gtk_widget_class_set_template_from_resource (widget_class, "/org/gtk/libgtk/ui/gtkinfobar.ui");
|
2013-07-26 20:29:12 +00:00
|
|
|
|
gtk_widget_class_bind_template_child_internal_private (widget_class, GtkInfoBar, content_area);
|
|
|
|
|
gtk_widget_class_bind_template_child_internal_private (widget_class, GtkInfoBar, action_area);
|
2016-01-29 03:49:36 +00:00
|
|
|
|
gtk_widget_class_bind_template_child_private (widget_class, GtkInfoBar, close_button);
|
|
|
|
|
gtk_widget_class_bind_template_child_private (widget_class, GtkInfoBar, revealer);
|
2015-10-25 21:18:20 +00:00
|
|
|
|
|
|
|
|
|
gtk_widget_class_set_css_name (widget_class, "infobar");
|
2013-07-15 19:04:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
close_button_clicked_cb (GtkWidget *button,
|
|
|
|
|
GtkInfoBar *info_bar)
|
|
|
|
|
{
|
|
|
|
|
gtk_info_bar_response (GTK_INFO_BAR (info_bar),
|
|
|
|
|
GTK_RESPONSE_CLOSE);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_info_bar_init (GtkInfoBar *info_bar)
|
|
|
|
|
{
|
2016-01-02 23:09:21 +00:00
|
|
|
|
GtkInfoBarPrivate *priv;
|
2011-06-17 03:18:03 +00:00
|
|
|
|
GtkWidget *widget = GTK_WIDGET (info_bar);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2016-01-02 23:09:21 +00:00
|
|
|
|
priv = info_bar->priv = gtk_info_bar_get_instance_private (info_bar);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2011-06-17 03:18:03 +00:00
|
|
|
|
gtk_widget_set_redraw_on_allocate (widget, TRUE);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2012-02-23 23:16:33 +00:00
|
|
|
|
/* message-type is a CONSTRUCT property, so we init to a value
|
|
|
|
|
* different from its default to trigger its property setter
|
|
|
|
|
* during construction */
|
2016-01-02 23:09:21 +00:00
|
|
|
|
priv->message_type = GTK_MESSAGE_OTHER;
|
2012-02-23 23:16:33 +00:00
|
|
|
|
|
2016-01-02 23:09:21 +00:00
|
|
|
|
gtk_widget_init_template (widget);
|
2013-07-15 19:04:56 +00:00
|
|
|
|
|
2016-01-02 23:09:21 +00:00
|
|
|
|
gtk_widget_set_no_show_all (priv->close_button, TRUE);
|
|
|
|
|
g_signal_connect (priv->close_button, "clicked",
|
2013-07-15 19:04:56 +00:00
|
|
|
|
G_CALLBACK (close_button_clicked_cb), info_bar);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GtkBuildableIface *parent_buildable_iface;
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_info_bar_buildable_interface_init (GtkBuildableIface *iface)
|
|
|
|
|
{
|
|
|
|
|
parent_buildable_iface = g_type_interface_peek_parent (iface);
|
|
|
|
|
iface->custom_tag_start = gtk_info_bar_buildable_custom_tag_start;
|
|
|
|
|
iface->custom_finished = gtk_info_bar_buildable_custom_finished;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gint
|
|
|
|
|
get_response_for_widget (GtkInfoBar *info_bar,
|
|
|
|
|
GtkWidget *widget)
|
|
|
|
|
{
|
|
|
|
|
ResponseData *rd;
|
|
|
|
|
|
|
|
|
|
rd = get_response_data (widget, FALSE);
|
|
|
|
|
if (!rd)
|
|
|
|
|
return GTK_RESPONSE_NONE;
|
|
|
|
|
else
|
|
|
|
|
return rd->response_id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
action_widget_activated (GtkWidget *widget,
|
|
|
|
|
GtkInfoBar *info_bar)
|
|
|
|
|
{
|
|
|
|
|
gint response_id;
|
|
|
|
|
|
|
|
|
|
response_id = get_response_for_widget (info_bar, widget);
|
|
|
|
|
gtk_info_bar_response (info_bar, response_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_add_action_widget:
|
|
|
|
|
* @info_bar: a #GtkInfoBar
|
|
|
|
|
* @child: an activatable widget
|
|
|
|
|
* @response_id: response ID for @child
|
|
|
|
|
*
|
|
|
|
|
* Add an activatable widget to the action area of a #GtkInfoBar,
|
|
|
|
|
* connecting a signal handler that will emit the #GtkInfoBar::response
|
|
|
|
|
* signal on the message area when the widget is activated. The widget
|
|
|
|
|
* is appended to the end of the message areas action area.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_info_bar_add_action_widget (GtkInfoBar *info_bar,
|
|
|
|
|
GtkWidget *child,
|
|
|
|
|
gint response_id)
|
|
|
|
|
{
|
|
|
|
|
ResponseData *ad;
|
|
|
|
|
guint signal_id;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_INFO_BAR (info_bar));
|
|
|
|
|
g_return_if_fail (GTK_IS_WIDGET (child));
|
|
|
|
|
|
|
|
|
|
ad = get_response_data (child, TRUE);
|
|
|
|
|
|
|
|
|
|
ad->response_id = response_id;
|
|
|
|
|
|
|
|
|
|
if (GTK_IS_BUTTON (child))
|
|
|
|
|
signal_id = g_signal_lookup ("clicked", GTK_TYPE_BUTTON);
|
|
|
|
|
else
|
|
|
|
|
signal_id = GTK_WIDGET_GET_CLASS (child)->activate_signal;
|
|
|
|
|
|
|
|
|
|
if (signal_id)
|
|
|
|
|
{
|
|
|
|
|
GClosure *closure;
|
|
|
|
|
|
|
|
|
|
closure = g_cclosure_new_object (G_CALLBACK (action_widget_activated),
|
|
|
|
|
G_OBJECT (info_bar));
|
|
|
|
|
g_signal_connect_closure_by_id (child, signal_id, 0, closure, FALSE);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
g_warning ("Only 'activatable' widgets can be packed into the action area of a GtkInfoBar");
|
|
|
|
|
|
|
|
|
|
gtk_box_pack_end (GTK_BOX (info_bar->priv->action_area),
|
2016-10-02 15:37:22 +00:00
|
|
|
|
child, FALSE, FALSE);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
if (response_id == GTK_RESPONSE_HELP)
|
|
|
|
|
gtk_button_box_set_child_secondary (GTK_BUTTON_BOX (info_bar->priv->action_area),
|
|
|
|
|
child, TRUE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_get_action_area:
|
|
|
|
|
* @info_bar: a #GtkInfoBar
|
|
|
|
|
*
|
|
|
|
|
* Returns the action area of @info_bar.
|
|
|
|
|
*
|
2010-09-21 04:18:11 +00:00
|
|
|
|
* Returns: (transfer none): the action area
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_info_bar_get_action_area (GtkInfoBar *info_bar)
|
|
|
|
|
{
|
2009-06-16 15:34:10 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_INFO_BAR (info_bar), NULL);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
return info_bar->priv->action_area;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_get_content_area:
|
|
|
|
|
* @info_bar: a #GtkInfoBar
|
|
|
|
|
*
|
|
|
|
|
* Returns the content area of @info_bar.
|
|
|
|
|
*
|
2010-09-21 04:18:11 +00:00
|
|
|
|
* Returns: (transfer none): the content area
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_info_bar_get_content_area (GtkInfoBar *info_bar)
|
|
|
|
|
{
|
2009-06-16 15:34:10 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_INFO_BAR (info_bar), NULL);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
return info_bar->priv->content_area;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_add_button:
|
|
|
|
|
* @info_bar: a #GtkInfoBar
|
2013-06-25 03:47:52 +00:00
|
|
|
|
* @button_text: text of button
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* @response_id: response ID for the button
|
|
|
|
|
*
|
2013-06-25 03:47:52 +00:00
|
|
|
|
* Adds a button with the given text and sets things up so that
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* clicking the button will emit the “response” signal with the given
|
2013-06-25 03:47:52 +00:00
|
|
|
|
* response_id. The button is appended to the end of the info bars's
|
|
|
|
|
* action area. The button widget is returned, but usually you don't
|
|
|
|
|
* need it.
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
2014-05-26 16:41:21 +00:00
|
|
|
|
* Returns: (transfer none) (type Gtk.Button): the #GtkButton widget
|
|
|
|
|
* that was added
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_info_bar_add_button (GtkInfoBar *info_bar,
|
|
|
|
|
const gchar *button_text,
|
|
|
|
|
gint response_id)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *button;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_INFO_BAR (info_bar), NULL);
|
|
|
|
|
g_return_val_if_fail (button_text != NULL, NULL);
|
|
|
|
|
|
2013-06-25 03:47:52 +00:00
|
|
|
|
button = gtk_button_new_with_label (button_text);
|
|
|
|
|
gtk_button_set_use_underline (GTK_BUTTON (button), TRUE);
|
|
|
|
|
|
2010-03-02 06:58:05 +00:00
|
|
|
|
gtk_widget_set_can_default (button, TRUE);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
gtk_widget_show (button);
|
|
|
|
|
|
|
|
|
|
gtk_info_bar_add_action_widget (info_bar, button, response_id);
|
|
|
|
|
|
|
|
|
|
return button;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
add_buttons_valist (GtkInfoBar *info_bar,
|
|
|
|
|
const gchar *first_button_text,
|
|
|
|
|
va_list args)
|
|
|
|
|
{
|
|
|
|
|
const gchar* text;
|
|
|
|
|
gint response_id;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_INFO_BAR (info_bar));
|
|
|
|
|
|
|
|
|
|
if (first_button_text == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
text = first_button_text;
|
|
|
|
|
response_id = va_arg (args, gint);
|
|
|
|
|
|
|
|
|
|
while (text != NULL)
|
|
|
|
|
{
|
|
|
|
|
gtk_info_bar_add_button (info_bar, text, response_id);
|
|
|
|
|
|
|
|
|
|
text = va_arg (args, gchar*);
|
|
|
|
|
if (text == NULL)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
response_id = va_arg (args, int);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_add_buttons:
|
|
|
|
|
* @info_bar: a #GtkInfoBar
|
2016-10-16 11:12:16 +00:00
|
|
|
|
* @first_button_text: button text
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* @...: response ID for first button, then more text-response_id pairs,
|
|
|
|
|
* ending with %NULL
|
|
|
|
|
*
|
|
|
|
|
* Adds more buttons, same as calling gtk_info_bar_add_button()
|
|
|
|
|
* repeatedly. The variable argument list should be %NULL-terminated
|
|
|
|
|
* as with gtk_info_bar_new_with_buttons(). Each button must have both
|
|
|
|
|
* text and response ID.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_info_bar_add_buttons (GtkInfoBar *info_bar,
|
|
|
|
|
const gchar *first_button_text,
|
|
|
|
|
...)
|
|
|
|
|
{
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
|
|
va_start (args, first_button_text);
|
|
|
|
|
add_buttons_valist (info_bar, first_button_text, args);
|
|
|
|
|
va_end (args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_new:
|
|
|
|
|
*
|
|
|
|
|
* Creates a new #GtkInfoBar object.
|
|
|
|
|
*
|
|
|
|
|
* Returns: a new #GtkInfoBar object
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
GtkWidget *
|
|
|
|
|
gtk_info_bar_new (void)
|
|
|
|
|
{
|
|
|
|
|
return g_object_new (GTK_TYPE_INFO_BAR, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_new_with_buttons:
|
2016-10-16 11:12:16 +00:00
|
|
|
|
* @first_button_text: (allow-none): ext to go in first button, or %NULL
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* @...: response ID for first button, then additional buttons, ending
|
|
|
|
|
* with %NULL
|
|
|
|
|
*
|
|
|
|
|
* Creates a new #GtkInfoBar with buttons. Button text/response ID
|
|
|
|
|
* pairs should be listed, with a %NULL pointer ending the list.
|
2016-10-16 11:12:16 +00:00
|
|
|
|
* A response ID can be any positive number,
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* or one of the values in the #GtkResponseType enumeration. If the
|
|
|
|
|
* user clicks one of these dialog buttons, GtkInfoBar will emit
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* the “response” signal with the corresponding response ID.
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
|
|
|
|
* Returns: a new #GtkInfoBar
|
|
|
|
|
*/
|
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_info_bar_new_with_buttons (const gchar *first_button_text,
|
|
|
|
|
...)
|
|
|
|
|
{
|
|
|
|
|
GtkInfoBar *info_bar;
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
|
|
info_bar = GTK_INFO_BAR (gtk_info_bar_new ());
|
|
|
|
|
|
|
|
|
|
va_start (args, first_button_text);
|
|
|
|
|
add_buttons_valist (info_bar, first_button_text, args);
|
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
|
|
return GTK_WIDGET (info_bar);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_set_response_sensitive:
|
|
|
|
|
* @info_bar: a #GtkInfoBar
|
|
|
|
|
* @response_id: a response ID
|
|
|
|
|
* @setting: TRUE for sensitive
|
|
|
|
|
*
|
|
|
|
|
* Calls gtk_widget_set_sensitive (widget, setting) for each
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* widget in the info bars’s action area with the given response_id.
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* A convenient way to sensitize/desensitize dialog buttons.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_info_bar_set_response_sensitive (GtkInfoBar *info_bar,
|
|
|
|
|
gint response_id,
|
|
|
|
|
gboolean setting)
|
|
|
|
|
{
|
|
|
|
|
GList *children, *list;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_INFO_BAR (info_bar));
|
|
|
|
|
|
|
|
|
|
children = gtk_container_get_children (GTK_CONTAINER (info_bar->priv->action_area));
|
|
|
|
|
|
|
|
|
|
for (list = children; list; list = list->next)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *widget = list->data;
|
|
|
|
|
ResponseData *rd = get_response_data (widget, FALSE);
|
|
|
|
|
|
|
|
|
|
if (rd && rd->response_id == response_id)
|
|
|
|
|
gtk_widget_set_sensitive (widget, setting);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_list_free (children);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_set_default_response:
|
|
|
|
|
* @info_bar: a #GtkInfoBar
|
|
|
|
|
* @response_id: a response ID
|
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* Sets the last widget in the info bar’s action area with
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* the given response_id as the default widget for the dialog.
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* Pressing “Enter” normally activates the default widget.
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
2010-02-23 16:13:16 +00:00
|
|
|
|
* Note that this function currently requires @info_bar to
|
|
|
|
|
* be added to a widget hierarchy.
|
|
|
|
|
*
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_info_bar_set_default_response (GtkInfoBar *info_bar,
|
|
|
|
|
gint response_id)
|
|
|
|
|
{
|
|
|
|
|
GList *children, *list;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_INFO_BAR (info_bar));
|
|
|
|
|
|
|
|
|
|
children = gtk_container_get_children (GTK_CONTAINER (info_bar->priv->action_area));
|
|
|
|
|
|
|
|
|
|
for (list = children; list; list = list->next)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *widget = list->data;
|
|
|
|
|
ResponseData *rd = get_response_data (widget, FALSE);
|
|
|
|
|
|
|
|
|
|
if (rd && rd->response_id == response_id)
|
|
|
|
|
gtk_widget_grab_default (widget);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_list_free (children);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2009-06-16 00:04:48 +00:00
|
|
|
|
* gtk_info_bar_response:
|
2009-06-05 18:56:08 +00:00
|
|
|
|
* @info_bar: a #GtkInfoBar
|
|
|
|
|
* @response_id: a response ID
|
|
|
|
|
*
|
2014-02-07 19:03:49 +00:00
|
|
|
|
* Emits the “response” signal with the given @response_id.
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_info_bar_response (GtkInfoBar *info_bar,
|
|
|
|
|
gint response_id)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_INFO_BAR (info_bar));
|
|
|
|
|
|
|
|
|
|
g_signal_emit (info_bar, signals[RESPONSE], 0, response_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
2015-04-28 03:06:06 +00:00
|
|
|
|
gchar *name;
|
2015-04-25 23:35:22 +00:00
|
|
|
|
gint response_id;
|
2015-04-28 03:06:06 +00:00
|
|
|
|
gint line;
|
|
|
|
|
gint col;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
} ActionWidgetInfo;
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
GtkInfoBar *info_bar;
|
|
|
|
|
GtkBuilder *builder;
|
|
|
|
|
GSList *items;
|
2015-04-25 23:35:22 +00:00
|
|
|
|
gint response_id;
|
|
|
|
|
gboolean is_text;
|
|
|
|
|
GString *string;
|
2015-04-28 03:06:06 +00:00
|
|
|
|
gint line;
|
|
|
|
|
gint col;
|
2015-04-25 23:35:22 +00:00
|
|
|
|
} SubParserData;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2016-02-26 19:55:20 +00:00
|
|
|
|
static void
|
|
|
|
|
action_widget_info_free (gpointer data)
|
|
|
|
|
{
|
|
|
|
|
ActionWidgetInfo *item = data;
|
|
|
|
|
|
|
|
|
|
g_free (item->name);
|
|
|
|
|
g_free (item);
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-05 18:56:08 +00:00
|
|
|
|
static void
|
2015-04-25 23:35:22 +00:00
|
|
|
|
parser_start_element (GMarkupParseContext *context,
|
|
|
|
|
const gchar *element_name,
|
|
|
|
|
const gchar **names,
|
|
|
|
|
const gchar **values,
|
|
|
|
|
gpointer user_data,
|
|
|
|
|
GError **error)
|
2009-06-05 18:56:08 +00:00
|
|
|
|
{
|
2015-04-25 23:35:22 +00:00
|
|
|
|
SubParserData *data = (SubParserData*)user_data;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
if (strcmp (element_name, "action-widget") == 0)
|
|
|
|
|
{
|
2015-04-25 23:35:22 +00:00
|
|
|
|
const gchar *response;
|
|
|
|
|
GValue gvalue = G_VALUE_INIT;
|
|
|
|
|
|
|
|
|
|
if (!_gtk_builder_check_parent (data->builder, context, "action-widgets", error))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!g_markup_collect_attributes (element_name, names, values, error,
|
|
|
|
|
G_MARKUP_COLLECT_STRING, "response", &response,
|
|
|
|
|
G_MARKUP_COLLECT_INVALID))
|
|
|
|
|
{
|
|
|
|
|
_gtk_builder_prefix_error (data->builder, context, error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!gtk_builder_value_from_string_type (data->builder, GTK_TYPE_RESPONSE_TYPE, response, &gvalue, error))
|
|
|
|
|
{
|
|
|
|
|
_gtk_builder_prefix_error (data->builder, context, error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
data->response_id = g_value_get_enum (&gvalue);
|
|
|
|
|
data->is_text = TRUE;
|
|
|
|
|
g_string_set_size (data->string, 0);
|
2015-04-28 03:06:06 +00:00
|
|
|
|
g_markup_parse_context_get_position (context, &data->line, &data->col);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
}
|
|
|
|
|
else if (strcmp (element_name, "action-widgets") == 0)
|
2015-04-25 23:35:22 +00:00
|
|
|
|
{
|
|
|
|
|
if (!_gtk_builder_check_parent (data->builder, context, "object", error))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!g_markup_collect_attributes (element_name, names, values, error,
|
|
|
|
|
G_MARKUP_COLLECT_INVALID, NULL, NULL,
|
|
|
|
|
G_MARKUP_COLLECT_INVALID))
|
|
|
|
|
_gtk_builder_prefix_error (data->builder, context, error);
|
|
|
|
|
}
|
2009-06-05 18:56:08 +00:00
|
|
|
|
else
|
2015-04-25 23:35:22 +00:00
|
|
|
|
{
|
|
|
|
|
_gtk_builder_error_unhandled_tag (data->builder, context,
|
|
|
|
|
"GtkInfoBar", element_name,
|
|
|
|
|
error);
|
|
|
|
|
}
|
2009-06-05 18:56:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2015-04-25 23:35:22 +00:00
|
|
|
|
parser_text_element (GMarkupParseContext *context,
|
|
|
|
|
const gchar *text,
|
|
|
|
|
gsize text_len,
|
|
|
|
|
gpointer user_data,
|
|
|
|
|
GError **error)
|
2009-06-05 18:56:08 +00:00
|
|
|
|
{
|
2015-04-25 23:35:22 +00:00
|
|
|
|
SubParserData *data = (SubParserData*)user_data;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2015-04-25 23:35:22 +00:00
|
|
|
|
if (data->is_text)
|
|
|
|
|
g_string_append_len (data->string, text, text_len);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
parser_end_element (GMarkupParseContext *context,
|
|
|
|
|
const gchar *element_name,
|
|
|
|
|
gpointer user_data,
|
|
|
|
|
GError **error)
|
|
|
|
|
{
|
|
|
|
|
SubParserData *data = (SubParserData*)user_data;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2015-04-25 23:35:22 +00:00
|
|
|
|
if (data->is_text)
|
|
|
|
|
{
|
|
|
|
|
ActionWidgetInfo *item;
|
|
|
|
|
|
|
|
|
|
item = g_new (ActionWidgetInfo, 1);
|
2015-04-28 03:06:06 +00:00
|
|
|
|
item->name = g_strdup (data->string->str);
|
2015-04-25 23:35:22 +00:00
|
|
|
|
item->response_id = data->response_id;
|
2015-04-28 03:06:06 +00:00
|
|
|
|
item->line = data->line;
|
|
|
|
|
item->col = data->col;
|
2015-04-25 23:35:22 +00:00
|
|
|
|
|
|
|
|
|
data->items = g_slist_prepend (data->items, item);
|
|
|
|
|
data->is_text = FALSE;
|
|
|
|
|
}
|
2009-06-05 18:56:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-25 23:35:22 +00:00
|
|
|
|
static const GMarkupParser sub_parser =
|
2009-06-05 18:56:08 +00:00
|
|
|
|
{
|
2015-04-25 23:35:22 +00:00
|
|
|
|
parser_start_element,
|
|
|
|
|
parser_end_element,
|
|
|
|
|
parser_text_element,
|
2009-06-05 18:56:08 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
|
gtk_info_bar_buildable_custom_tag_start (GtkBuildable *buildable,
|
|
|
|
|
GtkBuilder *builder,
|
|
|
|
|
GObject *child,
|
|
|
|
|
const gchar *tagname,
|
|
|
|
|
GMarkupParser *parser,
|
2015-04-25 23:35:22 +00:00
|
|
|
|
gpointer *parser_data)
|
2009-06-05 18:56:08 +00:00
|
|
|
|
{
|
2015-04-25 23:35:22 +00:00
|
|
|
|
SubParserData *data;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2012-05-18 19:05:16 +00:00
|
|
|
|
if (parent_buildable_iface->custom_tag_start (buildable, builder, child,
|
2015-04-25 23:35:22 +00:00
|
|
|
|
tagname, parser, parser_data))
|
2012-05-18 19:05:16 +00:00
|
|
|
|
return TRUE;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2012-05-18 19:05:16 +00:00
|
|
|
|
if (!child && strcmp (tagname, "action-widgets") == 0)
|
2009-06-05 18:56:08 +00:00
|
|
|
|
{
|
2015-04-25 23:35:22 +00:00
|
|
|
|
data = g_slice_new0 (SubParserData);
|
|
|
|
|
data->info_bar = GTK_INFO_BAR (buildable);
|
|
|
|
|
data->builder = builder;
|
|
|
|
|
data->string = g_string_new ("");
|
|
|
|
|
data->items = NULL;
|
|
|
|
|
|
|
|
|
|
*parser = sub_parser;
|
|
|
|
|
*parser_data = data;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-18 19:05:16 +00:00
|
|
|
|
return FALSE;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_info_bar_buildable_custom_finished (GtkBuildable *buildable,
|
|
|
|
|
GtkBuilder *builder,
|
|
|
|
|
GObject *child,
|
|
|
|
|
const gchar *tagname,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GSList *l;
|
2015-04-25 23:35:22 +00:00
|
|
|
|
SubParserData *data;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
GObject *object;
|
|
|
|
|
GtkInfoBar *info_bar;
|
|
|
|
|
ResponseData *ad;
|
|
|
|
|
guint signal_id;
|
|
|
|
|
|
|
|
|
|
if (strcmp (tagname, "action-widgets"))
|
|
|
|
|
{
|
|
|
|
|
parent_buildable_iface->custom_finished (buildable, builder, child,
|
|
|
|
|
tagname, user_data);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
info_bar = GTK_INFO_BAR (buildable);
|
2015-04-25 23:35:22 +00:00
|
|
|
|
data = (SubParserData*)user_data;
|
|
|
|
|
data->items = g_slist_reverse (data->items);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2015-04-25 23:35:22 +00:00
|
|
|
|
for (l = data->items; l; l = l->next)
|
2009-06-05 18:56:08 +00:00
|
|
|
|
{
|
|
|
|
|
ActionWidgetInfo *item = l->data;
|
|
|
|
|
|
2015-04-28 03:06:06 +00:00
|
|
|
|
object = _gtk_builder_lookup_object (builder, item->name, item->line, item->col);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
if (!object)
|
2015-04-28 03:06:06 +00:00
|
|
|
|
continue;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
ad = get_response_data (GTK_WIDGET (object), TRUE);
|
2015-04-25 23:35:22 +00:00
|
|
|
|
ad->response_id = item->response_id;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
if (GTK_IS_BUTTON (object))
|
|
|
|
|
signal_id = g_signal_lookup ("clicked", GTK_TYPE_BUTTON);
|
|
|
|
|
else
|
|
|
|
|
signal_id = GTK_WIDGET_GET_CLASS (object)->activate_signal;
|
|
|
|
|
|
|
|
|
|
if (signal_id)
|
|
|
|
|
{
|
|
|
|
|
GClosure *closure;
|
|
|
|
|
|
|
|
|
|
closure = g_cclosure_new_object (G_CALLBACK (action_widget_activated),
|
|
|
|
|
G_OBJECT (info_bar));
|
2015-04-25 23:35:22 +00:00
|
|
|
|
g_signal_connect_closure_by_id (object, signal_id, 0, closure, FALSE);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ad->response_id == GTK_RESPONSE_HELP)
|
|
|
|
|
gtk_button_box_set_child_secondary (GTK_BUTTON_BOX (info_bar->priv->action_area),
|
|
|
|
|
GTK_WIDGET (object), TRUE);
|
|
|
|
|
}
|
2015-04-25 23:35:22 +00:00
|
|
|
|
|
2016-02-26 19:55:20 +00:00
|
|
|
|
g_slist_free_full (data->items, action_widget_info_free);
|
2015-04-25 23:35:22 +00:00
|
|
|
|
g_string_free (data->string, TRUE);
|
|
|
|
|
g_slice_free (SubParserData, data);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_set_message_type:
|
|
|
|
|
* @info_bar: a #GtkInfoBar
|
|
|
|
|
* @message_type: a #GtkMessageType
|
|
|
|
|
*
|
|
|
|
|
* Sets the message type of the message area.
|
2016-05-23 18:14:32 +00:00
|
|
|
|
*
|
|
|
|
|
* GTK+ uses this type to determine how the message is displayed.
|
2009-06-05 18:56:08 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_info_bar_set_message_type (GtkInfoBar *info_bar,
|
|
|
|
|
GtkMessageType message_type)
|
|
|
|
|
{
|
|
|
|
|
GtkInfoBarPrivate *priv;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_INFO_BAR (info_bar));
|
|
|
|
|
|
2010-06-24 00:40:47 +00:00
|
|
|
|
priv = info_bar->priv;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
if (priv->message_type != message_type)
|
|
|
|
|
{
|
2012-02-21 22:42:39 +00:00
|
|
|
|
GtkStyleContext *context;
|
|
|
|
|
AtkObject *atk_obj;
|
|
|
|
|
const char *type_class[] = {
|
|
|
|
|
GTK_STYLE_CLASS_INFO,
|
|
|
|
|
GTK_STYLE_CLASS_WARNING,
|
|
|
|
|
GTK_STYLE_CLASS_QUESTION,
|
|
|
|
|
GTK_STYLE_CLASS_ERROR,
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (GTK_WIDGET (info_bar));
|
|
|
|
|
|
|
|
|
|
if (type_class[priv->message_type])
|
|
|
|
|
gtk_style_context_remove_class (context, type_class[priv->message_type]);
|
|
|
|
|
|
2009-06-05 18:56:08 +00:00
|
|
|
|
priv->message_type = message_type;
|
|
|
|
|
|
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (info_bar));
|
|
|
|
|
|
|
|
|
|
atk_obj = gtk_widget_get_accessible (GTK_WIDGET (info_bar));
|
|
|
|
|
if (GTK_IS_ACCESSIBLE (atk_obj))
|
|
|
|
|
{
|
2013-06-24 23:28:53 +00:00
|
|
|
|
const char *name = NULL;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2014-01-04 22:44:14 +00:00
|
|
|
|
atk_object_set_role (atk_obj, ATK_ROLE_INFO_BAR);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
|
|
|
|
switch (message_type)
|
|
|
|
|
{
|
|
|
|
|
case GTK_MESSAGE_INFO:
|
2013-06-24 23:28:53 +00:00
|
|
|
|
name = _("Information");
|
2009-06-05 18:56:08 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_MESSAGE_QUESTION:
|
2013-06-24 23:28:53 +00:00
|
|
|
|
name = _("Question");
|
2009-06-05 18:56:08 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_MESSAGE_WARNING:
|
2013-06-24 23:28:53 +00:00
|
|
|
|
name = _("Warning");
|
2009-06-05 18:56:08 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_MESSAGE_ERROR:
|
2013-06-24 23:28:53 +00:00
|
|
|
|
name = _("Error");
|
2009-06-05 18:56:08 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_MESSAGE_OTHER:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
g_warning ("Unknown GtkMessageType %u", message_type);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-24 23:28:53 +00:00
|
|
|
|
if (name)
|
2014-01-04 22:44:14 +00:00
|
|
|
|
atk_object_set_name (atk_obj, name);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-21 22:42:39 +00:00
|
|
|
|
if (type_class[priv->message_type])
|
|
|
|
|
gtk_style_context_add_class (context, type_class[priv->message_type]);
|
|
|
|
|
|
2009-06-05 18:56:08 +00:00
|
|
|
|
g_object_notify (G_OBJECT (info_bar), "message-type");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_get_message_type:
|
|
|
|
|
* @info_bar: a #GtkInfoBar
|
|
|
|
|
*
|
|
|
|
|
* Returns the message type of the message area.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the message type of the message area.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
GtkMessageType
|
|
|
|
|
gtk_info_bar_get_message_type (GtkInfoBar *info_bar)
|
|
|
|
|
{
|
2009-06-16 15:34:10 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_INFO_BAR (info_bar), GTK_MESSAGE_OTHER);
|
2009-06-05 18:56:08 +00:00
|
|
|
|
|
2010-06-24 00:40:47 +00:00
|
|
|
|
return info_bar->priv->message_type;
|
2009-06-05 18:56:08 +00:00
|
|
|
|
}
|
2013-07-15 19:04:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_set_show_close_button:
|
|
|
|
|
* @info_bar: a #GtkInfoBar
|
|
|
|
|
* @setting: %TRUE to include a close button
|
|
|
|
|
*
|
|
|
|
|
* If true, a standard close button is shown. When clicked it emits
|
|
|
|
|
* the response %GTK_RESPONSE_CLOSE.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.10
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_info_bar_set_show_close_button (GtkInfoBar *info_bar,
|
|
|
|
|
gboolean setting)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_INFO_BAR (info_bar));
|
|
|
|
|
|
|
|
|
|
if (setting != info_bar->priv->show_close_button)
|
|
|
|
|
{
|
|
|
|
|
info_bar->priv->show_close_button = setting;
|
|
|
|
|
gtk_widget_set_visible (info_bar->priv->close_button, setting);
|
|
|
|
|
g_object_notify (G_OBJECT (info_bar), "show-close-button");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_info_bar_get_show_close_button:
|
|
|
|
|
* @info_bar: a #GtkInfoBar
|
|
|
|
|
*
|
|
|
|
|
* Returns whether the widget will display a standard close button.
|
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if the widget displays standard close button
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.10
|
|
|
|
|
*/
|
|
|
|
|
gboolean
|
|
|
|
|
gtk_info_bar_get_show_close_button (GtkInfoBar *info_bar)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_INFO_BAR (info_bar), FALSE);
|
|
|
|
|
|
|
|
|
|
return info_bar->priv->show_close_button;
|
|
|
|
|
}
|