Damn the torpedos[1], commit it anyway.
[obnox/wireshark/wip.git] / gtk / dlg_utils.h
1 /* dlg_utils.h
2  * Declarations of utilities to use when constructing dialogs
3  *
4  * $Id: dlg_utils.h,v 1.5 2000/08/23 06:55:39 guy Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@zing.org>
8  * Copyright 1998 Gerald Combs
9  *
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 #ifndef __DLG_UTILS_H__
27 #define __DLG_UTILS_H__
28
29 /* Create a dialog box window that belongs to Ethereal's main window. */
30 GtkWidget *dlg_window_new(const gchar *);
31
32 /* Set the "activate" signal for a widget to call a routine to
33    activate the "OK" button for a dialog box. */
34 void dlg_set_activate(GtkWidget *widget, GtkWidget *ok_button);
35
36 /* Set the "key_press_event" signal for a top-level dialog window to
37    call a routine to activate the "Cancel" button for a dialog box if
38    the key being pressed is the <Esc> key. */
39 void dlg_set_cancel(GtkWidget *widget, GtkWidget *cancel_button);
40
41 GtkWidget *dlg_radio_button_new_with_label_with_mnemonic(GSList *group,
42     const gchar *label, GtkAccelGroup *accel_group);
43 GtkWidget *dlg_check_button_new_with_label_with_mnemonic(const gchar *label,
44     GtkAccelGroup *accel_group);
45
46 #endif