Don't hand off the stub body of a Fault PDU to the subdissector for the
[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.8 2002/06/16 00:58:37 guy 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         void (*apply_cb)(void); /* routine to call when preferences applied */
33         GList   *prefs;         /* list of its preferences */
34         int     numprefs;       /* number of non-obsolete preferences */
35         gboolean prefs_changed; /* if TRUE, a preference has changed since we last checked */
36         gboolean obsolete;      /* if TRUE, this is a module that used to
37                                    exist but no longer does */
38 };
39
40 /*
41  * PREF_OBSOLETE is used for preferences that a module used to support
42  * but no longer supports; we give different error messages for them.
43  */
44 typedef enum {
45         PREF_UINT,
46         PREF_BOOL,
47         PREF_ENUM,
48         PREF_STRING,
49         PREF_OBSOLETE
50 } pref_type_t;
51
52 struct preference {
53         const char *name;       /* name of preference */
54         const char *title;      /* title to use in GUI */
55         const char *description; /* human-readable description of preference */
56         int     ordinal;        /* ordinal number of this preference */
57         pref_type_t type;       /* type of that preference */
58         union {
59                 guint *uint;
60                 gboolean *boolp;
61                 gint *enump;
62                 char **string;
63         } varp;                 /* pointer to variable storing the value */
64         union {
65                 guint uint;
66                 gboolean boolval;
67                 gint enumval;
68                 char *string;
69         } saved_val;            /* original value, when editing from the GUI */
70         union {
71           guint base;                   /* input/output base, for PREF_UINT */
72           struct {
73             const enum_val_t *enumvals; /* list of name & values */
74             gboolean radio_buttons;     /* TRUE if it should be shown as
75                                            radio buttons rather than as an
76                                            option menu or combo box in
77                                            the preferences tab */
78           } enum_info;                  /* for PREF_ENUM */
79         } info;                 /* display/text file information */
80         void    *control;       /* handle for GUI control for this preference */
81 };
82
83 gint find_val_for_string(const char *needle, const enum_val_t *haystack,
84     gint default_value);
85
86 #endif /* prefs-int.h */