name change
[obnox/wireshark/wip.git] / epan / funnel.c
1 /*
2  *  funnel.c
3  *
4  * EPAN's GUI mini-API
5  *
6  * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
7  *
8  * $Id$
9  *
10  * Wireshark - Network traffic analyzer
11  * By Gerald Combs <gerald@wireshark.org>
12  * Copyright 1998 Gerald Combs
13  *
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. 
27  */
28
29 #include <epan/funnel.h>
30
31 typedef struct _funnel_menu_t {
32     const char *name;
33     REGISTER_STAT_GROUP_E group;
34     void (*callback)(gpointer);
35     gpointer callback_data;
36     gboolean retap;
37     struct _funnel_menu_t* next;
38 } funnel_menu_t;
39
40 static const funnel_ops_t* ops = NULL;
41 static funnel_menu_t* menus = NULL;
42
43 const funnel_ops_t* funnel_get_funnel_ops() { return ops;  }
44 void funnel_set_funnel_ops(const funnel_ops_t* o) { ops = o; }
45
46 void funnel_register_menu(const char *name,
47                           REGISTER_STAT_GROUP_E group,
48                           void (*callback)(gpointer),
49                           gpointer callback_data,
50                           gboolean retap) {
51     funnel_menu_t* m = g_malloc(sizeof(funnel_menu_t));
52     m->name = g_strdup(name);
53     m->group = group;
54     m->callback = callback;
55     m->callback_data = callback_data;
56     m->retap = retap;
57     m->next = NULL;
58     
59     if (!menus)  {
60         menus = m;
61     } else {
62         funnel_menu_t* c;
63         for (c = menus; c->next; c = c->next);
64         c->next = m;
65     }
66 }
67
68 void funnel_register_all_menus(funnel_registration_cb_t r_cb) {
69     funnel_menu_t* c;
70     for (c = menus; c; c = c->next) {
71         r_cb(c->name,c->group,c->callback,c->callback_data,c->retap);
72     }
73 }
74
75
76