2004-10-26 05:06:32 +00:00
|
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 2 -*- */
|
2008-07-01 22:57:50 +00:00
|
|
|
|
/* GTK - The GIMP Toolkit
|
2000-10-20 23:14:41 +00:00
|
|
|
|
* Copyright (C) 2000 Red Hat, Inc.
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Library 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
|
|
|
|
|
* Library General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2000-10-20 23:14:41 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
2003-07-18 18:52:03 +00:00
|
|
|
|
* Modified by the GTK+ Team and others 1997-2003. See the AUTHORS
|
2000-10-20 23:14:41 +00:00
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
|
*/
|
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
|
#include "config.h"
|
2011-01-04 19:51:19 +00:00
|
|
|
|
|
2000-10-20 23:14:41 +00:00
|
|
|
|
#include "gtkmessagedialog.h"
|
2019-03-16 03:48:26 +00:00
|
|
|
|
|
2011-08-28 05:40:10 +00:00
|
|
|
|
#include "gtkbox.h"
|
2019-03-16 03:48:26 +00:00
|
|
|
|
#include "gtkbuildable.h"
|
|
|
|
|
#include "gtkdialogprivate.h"
|
2001-04-24 12:24:35 +00:00
|
|
|
|
#include "gtkintl.h"
|
2019-03-16 03:48:26 +00:00
|
|
|
|
#include "gtklabel.h"
|
2005-03-22 02:14:55 +00:00
|
|
|
|
#include "gtkprivate.h"
|
2011-01-04 19:51:19 +00:00
|
|
|
|
#include "gtktypebuiltins.h"
|
2000-10-20 23:14:41 +00:00
|
|
|
|
|
2019-03-16 03:48:26 +00:00
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2009-12-18 04:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* SECTION:gtkmessagedialog
|
|
|
|
|
* @Short_description: A convenient message window
|
|
|
|
|
* @Title: GtkMessageDialog
|
|
|
|
|
* @See_also:#GtkDialog
|
|
|
|
|
*
|
2014-02-14 01:34:54 +00:00
|
|
|
|
* #GtkMessageDialog presents a dialog with some message text. It’s simply a
|
2009-12-18 04:00:56 +00:00
|
|
|
|
* convenience widget; you could construct the equivalent of #GtkMessageDialog
|
|
|
|
|
* from #GtkDialog without too much effort, but #GtkMessageDialog saves typing.
|
|
|
|
|
*
|
2020-04-30 13:05:23 +00:00
|
|
|
|
* The easiest way to do a modal message dialog is to use the %GTK_DIALOG_MODAL
|
|
|
|
|
* flag, which will call gtk_window_set_modal() internally. The dialog will
|
|
|
|
|
* prevent interaction with the parent window until it's hidden or destroyed.
|
|
|
|
|
* You can use the #GtkDialog::response signal to know when the user dismissed
|
|
|
|
|
* the dialog.
|
2014-02-02 05:29:00 +00:00
|
|
|
|
*
|
|
|
|
|
* An example for using a modal dialog:
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2020-04-30 13:05:23 +00:00
|
|
|
|
* GtkDialogFlags flags = GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_MODAL;
|
2014-02-12 21:09:09 +00:00
|
|
|
|
* dialog = gtk_message_dialog_new (parent_window,
|
|
|
|
|
* flags,
|
2009-12-18 04:00:56 +00:00
|
|
|
|
* GTK_MESSAGE_ERROR,
|
|
|
|
|
* GTK_BUTTONS_CLOSE,
|
2014-02-12 21:09:09 +00:00
|
|
|
|
* "Error reading “%s”: %s",
|
|
|
|
|
* filename,
|
|
|
|
|
* g_strerror (errno));
|
2020-04-30 13:05:23 +00:00
|
|
|
|
* // Destroy the dialog when the user responds to it
|
|
|
|
|
* // (e.g. clicks a button)
|
|
|
|
|
*
|
|
|
|
|
* g_signal_connect (dialog, "response",
|
|
|
|
|
* G_CALLBACK (gtk_window_destroy),
|
|
|
|
|
* NULL);
|
2014-01-27 17:12:55 +00:00
|
|
|
|
* ]|
|
2014-02-02 05:29:00 +00:00
|
|
|
|
*
|
2020-04-30 13:05:23 +00:00
|
|
|
|
* You might do a non-modal #GtkMessageDialog simply by omitting the
|
|
|
|
|
* %GTK_DIALOG_MODAL flag:
|
2014-02-02 05:29:00 +00:00
|
|
|
|
*
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2014-02-12 21:09:09 +00:00
|
|
|
|
* GtkDialogFlags flags = GTK_DIALOG_DESTROY_WITH_PARENT;
|
|
|
|
|
* dialog = gtk_message_dialog_new (parent_window,
|
|
|
|
|
* flags,
|
2009-12-18 04:00:56 +00:00
|
|
|
|
* GTK_MESSAGE_ERROR,
|
|
|
|
|
* GTK_BUTTONS_CLOSE,
|
2014-02-12 21:09:09 +00:00
|
|
|
|
* "Error reading “%s”: %s",
|
|
|
|
|
* filename,
|
|
|
|
|
* g_strerror (errno));
|
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // Destroy the dialog when the user responds to it
|
|
|
|
|
* // (e.g. clicks a button)
|
2020-04-30 13:05:23 +00:00
|
|
|
|
* g_signal_connect (dialog, "response",
|
|
|
|
|
* G_CALLBACK (gtk_window_destroy),
|
|
|
|
|
* NULL);
|
2014-01-27 17:12:55 +00:00
|
|
|
|
* ]|
|
2010-06-24 13:34:51 +00:00
|
|
|
|
*
|
2014-02-05 02:00:58 +00:00
|
|
|
|
* # GtkMessageDialog as GtkBuildable
|
2014-02-02 05:29:00 +00:00
|
|
|
|
*
|
2010-06-24 13:34:51 +00:00
|
|
|
|
* The GtkMessageDialog implementation of the GtkBuildable interface exposes
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* the message area as an internal child with the name “message_area”.
|
2009-12-18 04:00:56 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2018-06-18 09:14:36 +00:00
|
|
|
|
typedef struct
|
2004-10-26 05:06:32 +00:00
|
|
|
|
{
|
2010-07-02 13:53:46 +00:00
|
|
|
|
GtkWidget *label;
|
|
|
|
|
GtkWidget *message_area; /* vbox for the primary and secondary labels, and any extra content from the caller */
|
|
|
|
|
GtkWidget *secondary_label;
|
|
|
|
|
|
|
|
|
|
guint has_primary_markup : 1;
|
|
|
|
|
guint has_secondary_text : 1;
|
|
|
|
|
guint message_type : 3;
|
2018-06-18 09:14:36 +00:00
|
|
|
|
} GtkMessageDialogPrivate;
|
2019-05-19 16:49:45 +00:00
|
|
|
|
|
|
|
|
|
struct _GtkMessageDialogClass
|
|
|
|
|
{
|
|
|
|
|
GtkDialogClass parent_class;
|
|
|
|
|
};
|
2004-10-26 05:06:32 +00:00
|
|
|
|
|
2014-07-01 01:51:19 +00:00
|
|
|
|
static void gtk_message_dialog_constructed (GObject *object);
|
2001-11-15 17:58:35 +00:00
|
|
|
|
static void gtk_message_dialog_set_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
static void gtk_message_dialog_get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
static void gtk_message_dialog_add_buttons (GtkMessageDialog *message_dialog,
|
|
|
|
|
GtkButtonsType buttons);
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
|
PROP_0,
|
|
|
|
|
PROP_MESSAGE_TYPE,
|
2006-01-11 15:23:05 +00:00
|
|
|
|
PROP_BUTTONS,
|
|
|
|
|
PROP_TEXT,
|
|
|
|
|
PROP_USE_MARKUP,
|
|
|
|
|
PROP_SECONDARY_TEXT,
|
2006-05-09 04:36:43 +00:00
|
|
|
|
PROP_SECONDARY_USE_MARKUP,
|
2010-06-22 18:10:52 +00:00
|
|
|
|
PROP_IMAGE,
|
|
|
|
|
PROP_MESSAGE_AREA
|
2001-11-15 17:58:35 +00:00
|
|
|
|
};
|
|
|
|
|
|
2019-10-28 19:00:21 +00:00
|
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GtkMessageDialog, gtk_message_dialog, GTK_TYPE_DIALOG)
|
2010-06-24 13:34:51 +00:00
|
|
|
|
|
2000-10-20 23:14:41 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_message_dialog_class_init (GtkMessageDialogClass *class)
|
|
|
|
|
{
|
2001-04-24 12:24:35 +00:00
|
|
|
|
GtkWidgetClass *widget_class;
|
2001-11-15 17:58:35 +00:00
|
|
|
|
GObjectClass *gobject_class;
|
2001-04-24 12:24:35 +00:00
|
|
|
|
|
|
|
|
|
widget_class = GTK_WIDGET_CLASS (class);
|
2001-11-15 17:58:35 +00:00
|
|
|
|
gobject_class = G_OBJECT_CLASS (class);
|
2001-04-24 12:24:35 +00:00
|
|
|
|
|
2014-07-01 01:51:19 +00:00
|
|
|
|
gobject_class->constructed = gtk_message_dialog_constructed;
|
2001-11-15 17:58:35 +00:00
|
|
|
|
gobject_class->set_property = gtk_message_dialog_set_property;
|
|
|
|
|
gobject_class->get_property = gtk_message_dialog_get_property;
|
2001-04-24 12:24:35 +00:00
|
|
|
|
|
2006-05-09 04:36:43 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkMessageDialog:message-type:
|
|
|
|
|
*
|
2014-02-14 01:34:54 +00:00
|
|
|
|
* The type of the message.
|
2006-05-09 04:36:43 +00:00
|
|
|
|
*/
|
2001-11-15 17:58:35 +00:00
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_MESSAGE_TYPE,
|
2005-03-09 06:15:13 +00:00
|
|
|
|
g_param_spec_enum ("message-type",
|
2004-01-16 23:10:05 +00:00
|
|
|
|
P_("Message Type"),
|
|
|
|
|
P_("The type of message"),
|
2001-11-15 17:58:35 +00:00
|
|
|
|
GTK_TYPE_MESSAGE_TYPE,
|
|
|
|
|
GTK_MESSAGE_INFO,
|
2014-06-09 13:07:18 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_CONSTRUCT|G_PARAM_EXPLICIT_NOTIFY));
|
2001-11-15 17:58:35 +00:00
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_BUTTONS,
|
|
|
|
|
g_param_spec_enum ("buttons",
|
2004-01-16 23:10:05 +00:00
|
|
|
|
P_("Message Buttons"),
|
|
|
|
|
P_("The buttons shown in the message dialog"),
|
2001-11-15 17:58:35 +00:00
|
|
|
|
GTK_TYPE_BUTTONS_TYPE,
|
|
|
|
|
GTK_BUTTONS_NONE,
|
2014-06-09 13:07:18 +00:00
|
|
|
|
GTK_PARAM_WRITABLE|G_PARAM_CONSTRUCT_ONLY));
|
2006-01-11 15:23:05 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkMessageDialog:text:
|
|
|
|
|
*
|
|
|
|
|
* The primary text of the message dialog. If the dialog has
|
|
|
|
|
* a secondary text, this will appear as the title.
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_TEXT,
|
|
|
|
|
g_param_spec_string ("text",
|
|
|
|
|
P_("Text"),
|
|
|
|
|
P_("The primary text of the message dialog"),
|
2007-12-28 17:29:53 +00:00
|
|
|
|
"",
|
2006-01-11 15:23:05 +00:00
|
|
|
|
GTK_PARAM_READWRITE));
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkMessageDialog:use-markup:
|
|
|
|
|
*
|
|
|
|
|
* %TRUE if the primary text of the dialog includes Pango markup.
|
|
|
|
|
* See pango_parse_markup().
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_USE_MARKUP,
|
|
|
|
|
g_param_spec_boolean ("use-markup",
|
|
|
|
|
P_("Use Markup"),
|
|
|
|
|
P_("The primary text of the title includes Pango markup."),
|
|
|
|
|
FALSE,
|
2014-06-09 13:07:18 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
2006-01-11 15:23:05 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkMessageDialog:secondary-text:
|
|
|
|
|
*
|
|
|
|
|
* The secondary text of the message dialog.
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_SECONDARY_TEXT,
|
|
|
|
|
g_param_spec_string ("secondary-text",
|
|
|
|
|
P_("Secondary Text"),
|
|
|
|
|
P_("The secondary text of the message dialog"),
|
|
|
|
|
NULL,
|
|
|
|
|
GTK_PARAM_READWRITE));
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkMessageDialog:secondary-use-markup:
|
|
|
|
|
*
|
|
|
|
|
* %TRUE if the secondary text of the dialog includes Pango markup.
|
|
|
|
|
* See pango_parse_markup().
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_SECONDARY_USE_MARKUP,
|
|
|
|
|
g_param_spec_boolean ("secondary-use-markup",
|
|
|
|
|
P_("Use Markup in secondary"),
|
|
|
|
|
P_("The secondary text includes Pango markup."),
|
|
|
|
|
FALSE,
|
2014-06-09 13:07:18 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
2006-01-11 15:23:05 +00:00
|
|
|
|
|
2010-06-22 18:10:52 +00:00
|
|
|
|
/**
|
2012-04-13 00:07:28 +00:00
|
|
|
|
* GtkMessageDialog:message-area:
|
2010-06-22 18:10:52 +00:00
|
|
|
|
*
|
2014-09-11 19:48:44 +00:00
|
|
|
|
* The #GtkBox that corresponds to the message area of this dialog. See
|
2010-06-22 18:10:52 +00:00
|
|
|
|
* gtk_message_dialog_get_message_area() for a detailed description of this
|
|
|
|
|
* area.
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_MESSAGE_AREA,
|
|
|
|
|
g_param_spec_object ("message-area",
|
|
|
|
|
P_("Message area"),
|
2016-10-03 16:20:03 +00:00
|
|
|
|
P_("GtkBox that holds the dialog’s primary and secondary labels"),
|
2010-06-22 18:10:52 +00:00
|
|
|
|
GTK_TYPE_WIDGET,
|
|
|
|
|
GTK_PARAM_READABLE));
|
|
|
|
|
|
2013-03-22 09:45:24 +00:00
|
|
|
|
/* Setup Composite data */
|
2014-01-23 23:59:20 +00:00
|
|
|
|
gtk_widget_class_set_template_from_resource (widget_class, "/org/gtk/libgtk/ui/gtkmessagedialog.ui");
|
2013-07-26 20:29:12 +00:00
|
|
|
|
gtk_widget_class_bind_template_child_private (widget_class, GtkMessageDialog, label);
|
|
|
|
|
gtk_widget_class_bind_template_child_private (widget_class, GtkMessageDialog, secondary_label);
|
|
|
|
|
gtk_widget_class_bind_template_child_internal_private (widget_class, GtkMessageDialog, message_area);
|
2000-10-20 23:14:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_message_dialog_init (GtkMessageDialog *dialog)
|
|
|
|
|
{
|
2018-06-18 09:14:36 +00:00
|
|
|
|
GtkMessageDialogPrivate *priv = gtk_message_dialog_get_instance_private (dialog);
|
2014-01-17 17:36:53 +00:00
|
|
|
|
GtkWidget *action_area;
|
2016-03-05 03:39:31 +00:00
|
|
|
|
GtkSettings *settings;
|
|
|
|
|
gboolean use_caret;
|
2004-10-26 05:06:32 +00:00
|
|
|
|
|
|
|
|
|
priv->has_primary_markup = FALSE;
|
|
|
|
|
priv->has_secondary_text = FALSE;
|
2013-03-22 09:45:24 +00:00
|
|
|
|
priv->has_primary_markup = FALSE;
|
|
|
|
|
priv->has_secondary_text = FALSE;
|
2014-06-09 13:07:18 +00:00
|
|
|
|
priv->message_type = GTK_MESSAGE_OTHER;
|
2006-03-10 21:37:43 +00:00
|
|
|
|
|
2020-05-20 07:07:24 +00:00
|
|
|
|
gtk_widget_add_css_class (GTK_WIDGET (dialog), "message");
|
|
|
|
|
|
2013-03-22 09:45:24 +00:00
|
|
|
|
gtk_widget_init_template (GTK_WIDGET (dialog));
|
2014-01-17 17:36:53 +00:00
|
|
|
|
action_area = gtk_dialog_get_action_area (GTK_DIALOG (dialog));
|
2019-02-04 17:44:55 +00:00
|
|
|
|
gtk_widget_set_halign (action_area, GTK_ALIGN_FILL);
|
|
|
|
|
gtk_box_set_homogeneous (GTK_BOX (action_area), TRUE);
|
2016-03-05 03:39:31 +00:00
|
|
|
|
|
|
|
|
|
settings = gtk_widget_get_settings (GTK_WIDGET (dialog));
|
|
|
|
|
g_object_get (settings, "gtk-keynav-use-caret", &use_caret, NULL);
|
|
|
|
|
gtk_label_set_selectable (GTK_LABEL (priv->label), use_caret);
|
|
|
|
|
gtk_label_set_selectable (GTK_LABEL (priv->secondary_label), use_caret);
|
2000-10-20 23:14:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-11-15 17:58:35 +00:00
|
|
|
|
static void
|
|
|
|
|
setup_type (GtkMessageDialog *dialog,
|
|
|
|
|
GtkMessageType type)
|
|
|
|
|
{
|
2018-06-18 09:14:36 +00:00
|
|
|
|
GtkMessageDialogPrivate *priv = gtk_message_dialog_get_instance_private (dialog);
|
2013-02-03 22:58:23 +00:00
|
|
|
|
|
2014-06-09 13:07:18 +00:00
|
|
|
|
if (priv->message_type == type)
|
|
|
|
|
return;
|
|
|
|
|
|
2006-05-09 04:36:43 +00:00
|
|
|
|
priv->message_type = type;
|
|
|
|
|
|
2014-06-09 13:07:18 +00:00
|
|
|
|
g_object_notify (G_OBJECT (dialog), "message-type");
|
2000-10-20 23:14:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-01 01:51:19 +00:00
|
|
|
|
static void
|
|
|
|
|
update_title (GObject *dialog,
|
|
|
|
|
GParamSpec *pspec,
|
|
|
|
|
GtkWidget *label)
|
|
|
|
|
{
|
2020-07-24 18:40:36 +00:00
|
|
|
|
const char *title;
|
2014-07-01 01:51:19 +00:00
|
|
|
|
|
|
|
|
|
title = gtk_window_get_title (GTK_WINDOW (dialog));
|
|
|
|
|
gtk_label_set_label (GTK_LABEL (label), title);
|
|
|
|
|
gtk_widget_set_visible (label, title && title[0]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_message_dialog_constructed (GObject *object)
|
|
|
|
|
{
|
|
|
|
|
GtkMessageDialog *dialog = GTK_MESSAGE_DIALOG (object);
|
|
|
|
|
gboolean use_header;
|
|
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (gtk_message_dialog_parent_class)->constructed (object);
|
|
|
|
|
|
|
|
|
|
g_object_get (gtk_widget_get_settings (GTK_WIDGET (dialog)),
|
|
|
|
|
"gtk-dialogs-use-header", &use_header,
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
if (use_header)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *box;
|
|
|
|
|
GtkWidget *label;
|
|
|
|
|
|
|
|
|
|
box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
|
|
|
|
|
gtk_widget_show (box);
|
|
|
|
|
gtk_widget_set_size_request (box, -1, 16);
|
|
|
|
|
label = gtk_label_new ("");
|
2017-01-19 09:31:03 +00:00
|
|
|
|
gtk_widget_hide (label);
|
2014-07-01 01:51:19 +00:00
|
|
|
|
gtk_widget_set_margin_top (label, 6);
|
|
|
|
|
gtk_widget_set_margin_bottom (label, 6);
|
2016-10-02 06:43:30 +00:00
|
|
|
|
gtk_widget_set_halign (label, GTK_ALIGN_CENTER);
|
|
|
|
|
gtk_widget_set_hexpand (label, TRUE);
|
2020-02-06 16:32:26 +00:00
|
|
|
|
gtk_widget_add_css_class (label, "title");
|
2020-05-09 12:26:52 +00:00
|
|
|
|
gtk_box_append (GTK_BOX (box), label);
|
2014-07-01 01:51:19 +00:00
|
|
|
|
g_signal_connect_object (dialog, "notify::title", G_CALLBACK (update_title), label, 0);
|
|
|
|
|
|
|
|
|
|
gtk_window_set_titlebar (GTK_WINDOW (dialog), box);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-15 17:58:35 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_message_dialog_set_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
2010-07-02 13:53:46 +00:00
|
|
|
|
GtkMessageDialog *dialog = GTK_MESSAGE_DIALOG (object);
|
2018-06-18 09:14:36 +00:00
|
|
|
|
GtkMessageDialogPrivate *priv = gtk_message_dialog_get_instance_private (dialog);
|
2006-01-11 15:23:05 +00:00
|
|
|
|
|
2001-11-15 17:58:35 +00:00
|
|
|
|
switch (prop_id)
|
|
|
|
|
{
|
|
|
|
|
case PROP_MESSAGE_TYPE:
|
|
|
|
|
setup_type (dialog, g_value_get_enum (value));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_BUTTONS:
|
|
|
|
|
gtk_message_dialog_add_buttons (dialog, g_value_get_enum (value));
|
|
|
|
|
break;
|
2006-01-11 15:23:05 +00:00
|
|
|
|
case PROP_TEXT:
|
|
|
|
|
if (priv->has_primary_markup)
|
2010-07-02 13:53:46 +00:00
|
|
|
|
gtk_label_set_markup (GTK_LABEL (priv->label),
|
2006-01-11 15:23:05 +00:00
|
|
|
|
g_value_get_string (value));
|
|
|
|
|
else
|
2010-07-02 13:53:46 +00:00
|
|
|
|
gtk_label_set_text (GTK_LABEL (priv->label),
|
2006-01-11 15:23:05 +00:00
|
|
|
|
g_value_get_string (value));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_USE_MARKUP:
|
2014-06-09 13:07:18 +00:00
|
|
|
|
if (priv->has_primary_markup != g_value_get_boolean (value))
|
|
|
|
|
{
|
|
|
|
|
priv->has_primary_markup = g_value_get_boolean (value);
|
|
|
|
|
gtk_label_set_use_markup (GTK_LABEL (priv->label), priv->has_primary_markup);
|
|
|
|
|
g_object_notify_by_pspec (object, pspec);
|
|
|
|
|
}
|
2006-01-11 15:23:05 +00:00
|
|
|
|
break;
|
|
|
|
|
case PROP_SECONDARY_TEXT:
|
|
|
|
|
{
|
2020-07-24 18:40:36 +00:00
|
|
|
|
const char *txt = g_value_get_string (value);
|
2010-07-02 13:53:46 +00:00
|
|
|
|
|
2006-01-11 15:23:05 +00:00
|
|
|
|
if (gtk_label_get_use_markup (GTK_LABEL (priv->secondary_label)))
|
|
|
|
|
gtk_label_set_markup (GTK_LABEL (priv->secondary_label), txt);
|
|
|
|
|
else
|
|
|
|
|
gtk_label_set_text (GTK_LABEL (priv->secondary_label), txt);
|
|
|
|
|
|
|
|
|
|
if (txt)
|
|
|
|
|
{
|
|
|
|
|
priv->has_secondary_text = TRUE;
|
|
|
|
|
gtk_widget_show (priv->secondary_label);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
priv->has_secondary_text = FALSE;
|
|
|
|
|
gtk_widget_hide (priv->secondary_label);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case PROP_SECONDARY_USE_MARKUP:
|
2014-06-09 13:07:18 +00:00
|
|
|
|
if (gtk_label_get_use_markup (GTK_LABEL (priv->secondary_label)) != g_value_get_boolean (value))
|
|
|
|
|
{
|
|
|
|
|
gtk_label_set_use_markup (GTK_LABEL (priv->secondary_label), g_value_get_boolean (value));
|
|
|
|
|
g_object_notify_by_pspec (object, pspec);
|
|
|
|
|
}
|
2006-01-11 15:23:05 +00:00
|
|
|
|
break;
|
2006-05-09 04:36:43 +00:00
|
|
|
|
|
2001-11-15 17:58:35 +00:00
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_message_dialog_get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
2010-07-02 13:53:46 +00:00
|
|
|
|
GtkMessageDialog *dialog = GTK_MESSAGE_DIALOG (object);
|
2018-06-18 09:14:36 +00:00
|
|
|
|
GtkMessageDialogPrivate *priv = gtk_message_dialog_get_instance_private (dialog);
|
2006-01-11 15:23:05 +00:00
|
|
|
|
|
2001-11-15 17:58:35 +00:00
|
|
|
|
switch (prop_id)
|
|
|
|
|
{
|
|
|
|
|
case PROP_MESSAGE_TYPE:
|
2006-05-09 04:36:43 +00:00
|
|
|
|
g_value_set_enum (value, (GtkMessageType) priv->message_type);
|
2003-08-05 14:10:00 +00:00
|
|
|
|
break;
|
2006-01-11 15:23:05 +00:00
|
|
|
|
case PROP_TEXT:
|
2010-07-02 13:53:46 +00:00
|
|
|
|
g_value_set_string (value, gtk_label_get_label (GTK_LABEL (priv->label)));
|
2006-01-11 15:23:05 +00:00
|
|
|
|
break;
|
|
|
|
|
case PROP_USE_MARKUP:
|
|
|
|
|
g_value_set_boolean (value, priv->has_primary_markup);
|
|
|
|
|
break;
|
|
|
|
|
case PROP_SECONDARY_TEXT:
|
|
|
|
|
if (priv->has_secondary_text)
|
|
|
|
|
g_value_set_string (value,
|
|
|
|
|
gtk_label_get_label (GTK_LABEL (priv->secondary_label)));
|
|
|
|
|
else
|
|
|
|
|
g_value_set_string (value, NULL);
|
|
|
|
|
break;
|
|
|
|
|
case PROP_SECONDARY_USE_MARKUP:
|
|
|
|
|
if (priv->has_secondary_text)
|
|
|
|
|
g_value_set_boolean (value,
|
|
|
|
|
gtk_label_get_use_markup (GTK_LABEL (priv->secondary_label)));
|
|
|
|
|
else
|
|
|
|
|
g_value_set_boolean (value, FALSE);
|
|
|
|
|
break;
|
2010-06-22 18:10:52 +00:00
|
|
|
|
case PROP_MESSAGE_AREA:
|
|
|
|
|
g_value_set_object (value, priv->message_area);
|
|
|
|
|
break;
|
2001-11-15 17:58:35 +00:00
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-20 23:14:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_message_dialog_new:
|
2009-12-10 10:23:40 +00:00
|
|
|
|
* @parent: (allow-none): transient parent, or %NULL for none
|
2000-10-20 23:14:41 +00:00
|
|
|
|
* @flags: flags
|
|
|
|
|
* @type: type of message
|
|
|
|
|
* @buttons: set of buttons to use
|
2009-12-10 10:23:40 +00:00
|
|
|
|
* @message_format: (allow-none): printf()-style format string, or %NULL
|
2011-09-26 00:58:59 +00:00
|
|
|
|
* @...: arguments for @message_format
|
2009-12-10 10:23:40 +00:00
|
|
|
|
*
|
2015-04-17 15:10:58 +00:00
|
|
|
|
* Creates a new message dialog, which is a simple dialog with some text
|
|
|
|
|
* the user may want to see. When the user clicks a button a “response”
|
Derive from GtkDialog, and use stock buttons. Should be 100% source
2000-11-02 Havoc Pennington <hp@redhat.com>
* gtk/gtkfilesel.h, gtk/gtkfilesel.c: Derive from GtkDialog, and
use stock buttons. Should be 100% source compatible, appropriate
filesel fields now point to dialog->vbox and dialog->action_area.
On the bizarre side, dialog->action_area and filesel->action_area
are not the same widget.
(gtk_file_selection_init): Put some padding around the selection
entry, so it isn't touching the GtkDialog separator.
* gtk/gtkfontsel.h, gtk/gtkfontsel.c: Derive from GtkDialog,
use stock buttons, etc. Should also be source compatible.
Set the dialog default title in _init not _new().
* gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init):
Use stock buttons; don't put a button box inside the existing
dialog button box. Don't bother with push/pop colormap anymore.
* gtk/gtkdialog.h (GtkResponseType): Add a bunch of more
specific GTK_RESPONSE_* values. This is clearer than ACCEPT/REJECT
for message dialog, and necessary for the font selection and color
selection with help and apply buttons.
* gtk/gtkdialog.c (gtk_dialog_add_button): Return a pointer
to the created button widget. Set GTK_CAN_DEFAULT on the button.
(gtk_dialog_init): Default to GTK_BUTTONBOX_END, put less spacing
between buttons, put less padding around the action area.
(gtk_dialog_run): Exit on unmap rather than on destroy.
This will also exit the loop if the widget is hidden.
(gtk_dialog_delete_event_handler): Use GTK_RESPONSE_DELETE_EVENT
instead of GTK_RESPONSE_NONE; since we're already adding a bunch
of GTK_RESPONSE_* stuff, this seems cleaner, and lets you
special-case delete event.
* gtk/gtktexttagtable.c, gtk/gtktextview.c: Fix doc comment
formatting
2000-11-06 16:44:01 +00:00
|
|
|
|
* signal is emitted with response IDs from #GtkResponseType. See
|
|
|
|
|
* #GtkDialog for more details.
|
2009-12-10 10:23:40 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: (transfer none): a new #GtkMessageDialog
|
2011-09-26 00:58:59 +00:00
|
|
|
|
*/
|
2000-10-20 23:14:41 +00:00
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_message_dialog_new (GtkWindow *parent,
|
|
|
|
|
GtkDialogFlags flags,
|
|
|
|
|
GtkMessageType type,
|
|
|
|
|
GtkButtonsType buttons,
|
2020-07-24 18:40:36 +00:00
|
|
|
|
const char *message_format,
|
2000-10-20 23:14:41 +00:00
|
|
|
|
...)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *widget;
|
|
|
|
|
GtkDialog *dialog;
|
2020-07-24 18:40:36 +00:00
|
|
|
|
char * msg = NULL;
|
2000-10-20 23:14:41 +00:00
|
|
|
|
va_list args;
|
2003-07-18 18:52:03 +00:00
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (parent == NULL || GTK_IS_WINDOW (parent), NULL);
|
|
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
|
widget = g_object_new (GTK_TYPE_MESSAGE_DIALOG,
|
2014-07-01 01:51:19 +00:00
|
|
|
|
"use-header-bar", FALSE,
|
2005-03-26 05:49:15 +00:00
|
|
|
|
"message-type", type,
|
2002-10-11 22:57:11 +00:00
|
|
|
|
"buttons", buttons,
|
|
|
|
|
NULL);
|
2000-10-20 23:14:41 +00:00
|
|
|
|
dialog = GTK_DIALOG (widget);
|
|
|
|
|
|
|
|
|
|
if (message_format)
|
|
|
|
|
{
|
2018-06-18 09:14:36 +00:00
|
|
|
|
GtkMessageDialogPrivate *priv = gtk_message_dialog_get_instance_private ((GtkMessageDialog*)dialog);
|
2000-10-20 23:14:41 +00:00
|
|
|
|
va_start (args, message_format);
|
2002-10-11 22:57:11 +00:00
|
|
|
|
msg = g_strdup_vprintf (message_format, args);
|
2000-10-20 23:14:41 +00:00
|
|
|
|
va_end (args);
|
2004-10-26 05:06:32 +00:00
|
|
|
|
|
2018-06-18 09:14:36 +00:00
|
|
|
|
gtk_label_set_text (GTK_LABEL (priv->label), msg);
|
2004-10-26 05:06:32 +00:00
|
|
|
|
|
2000-10-20 23:14:41 +00:00
|
|
|
|
g_free (msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (parent != NULL)
|
2014-07-01 01:51:19 +00:00
|
|
|
|
gtk_window_set_transient_for (GTK_WINDOW (widget), GTK_WINDOW (parent));
|
2018-06-18 09:14:36 +00:00
|
|
|
|
|
2000-10-20 23:14:41 +00:00
|
|
|
|
if (flags & GTK_DIALOG_MODAL)
|
|
|
|
|
gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
|
|
|
|
|
|
|
|
|
|
if (flags & GTK_DIALOG_DESTROY_WITH_PARENT)
|
|
|
|
|
gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), TRUE);
|
2001-06-01 19:26:01 +00:00
|
|
|
|
|
2001-11-15 17:58:35 +00:00
|
|
|
|
return widget;
|
|
|
|
|
}
|
|
|
|
|
|
2003-07-18 18:52:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_message_dialog_new_with_markup:
|
2011-09-26 00:58:59 +00:00
|
|
|
|
* @parent: (allow-none): transient parent, or %NULL for none
|
2003-07-18 18:52:03 +00:00
|
|
|
|
* @flags: flags
|
|
|
|
|
* @type: type of message
|
|
|
|
|
* @buttons: set of buttons to use
|
2010-02-19 16:53:17 +00:00
|
|
|
|
* @message_format: (allow-none): printf()-style format string, or %NULL
|
2011-09-26 00:58:59 +00:00
|
|
|
|
* @...: arguments for @message_format
|
|
|
|
|
*
|
2015-04-17 15:10:58 +00:00
|
|
|
|
* Creates a new message dialog, which is a simple dialog with some text that
|
2014-02-07 02:07:03 +00:00
|
|
|
|
* is marked up with the [Pango text markup language][PangoMarkupFormat].
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* When the user clicks a button a “response” signal is emitted with
|
2003-07-18 18:52:03 +00:00
|
|
|
|
* response IDs from #GtkResponseType. See #GtkDialog for more details.
|
|
|
|
|
*
|
2003-10-29 20:43:58 +00:00
|
|
|
|
* Special XML characters in the printf() arguments passed to this
|
|
|
|
|
* function will automatically be escaped as necessary.
|
|
|
|
|
* (See g_markup_printf_escaped() for how this is implemented.)
|
|
|
|
|
* Usually this is what you want, but if you have an existing
|
|
|
|
|
* Pango markup string that you want to use literally as the
|
|
|
|
|
* label, then you need to use gtk_message_dialog_set_markup()
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* instead, since you can’t pass the markup string either
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* as the format (it might contain “%” characters) or as a string
|
2003-10-29 20:43:58 +00:00
|
|
|
|
* argument.
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2003-10-29 20:43:58 +00:00
|
|
|
|
* GtkWidget *dialog;
|
2014-02-12 21:09:09 +00:00
|
|
|
|
* GtkDialogFlags flags = GTK_DIALOG_DESTROY_WITH_PARENT;
|
|
|
|
|
* dialog = gtk_message_dialog_new (parent_window,
|
|
|
|
|
* flags,
|
2003-10-29 20:43:58 +00:00
|
|
|
|
* GTK_MESSAGE_ERROR,
|
2005-11-27 20:48:41 +00:00
|
|
|
|
* GTK_BUTTONS_CLOSE,
|
2003-10-29 20:43:58 +00:00
|
|
|
|
* NULL);
|
|
|
|
|
* gtk_message_dialog_set_markup (GTK_MESSAGE_DIALOG (dialog),
|
|
|
|
|
* markup);
|
2007-11-25 06:51:19 +00:00
|
|
|
|
* ]|
|
2003-07-18 18:52:03 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: a new #GtkMessageDialog
|
2003-07-18 18:52:03 +00:00
|
|
|
|
**/
|
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_message_dialog_new_with_markup (GtkWindow *parent,
|
|
|
|
|
GtkDialogFlags flags,
|
|
|
|
|
GtkMessageType type,
|
|
|
|
|
GtkButtonsType buttons,
|
2020-07-24 18:40:36 +00:00
|
|
|
|
const char *message_format,
|
2003-07-18 18:52:03 +00:00
|
|
|
|
...)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *widget;
|
|
|
|
|
va_list args;
|
2020-07-24 18:40:36 +00:00
|
|
|
|
char *msg = NULL;
|
2003-07-18 18:52:03 +00:00
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (parent == NULL || GTK_IS_WINDOW (parent), NULL);
|
|
|
|
|
|
2003-10-29 20:43:58 +00:00
|
|
|
|
widget = gtk_message_dialog_new (parent, flags, type, buttons, NULL);
|
2003-07-18 18:52:03 +00:00
|
|
|
|
|
|
|
|
|
if (message_format)
|
|
|
|
|
{
|
|
|
|
|
va_start (args, message_format);
|
2003-10-29 20:43:58 +00:00
|
|
|
|
msg = g_markup_vprintf_escaped (message_format, args);
|
2003-07-18 18:52:03 +00:00
|
|
|
|
va_end (args);
|
|
|
|
|
|
2003-10-29 20:43:58 +00:00
|
|
|
|
gtk_message_dialog_set_markup (GTK_MESSAGE_DIALOG (widget), msg);
|
2003-07-18 18:52:03 +00:00
|
|
|
|
|
|
|
|
|
g_free (msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return widget;
|
|
|
|
|
}
|
|
|
|
|
|
2003-10-29 20:43:58 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_message_dialog_set_markup:
|
|
|
|
|
* @message_dialog: a #GtkMessageDialog
|
2014-02-07 02:07:03 +00:00
|
|
|
|
* @str: markup string (see [Pango markup format][PangoMarkupFormat])
|
2003-10-29 20:43:58 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the text of the message dialog to be @str, which is marked
|
2014-02-07 02:07:03 +00:00
|
|
|
|
* up with the [Pango text markup language][PangoMarkupFormat].
|
2003-10-29 20:43:58 +00:00
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
gtk_message_dialog_set_markup (GtkMessageDialog *message_dialog,
|
2020-07-24 18:40:36 +00:00
|
|
|
|
const char *str)
|
2003-10-29 20:43:58 +00:00
|
|
|
|
{
|
2018-06-18 09:14:36 +00:00
|
|
|
|
GtkMessageDialogPrivate *priv = gtk_message_dialog_get_instance_private (message_dialog);
|
2004-10-26 05:06:32 +00:00
|
|
|
|
|
2003-10-29 20:43:58 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_MESSAGE_DIALOG (message_dialog));
|
2004-10-26 05:06:32 +00:00
|
|
|
|
|
|
|
|
|
priv->has_primary_markup = TRUE;
|
2010-07-02 13:53:46 +00:00
|
|
|
|
gtk_label_set_markup (GTK_LABEL (priv->label), str);
|
2003-10-29 20:43:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-10-26 05:06:32 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_message_dialog_format_secondary_text:
|
|
|
|
|
* @message_dialog: a #GtkMessageDialog
|
2010-02-19 16:53:17 +00:00
|
|
|
|
* @message_format: (allow-none): printf()-style format string, or %NULL
|
2011-09-26 00:58:59 +00:00
|
|
|
|
* @...: arguments for @message_format
|
|
|
|
|
*
|
|
|
|
|
* Sets the secondary text of the message dialog to be @message_format
|
2004-10-26 05:06:32 +00:00
|
|
|
|
* (with printf()-style).
|
2011-09-26 00:58:59 +00:00
|
|
|
|
*/
|
2004-10-26 05:06:32 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_message_dialog_format_secondary_text (GtkMessageDialog *message_dialog,
|
2020-07-24 18:40:36 +00:00
|
|
|
|
const char *message_format,
|
2004-10-26 05:06:32 +00:00
|
|
|
|
...)
|
|
|
|
|
{
|
2018-06-18 09:14:36 +00:00
|
|
|
|
GtkMessageDialogPrivate *priv = gtk_message_dialog_get_instance_private (message_dialog);
|
2004-10-26 05:06:32 +00:00
|
|
|
|
va_list args;
|
2020-07-24 18:40:36 +00:00
|
|
|
|
char *msg = NULL;
|
2004-10-26 05:06:32 +00:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_MESSAGE_DIALOG (message_dialog));
|
|
|
|
|
|
|
|
|
|
if (message_format)
|
|
|
|
|
{
|
|
|
|
|
priv->has_secondary_text = TRUE;
|
|
|
|
|
|
|
|
|
|
va_start (args, message_format);
|
|
|
|
|
msg = g_strdup_vprintf (message_format, args);
|
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
|
|
gtk_widget_show (priv->secondary_label);
|
|
|
|
|
gtk_label_set_text (GTK_LABEL (priv->secondary_label), msg);
|
|
|
|
|
|
|
|
|
|
g_free (msg);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
priv->has_secondary_text = FALSE;
|
|
|
|
|
gtk_widget_hide (priv->secondary_label);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_message_dialog_format_secondary_markup:
|
|
|
|
|
* @message_dialog: a #GtkMessageDialog
|
2011-09-26 00:58:59 +00:00
|
|
|
|
* @message_format: printf()-style markup string (see
|
2014-02-07 02:07:03 +00:00
|
|
|
|
[Pango markup format][PangoMarkupFormat]), or %NULL
|
2011-09-26 00:58:59 +00:00
|
|
|
|
* @...: arguments for @message_format
|
|
|
|
|
*
|
|
|
|
|
* Sets the secondary text of the message dialog to be @message_format (with
|
|
|
|
|
* printf()-style), which is marked up with the
|
2014-02-07 02:07:03 +00:00
|
|
|
|
* [Pango text markup language][PangoMarkupFormat].
|
2004-10-26 05:06:32 +00:00
|
|
|
|
*
|
2005-07-22 16:10:32 +00:00
|
|
|
|
* Due to an oversight, this function does not escape special XML characters
|
2011-09-26 00:58:59 +00:00
|
|
|
|
* like gtk_message_dialog_new_with_markup() does. Thus, if the arguments
|
2005-07-22 16:10:32 +00:00
|
|
|
|
* may contain special XML characters, you should use g_markup_printf_escaped()
|
|
|
|
|
* to escape it.
|
2005-07-22 20:28:31 +00:00
|
|
|
|
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2020-07-24 18:40:36 +00:00
|
|
|
|
* char *msg;
|
2011-09-26 00:58:59 +00:00
|
|
|
|
*
|
2005-07-22 16:10:32 +00:00
|
|
|
|
* msg = g_markup_printf_escaped (message_format, ...);
|
2014-02-12 21:09:09 +00:00
|
|
|
|
* gtk_message_dialog_format_secondary_markup (message_dialog,
|
|
|
|
|
* "%s", msg);
|
2005-07-22 16:10:32 +00:00
|
|
|
|
* g_free (msg);
|
2014-01-27 17:12:55 +00:00
|
|
|
|
* ]|
|
2011-09-26 00:58:59 +00:00
|
|
|
|
*/
|
2004-10-26 05:06:32 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_message_dialog_format_secondary_markup (GtkMessageDialog *message_dialog,
|
2020-07-24 18:40:36 +00:00
|
|
|
|
const char *message_format,
|
2004-10-26 05:06:32 +00:00
|
|
|
|
...)
|
|
|
|
|
{
|
2018-06-18 09:14:36 +00:00
|
|
|
|
GtkMessageDialogPrivate *priv = gtk_message_dialog_get_instance_private (message_dialog);
|
2004-10-26 05:06:32 +00:00
|
|
|
|
va_list args;
|
2020-07-24 18:40:36 +00:00
|
|
|
|
char *msg = NULL;
|
2004-10-26 05:06:32 +00:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_MESSAGE_DIALOG (message_dialog));
|
|
|
|
|
|
|
|
|
|
if (message_format)
|
|
|
|
|
{
|
|
|
|
|
priv->has_secondary_text = TRUE;
|
|
|
|
|
|
|
|
|
|
va_start (args, message_format);
|
|
|
|
|
msg = g_strdup_vprintf (message_format, args);
|
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
|
|
gtk_widget_show (priv->secondary_label);
|
|
|
|
|
gtk_label_set_markup (GTK_LABEL (priv->secondary_label), msg);
|
|
|
|
|
|
|
|
|
|
g_free (msg);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
priv->has_secondary_text = FALSE;
|
|
|
|
|
gtk_widget_hide (priv->secondary_label);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-22 18:10:52 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_message_dialog_get_message_area:
|
|
|
|
|
* @message_dialog: a #GtkMessageDialog
|
|
|
|
|
*
|
2010-09-21 04:18:11 +00:00
|
|
|
|
* Returns the message area of the dialog. This is the box where the
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* dialog’s primary and secondary labels are packed. You can add your
|
2014-02-14 01:34:54 +00:00
|
|
|
|
* own extra content to that box and it will appear below those labels.
|
|
|
|
|
* See gtk_dialog_get_content_area() for the corresponding
|
2010-09-21 04:18:11 +00:00
|
|
|
|
* function in the parent #GtkDialog.
|
|
|
|
|
*
|
2016-07-13 01:57:46 +00:00
|
|
|
|
* Returns: (transfer none): A #GtkBox corresponding to the
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* “message area” in the @message_dialog.
|
2010-06-22 18:10:52 +00:00
|
|
|
|
**/
|
|
|
|
|
GtkWidget *
|
|
|
|
|
gtk_message_dialog_get_message_area (GtkMessageDialog *message_dialog)
|
|
|
|
|
{
|
2018-06-18 09:14:36 +00:00
|
|
|
|
GtkMessageDialogPrivate *priv = gtk_message_dialog_get_instance_private (message_dialog);
|
|
|
|
|
|
2010-06-22 18:10:52 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_MESSAGE_DIALOG (message_dialog), NULL);
|
|
|
|
|
|
2018-06-18 09:14:36 +00:00
|
|
|
|
return priv->message_area;
|
2010-06-22 18:10:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-11-15 17:58:35 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_message_dialog_add_buttons (GtkMessageDialog* message_dialog,
|
|
|
|
|
GtkButtonsType buttons)
|
|
|
|
|
{
|
|
|
|
|
GtkDialog* dialog = GTK_DIALOG (message_dialog);
|
|
|
|
|
|
2000-10-20 23:14:41 +00:00
|
|
|
|
switch (buttons)
|
|
|
|
|
{
|
|
|
|
|
case GTK_BUTTONS_NONE:
|
|
|
|
|
/* nothing */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_BUTTONS_OK:
|
2014-01-17 17:36:53 +00:00
|
|
|
|
gtk_dialog_add_button (dialog, _("_OK"), GTK_RESPONSE_OK);
|
2000-10-20 23:14:41 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_BUTTONS_CLOSE:
|
2014-01-17 17:36:53 +00:00
|
|
|
|
gtk_dialog_add_button (dialog, _("_Close"), GTK_RESPONSE_CLOSE);
|
2000-10-20 23:14:41 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_BUTTONS_CANCEL:
|
2014-01-17 17:36:53 +00:00
|
|
|
|
gtk_dialog_add_button (dialog, _("_Cancel"), GTK_RESPONSE_CANCEL);
|
2000-10-20 23:14:41 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_BUTTONS_YES_NO:
|
2014-01-17 17:36:53 +00:00
|
|
|
|
gtk_dialog_add_button (dialog, _("_No"), GTK_RESPONSE_NO);
|
|
|
|
|
gtk_dialog_add_button (dialog, _("_Yes"), GTK_RESPONSE_YES);
|
2000-10-20 23:14:41 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_BUTTONS_OK_CANCEL:
|
2014-01-17 17:36:53 +00:00
|
|
|
|
gtk_dialog_add_button (dialog, _("_Cancel"), GTK_RESPONSE_CANCEL);
|
|
|
|
|
gtk_dialog_add_button (dialog, _("_OK"), GTK_RESPONSE_OK);
|
2000-10-20 23:14:41 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
g_warning ("Unknown GtkButtonsType");
|
|
|
|
|
break;
|
2001-11-15 17:58:35 +00:00
|
|
|
|
}
|
2002-01-28 18:52:49 +00:00
|
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (message_dialog), "buttons");
|
2000-10-20 23:14:41 +00:00
|
|
|
|
}
|
2001-04-24 12:24:35 +00:00
|
|
|
|
|