Tag NetBIOS Name Service-over-UDP packets as "NBNS (UDP)".
[obnox/wireshark/wip.git] / prefs.c
1 /* prefs.c
2  * Routines for handling preferences
3  *
4  * $Id: prefs.c,v 1.6 1998/10/13 02:10:56 gerald 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 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #ifdef HAVE_SYS_TYPES_H
31 #include <sys/types.h>
32 #endif
33
34 #include <gtk/gtk.h>
35
36 #include "ethereal.h"
37 #include "packet.h"
38 #include "file.h"
39 #include "print.h"
40 #include "filter.h"
41 #include "prefs.h"
42
43 extern capture_file  cf;
44
45 void
46 prefs_cb(GtkWidget *w, gpointer sp) {
47   GtkWidget *prefs_w, *main_vb, *top_hb, *bbox, *prefs_nb,
48             *ok_bt, *save_bt, *cancel_bt;
49   GtkWidget *print_pg, *filter_pg, *filter_te;
50   GtkWidget *nlabel, *label;
51   gint       start_page = (gint) sp;
52
53   prefs_w = gtk_window_new(GTK_WINDOW_TOPLEVEL);
54   gtk_window_set_title(GTK_WINDOW(prefs_w), "Ethereal: Preferences");
55   
56   /* Container for each row of widgets */
57   main_vb = gtk_vbox_new(FALSE, 5);
58   gtk_container_border_width(GTK_CONTAINER(main_vb), 5);
59   gtk_container_add(GTK_CONTAINER(prefs_w), main_vb);
60   gtk_widget_show(main_vb);
61   
62   /* Top row: Preferences notebook */
63   top_hb = gtk_hbox_new(FALSE, 1);
64   gtk_container_add(GTK_CONTAINER(main_vb), top_hb);
65   gtk_widget_show(top_hb);
66   
67   prefs_nb = gtk_notebook_new();
68   gtk_container_add(GTK_CONTAINER(main_vb), prefs_nb);
69   gtk_widget_show(prefs_nb);
70   
71   /* General prefs */
72 /*   nlabel = gtk_label_new("Nothing here yet...");
73   gtk_widget_show (nlabel);
74
75   label = gtk_label_new ("General");
76   gtk_notebook_append_page (GTK_NOTEBOOK(prefs_nb), nlabel, label);
77  */  
78   /* Printing prefs */
79   print_pg = printer_prefs_show();
80   gtk_object_set_data(GTK_OBJECT(prefs_w), E_PRINT_PAGE_KEY, print_pg);
81   label = gtk_label_new ("Printing");
82   gtk_notebook_append_page (GTK_NOTEBOOK(prefs_nb), print_pg, label);
83     
84   /* Filter prefs */
85   filter_te = gtk_object_get_data(GTK_OBJECT(w), E_FILT_TE_PTR_KEY);
86   filter_pg = filter_prefs_show(filter_te);
87   
88   /* Pass along the entry widget pointer from the calling widget */
89   gtk_object_set_data(GTK_OBJECT(filter_pg), E_FILT_TE_PTR_KEY, filter_te);
90   gtk_object_set_data(GTK_OBJECT(prefs_w), E_FILTER_PAGE_KEY, filter_pg);
91   label = gtk_label_new ("Filters");
92   gtk_notebook_append_page (GTK_NOTEBOOK(prefs_nb), filter_pg, label);
93
94   /* Jump to the specified page, if it was supplied */
95   if (start_page > E_PR_PG_NONE)
96     gtk_notebook_set_page(GTK_NOTEBOOK(prefs_nb), start_page);
97     
98   /* Button row: OK and cancel buttons */
99   bbox = gtk_hbutton_box_new();
100   gtk_button_box_set_layout (GTK_BUTTON_BOX (bbox), GTK_BUTTONBOX_END);
101   gtk_button_box_set_spacing(GTK_BUTTON_BOX(bbox), 5);
102   gtk_container_add(GTK_CONTAINER(main_vb), bbox);
103   gtk_widget_show(bbox);
104   
105   ok_bt = gtk_button_new_with_label ("OK");
106   gtk_signal_connect_object(GTK_OBJECT(ok_bt), "clicked",
107     GTK_SIGNAL_FUNC(prefs_main_ok_cb), GTK_OBJECT(prefs_w));
108   GTK_WIDGET_SET_FLAGS(ok_bt, GTK_CAN_DEFAULT);
109   gtk_box_pack_start (GTK_BOX (bbox), ok_bt, TRUE, TRUE, 0);
110   gtk_widget_grab_default(ok_bt);
111   gtk_widget_show(ok_bt);
112
113   save_bt = gtk_button_new_with_label ("Save");
114   gtk_signal_connect_object(GTK_OBJECT(save_bt), "clicked",
115     GTK_SIGNAL_FUNC(prefs_main_save_cb), GTK_OBJECT(prefs_w));
116   GTK_WIDGET_SET_FLAGS(save_bt, GTK_CAN_DEFAULT);
117   gtk_box_pack_start (GTK_BOX (bbox), save_bt, TRUE, TRUE, 0);
118   gtk_widget_show(save_bt);
119   
120   cancel_bt = gtk_button_new_with_label ("Cancel");
121   gtk_signal_connect_object(GTK_OBJECT(cancel_bt), "clicked",
122     GTK_SIGNAL_FUNC(prefs_main_cancel_cb), GTK_OBJECT(prefs_w));
123   GTK_WIDGET_SET_FLAGS(cancel_bt, GTK_CAN_DEFAULT);
124   gtk_box_pack_start (GTK_BOX (bbox), cancel_bt, TRUE, TRUE, 0);
125   gtk_widget_show(cancel_bt);
126
127   gtk_widget_show(prefs_w);
128 }
129
130 void
131 prefs_main_ok_cb(GtkWidget *w, gpointer win) {
132   
133   printer_prefs_ok(gtk_object_get_data(GTK_OBJECT(win), E_PRINT_PAGE_KEY));
134   filter_prefs_ok(gtk_object_get_data(GTK_OBJECT(win), E_FILTER_PAGE_KEY));
135   gtk_widget_destroy(GTK_WIDGET(win));
136 }
137
138 void
139 prefs_main_save_cb(GtkWidget *w, gpointer win) {
140   filter_prefs_save(gtk_object_get_data(GTK_OBJECT(win), E_FILTER_PAGE_KEY));
141 }
142
143 void
144 prefs_main_cancel_cb(GtkWidget *w, gpointer win) {
145
146   printer_prefs_cancel(gtk_object_get_data(GTK_OBJECT(win), E_PRINT_PAGE_KEY));
147   filter_prefs_cancel(gtk_object_get_data(GTK_OBJECT(win), E_FILTER_PAGE_KEY));
148   gtk_widget_destroy(GTK_WIDGET(win));
149 }
150