- Added match_strval function to packet.c
[obnox/wireshark/wip.git] / menu.c
1 /* menu.c
2  * Menu routines
3  *
4  * $Id: menu.c,v 1.7 1998/10/12 01:40:51 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 #include <glib.h>
31
32 #include <gtk/gtk.h>
33 #include <pcap.h>
34
35 #include <strings.h>
36
37 #include "menu.h"
38 #include "ethereal.h"
39 #include "capture.h"
40 #include "packet.h"
41 #include "print.h"
42 #include "follow.h"
43 #include "prefs.h"
44
45 /* Much of this was take from the GTK+ tuturial at http://www.gtk.org */
46
47 static void menus_remove_accel (GtkWidget *, gchar *, gchar *);
48 static gint menus_install_accel (GtkWidget *, gchar *, gchar, gchar, gchar *);
49
50 /* this is the GtkMenuEntry structure used to create new menus.  The
51  * first member is the menu definition string.  The second, the
52  * default accelerator key used to access this menu function with
53  * the keyboard.  The third is the callback function to call when
54  * this menu item is selected (by the accelerator key, or with the
55  * mouse.) The last member is the data to pass to your callback function.
56  */
57
58 static GtkMenuEntry menu_items[] =
59 {
60   {"<Main>/File/Open", "<control>O", file_open_cmd_cb, NULL},
61   {"<Main>/File/Close", "<control>W", file_close_cmd_cb, NULL},
62   {"<Main>/File/Save", "<control>S", NULL, NULL},
63   {"<Main>/File/Save as", NULL, NULL, NULL},
64   {"<Main>/File/Reload", "<control>R", file_reload_cmd_cb, NULL},
65   {"<Main>/File/<separator>", NULL, NULL, NULL},
66   {"<Main>/File/Print Packet", "<control>P", file_print_cmd_cb, NULL},
67   {"<Main>/File/<separator>", NULL, NULL, NULL},
68   {"<Main>/File/Quit", "<control>Q", file_quit_cmd_cb, NULL},
69   {"<Main>/Edit/Cut", "<control>X", NULL, NULL},
70   {"<Main>/Edit/Copy", "<control>C", NULL, NULL},
71   {"<Main>/Edit/Paste", "<control>V", NULL, NULL},
72   {"<Main>/Edit/<separator>", NULL, NULL, NULL},
73   {"<Main>/Edit/Find", "<control>F", NULL, NULL},
74   {"<Main>/Edit/<separator>", NULL, NULL, NULL},
75   {"<Main>/Edit/Preferences", NULL, prefs_cb, (gpointer) E_PR_PG_NONE},
76   {"<Main>/Tools/Capture", "<control>K", capture_prep_cb, NULL},
77   {"<Main>/Tools/Follow TCP Stream", NULL, follow_stream_cb, NULL},
78   {"<Main>/Tools/Graph", NULL, NULL, NULL},
79   {"<Main>/Help/About Ethereal", NULL, NULL, NULL}
80 };
81
82 /* calculate the number of menu_items */
83 static int nmenu_items = sizeof(menu_items) / sizeof(menu_items[0]);
84
85 static int initialize = TRUE;
86 static GtkMenuFactory *factory = NULL;
87 static GtkMenuFactory *subfactory[1];
88 static GHashTable *entry_ht = NULL;
89
90 void
91 get_main_menu(GtkWidget ** menubar, GtkAcceleratorTable ** table) {
92   if (initialize)
93     menus_init();
94
95   if (menubar)
96     *menubar = subfactory[0]->widget;
97   if (table)
98     *table = subfactory[0]->table;
99 }
100
101 void
102 menus_init(void) {
103   GtkMenuPath *mp;
104
105   if (initialize) {
106     initialize = FALSE;
107
108     factory = gtk_menu_factory_new(GTK_MENU_FACTORY_MENU_BAR);
109     subfactory[0] = gtk_menu_factory_new(GTK_MENU_FACTORY_MENU_BAR);
110
111     gtk_menu_factory_add_subfactory(factory, subfactory[0], "<Main>");
112     menus_create(menu_items, nmenu_items);
113
114     set_menu_sensitivity("<Main>/File/Close", FALSE);
115     set_menu_sensitivity("<Main>/File/Save", FALSE);
116     set_menu_sensitivity("<Main>/File/Save as", FALSE);
117     set_menu_sensitivity("<Main>/File/Reload", FALSE);
118     set_menu_sensitivity("<Main>/Edit/Cut", FALSE);
119     set_menu_sensitivity("<Main>/Edit/Copy", FALSE);
120     set_menu_sensitivity("<Main>/Edit/Paste", FALSE);
121     set_menu_sensitivity("<Main>/Edit/Find", FALSE);
122     set_menu_sensitivity("<Main>/Tools/Graph", FALSE);
123     set_menu_sensitivity("<Main>/Help/About Ethereal", FALSE);
124     if ((mp = gtk_menu_factory_find(factory, "<Main>/Help")) != NULL) {
125       gtk_menu_item_right_justify((GtkMenuItem *) mp->widget);
126     }
127   }
128 }
129
130 void
131 set_menu_sensitivity (gchar *path, gint val) {
132   GtkMenuPath *mp;
133   
134   if ((mp = gtk_menu_factory_find(factory, path)) != NULL)
135     gtk_widget_set_sensitive(mp->widget, val);
136 }
137
138 void
139 set_menu_object_data (gchar *path, gchar *key, gpointer data) {
140   GtkMenuPath *mp;
141   
142   if ((mp = gtk_menu_factory_find(factory, path)) != NULL)
143     gtk_object_set_data(GTK_OBJECT(mp->widget), key, data);
144 }
145
146 void
147 menus_create(GtkMenuEntry * entries, int nmenu_entries) {
148   char *accelerator;
149   int i;
150
151   if (initialize)
152     menus_init();
153
154   if (entry_ht)
155     for (i = 0; i < nmenu_entries; i++) {
156       accelerator = g_hash_table_lookup(entry_ht, entries[i].path);
157       if (accelerator) {
158         if (accelerator[0] == '\0')
159           entries[i].accelerator = NULL;
160         else
161           entries[i].accelerator = accelerator;
162       }
163     }
164   gtk_menu_factory_add_entries(factory, entries, nmenu_entries);
165
166   for (i = 0; i < nmenu_entries; i++)
167     if (entries[i].widget) {
168       gtk_signal_connect(GTK_OBJECT(entries[i].widget), "install_accelerator",
169          (GtkSignalFunc) menus_install_accel, entries[i].path);
170       gtk_signal_connect(GTK_OBJECT(entries[i].widget), "remove_accelerator",
171         (GtkSignalFunc) menus_remove_accel, entries[i].path);
172   }
173 }
174
175 static gint
176 menus_install_accel(GtkWidget * widget, gchar * signal_name, gchar key, gchar modifiers, gchar * path) {
177   char accel[64];
178   char *t1, t2[2];
179
180   accel[0] = '\0';
181   if (modifiers & GDK_CONTROL_MASK)
182     strcat(accel, "<control>");
183   if (modifiers & GDK_SHIFT_MASK)
184     strcat(accel, "<shift>");
185   if (modifiers & GDK_MOD1_MASK)
186     strcat(accel, "<alt>");
187
188   t2[0] = key;
189   t2[1] = '\0';
190   strcat(accel, t2);
191
192   if (entry_ht) {
193     t1 = g_hash_table_lookup(entry_ht, path);
194     g_free(t1);
195   } else
196     entry_ht = g_hash_table_new(g_str_hash, g_str_equal);
197
198   g_hash_table_insert(entry_ht, path, g_strdup(accel));
199
200   return TRUE;
201 }
202
203 static void
204 menus_remove_accel(GtkWidget * widget, gchar * signal_name, gchar * path) {
205   char *t;
206
207   if (entry_ht) {
208     t = g_hash_table_lookup(entry_ht, path);
209     g_free(t);
210
211     g_hash_table_insert(entry_ht, path, g_strdup(""));
212   }
213 }
214
215 void
216 menus_set_sensitive(char *path, int sensitive) {
217   GtkMenuPath *menu_path;
218
219   if (initialize)
220     menus_init();
221
222   menu_path = gtk_menu_factory_find(factory, path);
223   if (menu_path)
224     gtk_widget_set_sensitive(menu_path->widget, sensitive);
225   else
226     g_warning("Unable to set sensitivity for menu which doesn't exist: %s", path);
227 }