merge_all_tap_menus() has been moved to menus.c.
[obnox/wireshark/wip.git] / gtk / plugins_dlg.c
1 /* plugins_dlg.c
2  * Dialog boxes for plugins
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 #include "config.h"
27 #endif
28
29 #include <gtk/gtk.h>
30
31 #include "epan/plugins.h"
32
33 #include "gtk/dlg_utils.h"
34 #include "gtk/gui_utils.h"
35 #include "gtk/plugins_dlg.h"
36
37
38 #if defined(HAVE_PLUGINS) || defined(HAVE_LUA_5_1)
39
40 /*
41  * Fill the list widget with a list of the plugin modules.
42  * XXX - We might want to combine this with plugins_dump_all().
43  */
44 static void
45 plugins_scan(GtkWidget *list)
46 {
47 #ifdef HAVE_PLUGINS
48     plugin     *pt_plug;
49     const char *sep;
50 #endif
51 #ifdef HAVE_LUA_5_1
52     wslua_plugin  *lua_plug;
53 #endif
54     GString    *type;
55
56 #ifdef HAVE_PLUGINS
57     for (pt_plug = plugin_list; pt_plug != NULL; pt_plug = pt_plug->next)
58     {
59         type = g_string_new("");
60         sep = "";
61         if (pt_plug->register_protoinfo)
62         {
63             type = g_string_append(type, "dissector");
64             sep = ", ";
65         }
66         if (pt_plug->register_tap_listener)
67         {
68             type = g_string_append(type, sep);
69             type = g_string_append(type, "tap");
70             sep = ", ";
71         }
72         if (pt_plug->register_wtap_module)
73         {
74             type = g_string_append(type, sep);
75             type = g_string_append(type, "file format");
76             sep = ", ";
77         }
78         if (pt_plug->register_codec_module)
79         {
80             type = g_string_append(type, sep);
81             type = g_string_append(type, "codec");
82         }
83         simple_list_append(list, 0, pt_plug->name, 1, pt_plug->version,
84                            2, type->str, 3, g_module_name(pt_plug->handle), -1);
85         g_string_free(type, TRUE);
86     }
87 #endif
88
89 #ifdef HAVE_LUA_5_1
90     for (lua_plug = wslua_plugin_list; lua_plug != NULL; lua_plug = lua_plug->next)
91     {
92         type = g_string_new("");
93         type = g_string_append(type, "lua script");
94
95         simple_list_append(list, 0, lua_plug->name, 1, lua_plug->version, 2, type->str, 3, lua_plug->filename, -1);
96         g_string_free(type, TRUE);
97     }
98 #endif
99 }
100
101
102 GtkWidget *
103 about_plugins_page_new(void)
104 {
105     GtkWidget *scrolledwindow;
106     GtkWidget *plugins_list;
107     const gchar     *titles[] = {"Name", "Version", "Type", "Path"};
108
109
110     scrolledwindow = scrolled_window_new(NULL, NULL);
111     gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolledwindow),
112                                    GTK_SHADOW_IN);
113
114     plugins_list = simple_list_new(4, titles);
115     plugins_scan(plugins_list);
116
117     gtk_container_add(GTK_CONTAINER(scrolledwindow), plugins_list);
118
119     return scrolledwindow;
120 }
121
122 #endif /* HAVE_PLUGINS || HAVE_LUA_5_1 */