some compilers dont like unnamed unions and structs
[obnox/wireshark/wip.git] / epan / 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$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
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 list) */
32         const char *description;/* Description of module (displayed in preferences notebook) */
33         gboolean is_subtree;    /* if TRUE, this has other modules, not preferences, under it */
34         void (*apply_cb)(void); /* routine to call when preferences applied */
35         GList   *prefs;         /* list of its preferences or submodules */
36         int     numprefs;       /* number of non-obsolete preferences */
37         gboolean prefs_changed; /* if TRUE, a preference has changed since we last checked */
38         gboolean obsolete;      /* if TRUE, this is a module that used to
39                                    exist but no longer does */
40 };
41
42 /*
43  * Module used for protocol preferences. With MSVC and a 
44  * libwireshark.dll, we need a special declaration.
45  */
46 WS_VAR_IMPORT module_t *protocols_module;
47
48 /*
49  * PREF_OBSOLETE is used for preferences that a module used to support
50  * but no longer supports; we give different error messages for them.
51  */
52 typedef enum {
53         PREF_UINT,
54         PREF_BOOL,
55         PREF_ENUM,
56         PREF_STRING,
57         PREF_RANGE,
58         PREF_OBSOLETE
59 } pref_type_t;
60
61 struct preference {
62         const char *name;       /* name of preference */
63         const char *title;      /* title to use in GUI */
64         const char *description; /* human-readable description of preference */
65         int     ordinal;        /* ordinal number of this preference */
66         pref_type_t type;       /* type of that preference */
67         union {
68                 guint *uint;
69                 gboolean *boolp;
70                 gint *enump;
71                 const char **string;
72                 range_t **range;
73         } varp;                 /* pointer to variable storing the value */
74         union {
75                 guint uint;
76                 gboolean boolval;
77                 gint enumval;
78                 char *string;
79                 range_t *range;
80         } saved_val;            /* original value, when editing from the GUI */
81         union {
82           guint base;                   /* input/output base, for PREF_UINT */
83           guint32 max_value;            /* maximum value of a range */
84           struct {
85             const enum_val_t *enumvals; /* list of name & values */
86             gboolean radio_buttons;     /* TRUE if it should be shown as
87                                            radio buttons rather than as an
88                                            option menu or combo box in
89                                            the preferences tab */
90           } enum_info;                  /* for PREF_ENUM */
91         } info;                 /* display/text file information */
92         void    *control;       /* handle for GUI control for this preference */
93 };
94
95 gint find_val_for_string(const char *needle, const enum_val_t *haystack,
96     gint default_value);
97
98
99 /* read_prefs_file: read in a generic config file and do a callback to */
100 /* pref_set_pair_fct() for every key/value pair found */
101 typedef int (*pref_set_pair_cb) (gchar *key, gchar *value);
102
103 int
104 read_prefs_file(const char *pf_path, FILE *pf, pref_set_pair_cb pref_set_pair_fct);
105
106
107
108 #endif /* prefs-int.h */