aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/dlg_utils.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-01-07 00:10:52 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-01-07 00:10:52 +0000
commitbba39ed952513107da36c2e45fa097c644043959 (patch)
treef3487df000739c8bc8b61abc97db069f8e7ea121 /gtk/dlg_utils.h
parentbcccb3185d2092928b58f384047716110ddce5f6 (diff)
save dialog with "Captured" and "Displayed" buttons in packet range
svn path=/trunk/; revision=9580
Diffstat (limited to 'gtk/dlg_utils.h')
-rw-r--r--gtk/dlg_utils.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/gtk/dlg_utils.h b/gtk/dlg_utils.h
index 200b20d71f..81a3adaacd 100644
--- a/gtk/dlg_utils.h
+++ b/gtk/dlg_utils.h
@@ -1,7 +1,7 @@
/* dlg_utils.h
* Declarations of utilities to use when constructing dialogs
*
- * $Id: dlg_utils.h,v 1.7 2003/09/24 08:43:34 guy Exp $
+ * $Id: dlg_utils.h,v 1.8 2004/01/07 00:10:51 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -26,24 +26,26 @@
#define __DLG_UTILS_H__
/* Create a dialog box window that belongs to Ethereal's main window. */
-GtkWidget *dlg_window_new(const gchar *);
+extern GtkWidget *dlg_window_new(const gchar *);
/* Create a file selection dialog box window that belongs to Ethereal's
main window. */
-GtkWidget *file_selection_new(const gchar *);
+extern GtkWidget *file_selection_new(const gchar *);
/* Set the "activate" signal for a widget to call a routine to
activate the "OK" button for a dialog box. */
-void dlg_set_activate(GtkWidget *widget, GtkWidget *ok_button);
+extern void dlg_set_activate(GtkWidget *widget, GtkWidget *ok_button);
/* Set the "key_press_event" signal for a top-level dialog window to
call a routine to activate the "Cancel" button for a dialog box if
the key being pressed is the <Esc> key. */
-void dlg_set_cancel(GtkWidget *widget, GtkWidget *cancel_button);
+extern void dlg_set_cancel(GtkWidget *widget, GtkWidget *cancel_button);
-GtkWidget *dlg_radio_button_new_with_label_with_mnemonic(GSList *group,
+extern GtkWidget *dlg_radio_button_new_with_label_with_mnemonic(GSList *group,
const gchar *label, GtkAccelGroup *accel_group);
-GtkWidget *dlg_check_button_new_with_label_with_mnemonic(const gchar *label,
+extern GtkWidget *dlg_check_button_new_with_label_with_mnemonic(const gchar *label,
GtkAccelGroup *accel_group);
+extern GtkWidget *dlg_toggle_button_new_with_label_with_mnemonic(const gchar *label,
+ GtkAccelGroup *accel_group);
#endif