2 * Definitions for alert box routines with toolkit-independent APIs but
3 * toolkit-dependent implementations.
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
31 #endif /* __cplusplus */
35 * @ingroup dialog_group
41 ESD_TYPE_INFO
, /**< tells the user something they should know, but not requiring
42 any action; the only button should be "OK" */
43 ESD_TYPE_WARN
, /**< tells the user about a problem; the only button should be "OK" */
44 ESD_TYPE_CONFIRMATION
, /**< asks the user for confirmation; there should be more than
46 ESD_TYPE_ERROR
, /**< tells the user about a serious problem; the only button should be "OK" */
47 ESD_TYPE_STOP
/**< tells the user a stop action is in progress, there should be no button */
50 /** display no buttons at all */
51 #define ESD_BTN_NONE 0x00
52 /** display an "Ok" button */
53 #define ESD_BTN_OK 0x01
54 /** display a "Cancel" button */
55 #define ESD_BTN_CANCEL 0x02
56 /** display a "Yes" button */
57 #define ESD_BTN_YES 0x04
58 /** display a "No" button */
59 #define ESD_BTN_NO 0x08
60 /** display a "Clear" button */
61 #define ESD_BTN_CLEAR 0x10
62 /** display a "Save" button */
63 #define ESD_BTN_SAVE 0x20
64 /** display a "Continue without Saving" button */
65 #define ESD_BTN_DONT_SAVE 0x40
66 /** display a "Quit without Saving" button */
67 #define ESD_BTN_QUIT_DONT_SAVE 0x80
69 /** Standard button combination "Ok" + "Cancel". */
70 #define ESD_BTNS_OK_CANCEL (ESD_BTN_OK|ESD_BTN_CANCEL)
71 /** Standard button combination "Yes" + "No". */
72 #define ESD_BTNS_YES_NO (ESD_BTN_YES|ESD_BTN_NO)
73 /** Standard button combination "Yes" + "No" + "Cancel". */
74 #define ESD_BTNS_YES_NO_CANCEL (ESD_BTN_YES|ESD_BTN_NO|ESD_BTN_CANCEL)
75 /** Standard button combination "No" + "Cancel" + "Save". */
76 #define ESD_BTNS_SAVE_DONTSAVE (ESD_BTN_SAVE|ESD_BTN_DONT_SAVE)
77 #define ESD_BTNS_SAVE_DONTSAVE_CANCEL (ESD_BTN_DONT_SAVE|ESD_BTN_CANCEL|ESD_BTN_SAVE)
78 /** Standard button combination "Quit without saving" + "Cancel" + "Save". */
79 #define ESD_BTNS_SAVE_QUIT_DONTSAVE_CANCEL (ESD_BTN_QUIT_DONT_SAVE|ESD_BTN_CANCEL|ESD_BTN_SAVE)
80 /** Standard button combination "Quit without saving" + "Cancel". */
81 #define ESD_BTNS_QUIT_DONTSAVE_CANCEL (ESD_BTN_QUIT_DONT_SAVE|ESD_BTN_CANCEL)
83 /** Create and show a simple dialog.
85 * @param type type of dialog
86 * @param btn_mask the buttons to display
87 * @param msg_format printf like message format
88 * @param ... printf like parameters
89 * @return the newly created dialog
91 extern gpointer
simple_dialog(ESD_TYPE_E type
, gint btn_mask
,
92 const gchar
*msg_format
, ...)
95 /** Create and show a simple dialog using a va_list.
97 * @param type type of dialog
98 * @param btn_mask the buttons to display
99 * @param msg_format printf like message format
100 * @param ap parameters
101 * @return the newly created dialog
103 extern gpointer
vsimple_dialog(ESD_TYPE_E type
, gint btn_mask
,
104 const gchar
*msg_format
, va_list ap
);
106 /** Callback function type for simple_dialog_set_cb() */
107 typedef void (* simple_dialog_cb_t
) (gpointer dialog
, gint btn
, gpointer data
);
109 /** Set the callback function for the dialog, called when a button was pressed.
111 * @param dialog the dialog from simple_dialog()
112 * @param callback_fct the callback function to set
113 * @param data data to be passed to the callback function
115 extern void simple_dialog_set_cb(gpointer dialog
, simple_dialog_cb_t callback_fct
, gpointer data
);
117 /** Close the dialog, useful for "no button" dialogs.
119 * @param dialog the dialog to close from simple_dialog()
121 extern void simple_dialog_close(gpointer dialog
);
123 /** Add a check button to the dialog (e.g. "Don't show this message again")
125 * @param dialog the dialog from simple_dialog()
126 * @param text the text to display
128 extern void simple_dialog_check_set(gpointer dialog
, const gchar
*text
);
130 /** Get the check buttons state.
132 * @param dialog the dialog from simple_dialog()
133 * @return current button state (TRUE is checked)
135 extern gboolean
simple_dialog_check_get(gpointer dialog
);
137 /** Surround the primary dialog message text by
138 * simple_dialog_primary_start() and simple_dialog_primary_end().
139 * To highlight the first sentence (will take effect on GTK2 only).
141 extern const char *simple_dialog_primary_start(void);
142 /** Surround the primary dialog message text by
143 * simple_dialog_primary_start() and simple_dialog_primary_end().
144 * To highlight the first sentence (will take effect on GTK2 only).
146 extern const char *simple_dialog_primary_end(void);
148 /** Escape the message text, if it probably contains Pango escape sequences.
149 * For example html like tags starting with a <.
151 * @param msg the string to escape
152 * @return the escaped message text, must be freed with g_free() later
154 extern char *simple_dialog_format_message(const char *msg
);
157 * Display all queued messages.
158 * If a routine is called to display a dialog before there are any windows
159 * open, information to use to display the dialog is queued up. This
160 * routine should be called once there are windows open, so that the queued
161 * up dialogs are displayed on top of those windows.
163 extern void display_queued_messages(void);
166 * Alert box, with optional "don't show this message again" variable
167 * and checkbox, and optional secondary text.
169 extern void simple_message_box(ESD_TYPE_E type
, gboolean
*notagain
,
170 const char *secondary_msg
,
171 const char *msg_format
, ...)
173 __attribute__((format(printf
, 4, 5)))
178 * Error alert box, taking a format and a va_list argument.
180 extern void vsimple_error_message_box(const char *msg_format
, va_list ap
);
183 * Error alert box, taking a format and a list of arguments.
185 extern void simple_error_message_box(const char *msg_format
, ...);
189 #endif /* __cplusplus */
191 #endif /* __DIALOG_H__ */
199 * indent-tabs-mode: nil
202 * ex: set shiftwidth=4 tabstop=8 expandtab:
203 * :indentSize=4:tabSize=8:noTabs=true: