/* dlg_utils.c * Utilities to use when constructing dialogs * * $Id: dlg_utils.c,v 1.2 2002/09/01 09:46:54 oabad Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs * Copyright 1998 Gerald Combs * * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include "gtkglobals.h" #include "ui_util.h" static void dlg_activate (GtkWidget *widget, gpointer ok_button); static gint dlg_key_press (GtkWidget *widget, GdkEventKey *event, gpointer cancel_button); /* Create a dialog box window that belongs to Ethereal's main window. */ GtkWidget * dlg_window_new(const gchar *title) { GtkWidget *win; win = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_transient_for(GTK_WINDOW(win), GTK_WINDOW(top_level)); gtk_window_set_title(GTK_WINDOW(win), title); g_signal_connect(G_OBJECT(win), "realize", G_CALLBACK(window_icon_realize_cb), NULL); return win; } /* Set the "activate" signal for a widget to call a routine to activate the "OK" button for a dialog box. XXX - there should be a way to specify that a GtkEntry widget shouldn't itself handle the Return key, but should let it be passed on to the parent, so that you don't have to do this by hand for every GtkEntry widget in a dialog box, but, alas, there isn't. (Does this problem exist for other widgets? I.e., are there any others that seize the Return key? */ void dlg_set_activate(GtkWidget *widget, GtkWidget *ok_button) { g_signal_connect(G_OBJECT(widget), "activate", G_CALLBACK(dlg_activate), ok_button); } static void dlg_activate (GtkWidget *widget _U_, gpointer ok_button) { gtk_widget_activate(GTK_WIDGET(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 key. XXX - there should be a GTK+ widget that'll do that for you, and let you specify a "Cancel" button. It should also not impose a requirement that there be a separator in the dialog box, as the GtkDialog widget does; the visual convention that there's such a separator between the rest of the dialog boxes and buttons such as "OK" and "Cancel" is, for better or worse, not universal (not even in GTK+ - look at the GtkFileSelection dialog!). */ void dlg_set_cancel(GtkWidget *widget, GtkWidget *cancel_button) { g_signal_connect(G_OBJECT(widget), "key_press_event", G_CALLBACK(dlg_key_press), cancel_button); } static gint dlg_key_press (GtkWidget *widget, GdkEventKey *event, gpointer cancel_button) { g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (event != NULL, FALSE); if (event->keyval == GDK_Escape) { gtk_widget_activate(GTK_WIDGET(cancel_button)); return TRUE; } return FALSE; }