#include <errno.h>
#include <math.h>
+#include <glib/gprintf.h>
#include <glib/gstdio.h>
#include <gio/gio.h>
#include <gtk/gtk.h>
solipa_message_dialog (GtkWidget *transient,
GtkMessageType type,
GtkButtonsType buttons,
- const gchar *message_text)
+ const gchar *message_text,
+ ...)
{
gint risp;
+ va_list ap;
+ gchar *_message_text;
GtkWidget *dialog;
g_return_val_if_fail (GTK_IS_WINDOW (transient), GTK_RESPONSE_NONE);
+ va_start (ap, message_text);
+ _message_text = NULL;
+ g_vasprintf (&_message_text, message_text, ap);
+ va_end (ap);
+
dialog = gtk_message_dialog_new_with_markup (GTK_WINDOW (transient),
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
type,
buttons,
- message_text);
+ _message_text);
risp = gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
+ g_free (_message_text);
+
return risp;
}
gint solipa_message_dialog (GtkWidget *transient,
GtkMessageType type,
GtkButtonsType buttons,
- const gchar *message_text);
+ const gchar *message_text,
+ ...);
GtkWidget *solipa_info_bar (GtkMessageType type, const gchar *message_text);
--- /dev/null
+/*
+ * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ *
+ * 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.1 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
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <solipa.h>
+#include <utils.h>
+
+gboolean
+on_w_delete_event (GtkWidget *widget,
+ GdkEvent *event,
+ gpointer user_data)
+{
+ return FALSE;
+}
+
+int
+main (int argc, char *argv[])
+{
+ GtkWidget *w;
+
+ gtk_init (&argc, &argv);
+
+ w = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+ g_signal_connect (w, "delete-event", G_CALLBACK (on_w_delete_event), NULL);
+ g_signal_connect (w, "destroy", gtk_main_quit, NULL);
+
+ solipa_message_dialog (w,
+ GTK_MESSAGE_WARNING,
+ GTK_BUTTONS_OK,
+ "Impossibile aprire il collegamento selezionato (%s): %s.",
+ "bla bla bla",
+ "nessun dettaglio");
+
+ return 0;
+}