1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
/*
* Copyright (C) 2002, 2003 Philip Blundell <philb@gnu.org>
*
* 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
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <gtk/gtk.h>
#include <errno.h>
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include "errorbox.h"
#include "picturebutton.h"
#include "pixmaps.h"
#ifdef ENABLE_NLS
#include <libintl.h>
#define _(x) dgettext(PACKAGE, x)
#else
#define _(x) (x)
#endif
static volatile gboolean currently_handling_error = FALSE;
static void
do_gpe_error_box (const char *text, gboolean block)
{
GtkWidget *w;
fprintf (stderr, _("GPE-ERROR: %s\n"), text);
if (currently_handling_error)
return;
currently_handling_error = TRUE;
w = gtk_message_dialog_new (NULL,
block ? GTK_DIALOG_MODAL : 0,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
text);
if (block)
{
gtk_dialog_run (GTK_DIALOG (w));
gtk_widget_destroy (w);
}
else
{
g_signal_connect_swapped (G_OBJECT (w), "response",
G_CALLBACK (gtk_widget_destroy),
G_OBJECT (w));
gtk_widget_show (w);
}
currently_handling_error = FALSE;
}
void
gpe_error_box (const char *text)
{
do_gpe_error_box (text, TRUE);
}
void
gpe_error_box_nonblocking (const char *text)
{
do_gpe_error_box (text, FALSE);
}
static void
do_gpe_perror_box(const char *text, gboolean block)
{
char *p = strerror (errno);
char *buf = g_malloc (strlen (p) + strlen (text) + 3);
strcpy (buf, text);
strcat (buf, ":\n");
strcat (buf, p);
do_gpe_error_box (buf, block);
g_free (buf);
}
void
gpe_perror_box (const char *text)
{
do_gpe_perror_box (text, TRUE);
}
void
gpe_perror_box_nonblocking (const char *text)
{
do_gpe_perror_box (text, FALSE);
}
void
gpe_error_box_fmt(const char *format, ...)
{
va_list ap;
char *str;
va_start (ap, format);
vasprintf (&str, format, ap);
va_end (ap);
gpe_error_box (str);
g_free (str);
}
|