fd53c84c9f168ab5362d8296dd333e179d0ebba0
[obnox/wireshark/wip.git] / alert_box.c
1 /* alert_box.c
2  * Routines to put up various "standard" alert boxes used in multiple
3  * places
4  *
5  * $Id$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <string.h>
31
32 #include <glib.h>
33
34 #include <epan/filesystem.h>
35 #include <epan/dfilter/dfilter.h>
36
37 #include "alert_box.h"
38
39 #include "simple_dialog.h"
40
41 /*
42  * Alert box for general errors.
43  */
44 void
45 failure_alert_box(const char *msg_format, va_list ap)
46 {
47   vsimple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, msg_format, ap);
48 }
49
50 /*
51  * Alert box for a failed attempt to open or create a file.
52  * "err" is assumed to be a UNIX-style errno; "for_writing" is TRUE if
53  * the file is being opened for writing and FALSE if it's being opened
54  * for reading.
55  *
56  * XXX - add explanatory secondary text for at least some of the errors;
57  * various HIGs suggest that you should, for example, suggest that the
58  * user remove files if the file system is full.  Perhaps that's because
59  * they're providing guidelines for people less sophisticated than the
60  * typical Wireshark user is, but....
61  */
62 void
63 open_failure_alert_box(const char *filename, int err, gboolean for_writing)
64 {
65   simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
66                 file_open_error_message(err, for_writing), filename);
67 }
68
69 /*
70  * Alert box for a failed attempt to read a file.
71  * "err" is assumed to be a UNIX-style errno.
72  */
73 void
74 read_failure_alert_box(const char *filename, int err)
75 {
76   simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
77                 "An error occurred while reading from the file \"%s\": %s.",
78                 filename, g_strerror(err));
79 }
80
81 /*
82  * Alert box for a failed attempt to write to a file.
83  * "err" is assumed to be a UNIX-style errno.
84  *
85  * XXX - add explanatory secondary text for at least some of the errors;
86  * various HIGs suggest that you should, for example, suggest that the
87  * user remove files if the file system is full.  Perhaps that's because
88  * they're providing guidelines for people less sophisticated than the
89  * typical Wireshark user is, but....
90  */
91 void
92 write_failure_alert_box(const char *filename, int err)
93 {
94   simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
95                 file_write_error_message(err), filename);
96 }
97
98 /*
99  * Alert box for an invalid display filter expression.
100  * Assumes "dfilter_error_msg" has been set by "dfilter_compile()" to the
101  * error message for the filter.
102  *
103  * XXX - should this have a "Help" button that pops up the display filter
104  * help?
105  */
106 void
107 bad_dfilter_alert_box(const char *dftext)
108 {
109   simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, 
110                 "%s%s%s\n"
111                 "\n"
112                 "The filter expression \"%s\" isn't a valid display filter.\n"
113                 "See the help for a description of the display filter syntax.",
114                 simple_dialog_primary_start(), dfilter_error_msg,
115                 simple_dialog_primary_end(), dftext);
116 }