cb651402191565d1529894da2ed87e5dd1ecdbe4
[obnox/wireshark/wip.git] / prefs.c
1 /* prefs.c
2  * Routines for handling preferences
3  *
4  * $Id: prefs.c,v 1.4 1998/10/10 03:32:18 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 const gchar *print_page_key  = "printer_options_page";
46 const gchar *filter_page_key = "filter_options_page";
47
48 void
49 prefs_cb() {
50   GtkWidget *prefs_w, *main_vb, *top_hb, *bbox, *prefs_nb,
51             *ok_bt, *save_bt, *cancel_bt;
52   GtkWidget *print_pg, *filter_pg;
53   GtkWidget *nlabel, *label;
54
55   prefs_w = gtk_window_new(GTK_WINDOW_TOPLEVEL);
56   gtk_window_set_title(GTK_WINDOW(prefs_w), "Ethereal: Preferences");
57   
58   /* Container for each row of widgets */
59   main_vb = gtk_vbox_new(FALSE, 3);
60 /*  gtk_container_border_width(GTK_CONTAINER(main_vb), 5); */
61   gtk_container_add(GTK_CONTAINER(prefs_w), main_vb);
62   gtk_widget_show(main_vb);
63   
64   /* Top row: Preferences notebook */
65   top_hb = gtk_hbox_new(FALSE, 1);
66   gtk_container_add(GTK_CONTAINER(main_vb), top_hb);
67   gtk_widget_show(top_hb);
68   
69   prefs_nb = gtk_notebook_new();
70   gtk_container_add(GTK_CONTAINER(main_vb), prefs_nb);
71   gtk_widget_show(prefs_nb);
72   
73   /* General prefs */
74   nlabel = gtk_label_new("Nothing here yet...");
75   gtk_widget_show (nlabel);
76
77   label = gtk_label_new ("General");
78   gtk_notebook_append_page (GTK_NOTEBOOK(prefs_nb), nlabel, label);
79   
80   /* Printing prefs */
81   print_pg = printer_prefs_show();
82   gtk_object_set_data(GTK_OBJECT(prefs_w), print_page_key, print_pg);
83   label = gtk_label_new ("Printing");
84   gtk_notebook_append_page (GTK_NOTEBOOK(prefs_nb), print_pg, label);
85     
86   /* Filter prefs */
87   filter_pg = filter_prefs_show();
88   gtk_object_set_data(GTK_OBJECT(prefs_w), filter_page_key, filter_pg);
89   label = gtk_label_new ("Filters");
90   gtk_notebook_append_page (GTK_NOTEBOOK(prefs_nb), filter_pg, label);
91     
92   /* Button row: OK and cancel buttons */
93   bbox = gtk_hbutton_box_new();
94   gtk_button_box_set_layout (GTK_BUTTON_BOX (bbox), GTK_BUTTONBOX_END);
95   gtk_container_add(GTK_CONTAINER(main_vb), bbox);
96   gtk_widget_show(bbox);
97   
98   ok_bt = gtk_button_new_with_label ("OK");
99   gtk_signal_connect_object(GTK_OBJECT(ok_bt), "clicked",
100     GTK_SIGNAL_FUNC(prefs_main_ok_cb), GTK_OBJECT(prefs_w));
101   gtk_container_add(GTK_CONTAINER(bbox), ok_bt);
102   GTK_WIDGET_SET_FLAGS(ok_bt, GTK_CAN_DEFAULT);
103   gtk_widget_grab_default(ok_bt);
104   gtk_widget_show(ok_bt);
105
106   save_bt = gtk_button_new_with_label ("Save");
107   gtk_signal_connect_object(GTK_OBJECT(save_bt), "clicked",
108     GTK_SIGNAL_FUNC(prefs_main_save_cb), GTK_OBJECT(prefs_w));
109   gtk_container_add(GTK_CONTAINER(bbox), save_bt);
110   gtk_widget_show(save_bt);
111   
112   cancel_bt = gtk_button_new_with_label ("Cancel");
113   gtk_signal_connect_object(GTK_OBJECT(cancel_bt), "clicked",
114     GTK_SIGNAL_FUNC(prefs_main_cancel_cb), GTK_OBJECT(prefs_w));
115   gtk_container_add(GTK_CONTAINER(bbox), cancel_bt);
116   gtk_widget_show(cancel_bt);
117   
118   gtk_widget_show(prefs_w);
119 }
120
121 void
122 prefs_main_ok_cb(GtkWidget *w, gpointer win) {
123   
124   printer_prefs_ok(gtk_object_get_data(GTK_OBJECT(win), print_page_key));
125   filter_prefs_ok(gtk_object_get_data(GTK_OBJECT(win), filter_page_key));
126   gtk_widget_destroy(GTK_WIDGET(win));
127 }
128
129 void
130 prefs_main_save_cb(GtkWidget *w, gpointer win) {
131   filter_prefs_save(gtk_object_get_data(GTK_OBJECT(win), filter_page_key));
132 }
133
134 void
135 prefs_main_cancel_cb(GtkWidget *w, gpointer win) {
136
137   printer_prefs_cancel(gtk_object_get_data(GTK_OBJECT(win), print_page_key));
138   filter_prefs_cancel(gtk_object_get_data(GTK_OBJECT(win), filter_page_key));
139   gtk_widget_destroy(GTK_WIDGET(win));
140 }
141