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