I added the Server Down SAP packet after discovering its description
[obnox/wireshark/wip.git] / prefs.c
1 /* prefs.c
2  * Routines for handling preferences
3  *
4  * $Id: prefs.c,v 1.2 1998/09/26 19:28:49 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 "packet.h"
37 #include "file.h"
38 #include "print.h"
39 #include "prefs.h"
40
41 extern capture_file  cf;
42
43 const gchar *print_page_key = "printer_options_page";
44
45 void
46 prefs_cb() {
47   GtkWidget *prefs_w, *main_vb, *top_hb, *bbox, *prefs_nb,
48             *ok_bt, *cancel_bt;
49   GtkWidget *pr_opt_pg;
50   GtkWidget *nlabel, *label;
51
52   prefs_w = gtk_window_new(GTK_WINDOW_TOPLEVEL);
53   gtk_window_set_title(GTK_WINDOW(prefs_w), "Ethereal: Preferences");
54   
55   /* Container for each row of widgets */
56   main_vb = gtk_vbox_new(FALSE, 3);
57 /*  gtk_container_border_width(GTK_CONTAINER(main_vb), 5); */
58   gtk_container_add(GTK_CONTAINER(prefs_w), main_vb);
59   gtk_widget_show(main_vb);
60   
61   /* Top row: Preferences notebook */
62   top_hb = gtk_hbox_new(FALSE, 1);
63   gtk_container_add(GTK_CONTAINER(main_vb), top_hb);
64   gtk_widget_show(top_hb);
65   
66   prefs_nb = gtk_notebook_new();
67   gtk_container_add(GTK_CONTAINER(main_vb), prefs_nb);
68   gtk_widget_show(prefs_nb);
69   
70   /* General prefs */
71   nlabel = gtk_label_new("Nothing here yet");
72   gtk_widget_show (nlabel);
73
74   label = gtk_label_new ("General");
75   gtk_notebook_append_page (GTK_NOTEBOOK(prefs_nb), nlabel, label);
76   
77   /* Printing prefs */
78   pr_opt_pg = printer_opts_pg();
79   gtk_object_set_data(GTK_OBJECT(prefs_w), print_page_key, pr_opt_pg);
80   label = gtk_label_new ("Printing");
81   gtk_notebook_append_page (GTK_NOTEBOOK(prefs_nb), pr_opt_pg, label);
82     
83   /* Button row: OK and cancel buttons */
84   bbox = gtk_hbutton_box_new();
85   gtk_button_box_set_layout (GTK_BUTTON_BOX (bbox), GTK_BUTTONBOX_END);
86   gtk_container_add(GTK_CONTAINER(main_vb), bbox);
87   gtk_widget_show(bbox);
88   
89   ok_bt = gtk_button_new_with_label ("OK");
90   gtk_signal_connect_object(GTK_OBJECT(ok_bt), "clicked",
91     GTK_SIGNAL_FUNC(prefs_main_ok_cb), GTK_OBJECT(prefs_w));
92   gtk_container_add(GTK_CONTAINER(bbox), ok_bt);
93   GTK_WIDGET_SET_FLAGS(ok_bt, GTK_CAN_DEFAULT);
94   gtk_widget_grab_default(ok_bt);
95   gtk_widget_show(ok_bt);
96
97   cancel_bt = gtk_button_new_with_label ("Cancel");
98   gtk_signal_connect_object(GTK_OBJECT(cancel_bt), "clicked",
99     GTK_SIGNAL_FUNC(prefs_main_cancel_cb), GTK_OBJECT(prefs_w));
100   gtk_container_add(GTK_CONTAINER(bbox), cancel_bt);
101   gtk_widget_show(cancel_bt);
102   
103   gtk_widget_show(prefs_w);
104 }
105
106 void
107 prefs_main_ok_cb(GtkWidget *w, gpointer win) {
108   
109   printer_opts_ok(gtk_object_get_data(GTK_OBJECT(win), print_page_key));
110   gtk_widget_destroy(GTK_WIDGET(win));
111 }
112
113 void
114 prefs_main_cancel_cb(GtkWidget *w, gpointer win) {
115
116   printer_opts_close(gtk_object_get_data(GTK_OBJECT(win), print_page_key));
117   gtk_widget_destroy(GTK_WIDGET(win));
118 }
119