Call subdissectors even if we're not building a protocol tree.
[obnox/wireshark/wip.git] / prefs-int.h
1 /* prefs-int.h
2  * Definitions for implementation of preference handling routines;
3  * used by "friends" of the preferences type.
4  *
5  * $Id: prefs-int.h,v 1.11 2003/12/13 17:24:47 ulfl Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
9  * Copyright 1998 Gerald Combs
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 #ifndef __PREFS_INT_H__
27 #define __PREFS_INT_H__
28
29 struct pref_module {
30         const char *name;       /* name of module */
31         const char *title;      /* title of module (displayed in preferences notebook) */
32         gboolean is_subtree;    /* if TRUE, this has other modules, not preferences, under it */
33         void (*apply_cb)(void); /* routine to call when preferences applied */
34         GList   *prefs;         /* list of its preferences or submodules */
35         int     numprefs;       /* number of non-obsolete preferences */
36         gboolean prefs_changed; /* if TRUE, a preference has changed since we last checked */
37         gboolean obsolete;      /* if TRUE, this is a module that used to
38                                    exist but no longer does */
39 };
40
41 /*
42  * Module used for protocol preferences.
43  */
44 extern module_t *protocols_module;
45
46 /*
47  * PREF_OBSOLETE is used for preferences that a module used to support
48  * but no longer supports; we give different error messages for them.
49  */
50 typedef enum {
51         PREF_UINT,
52         PREF_BOOL,
53         PREF_ENUM,
54         PREF_STRING,
55         PREF_OBSOLETE
56 } pref_type_t;
57
58 struct preference {
59         const char *name;       /* name of preference */
60         const char *title;      /* title to use in GUI */
61         const char *description; /* human-readable description of preference */
62         int     ordinal;        /* ordinal number of this preference */
63         pref_type_t type;       /* type of that preference */
64         union {
65                 guint *uint;
66                 gboolean *boolp;
67                 gint *enump;
68                 char **string;
69         } varp;                 /* pointer to variable storing the value */
70         union {
71                 guint uint;
72                 gboolean boolval;
73                 gint enumval;
74                 char *string;
75         } saved_val;            /* original value, when editing from the GUI */
76         union {
77           guint base;                   /* input/output base, for PREF_UINT */
78           struct {
79             const enum_val_t *enumvals; /* list of name & values */
80             gboolean radio_buttons;     /* TRUE if it should be shown as
81                                            radio buttons rather than as an
82                                            option menu or combo box in
83                                            the preferences tab */
84           } enum_info;                  /* for PREF_ENUM */
85         } info;                 /* display/text file information */
86         void    *control;       /* handle for GUI control for this preference */
87 };
88
89 gint find_val_for_string(const char *needle, const enum_val_t *haystack,
90     gint default_value);
91
92
93 /* read_prefs_file: read in a generic config file and do a callback to */
94 /* pref_set_pair_fct() for every key/value pair found */
95 typedef int (*pref_set_pair_cb) (gchar *key, gchar *value);
96
97 int
98 read_prefs_file(const char *pf_path, FILE *pf, pref_set_pair_cb pref_set_pair_fct);
99
100
101
102 #endif /* prefs-int.h */