HACK: pinfo->private_data points to smb_info again
[wireshark-wip.git] / color_filters.h
blob6e21a181a6a1f1b70a374e8c1b9a60843283c056
1 /* color_filters.h
2 * Definitions for color filters
4 * $Id$
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #ifndef __COLOR_FILTERS_H__
25 #define __COLOR_FILTERS_H__
27 #ifdef __cplusplus
28 extern "C" {
29 #endif /* __cplusplus */
31 #define CONVERSATION_COLOR_PREFIX "___conversation_color_filter___"
32 /** @file
33 * Color filters.
36 /* Data for a color filter. */
37 typedef struct _color_filter {
38 gchar *filter_name; /* name of the filter */
39 gchar *filter_text; /* text of the filter expression */
40 color_t bg_color; /* background color for packets that match */
41 color_t fg_color; /* foreground color for packets that match */
42 gboolean disabled; /* set if the filter is disabled */
43 gboolean selected; /* set if the filter is selected in the color dialog box */
45 /* only used inside of color_filters.c */
46 dfilter_t *c_colorfilter; /* compiled filter expression */
48 /* only used outside of color_filters.c (beside init) */
49 void *color_edit_dlg_info; /* if filter is being edited, ptr to req'd info */
50 } color_filter_t;
53 /** Init the color filters (incl. initial read from file). */
54 void color_filters_init(void);
56 /** Reload the color filters */
57 void color_filters_reload(void);
59 /** Cleanup remaining color filter zombies */
60 void color_filters_cleanup(void);
62 /** Color filters currently used?
64 * @return TRUE, if filters are used
66 gboolean color_filters_used(void);
68 /** Are there any temporary coloring filters used?
70 * @return TRUE, if temporary coloring filters are used
72 gboolean tmp_color_filters_used(void);
74 /** En-/disable color filters
76 * @param enable TRUE to enable (default)
78 void
79 color_filters_enable(gboolean enable);
81 /** Set the filter string of a temporary color filter
83 * @param filt_nr a number 1-10 pointing to a temporary color
84 * @param filter the new filter-string
85 * @param disabled whether the filter-rule should be disabled
87 void
88 color_filters_set_tmp(guint8 filt_nr, gchar *filter, gboolean disabled);
90 /** Reset the temporary color filters
93 void
94 color_filters_reset_tmp(void);
96 /* Prime the epan_dissect_t with all the compiler
97 * color filters of the current filter list.
99 * @param the epan dissector details
101 void color_filters_prime_edt(epan_dissect_t *edt);
103 /** Colorize a specific packet.
105 * @param edt the dissected packet
106 * @return the matching color filter or NULL
108 const color_filter_t *
109 color_filters_colorize_packet(epan_dissect_t *edt);
111 /** Clone the currently active filter list.
113 * @param user_data will be returned by each call to to color_filter_add_cb()
115 void color_filters_clone(gpointer user_data);
117 /** Load filters (import) from some other filter file.
119 * @param path the path to the import file
120 * @param user_data will be returned by each call to to color_filter_add_cb()
121 * @return TRUE, if read succeeded
123 gboolean color_filters_import(gchar *path, gpointer user_data);
125 /** Read filters from the global filter file (not the users file).
127 * @param user_data will be returned by each call to to color_filter_add_cb()
128 * @return TRUE, if read succeeded
130 gboolean color_filters_read_globals(gpointer user_data);
132 /** A color filter was added (while importing).
133 * (color_filters.c calls this for every filter coming in)
135 * @param colorf the new color filter
136 * @param user_data from caller
138 void color_filter_add_cb (color_filter_t *colorf, gpointer user_data);
142 /** Apply a changed filter list.
144 * @param tmp_cfl the temporary color filter list to apply
145 * @param edit_cfl the edited permanent color filter list to apply
147 void color_filters_apply(GSList *tmp_cfl, GSList *edit_cfl);
149 /** Save filters in users filter file.
151 * @param cfl the filter list to write
152 * @return TRUE if write succeeded
154 gboolean color_filters_write(GSList *cfl);
156 /** Save filters (export) to some other filter file.
158 * @param path the path to the filter file
159 * @param cfl the filter list to write
160 * @param only_selected TRUE if only the selected filters should be saved
161 * @return TRUE, if write succeeded
163 gboolean color_filters_export(gchar *path, GSList *cfl, gboolean only_selected);
167 /** Create a new color filter (g_malloc'ed).
169 * @param name the name of the filter
170 * @param filter_string the filter string
171 * @param bg_color background color
172 * @param fg_color foreground color
173 * @param disabled gboolean
174 * @return the new color filter
176 color_filter_t *color_filter_new(
177 const gchar *name, const gchar *filter_string,
178 color_t *bg_color, color_t *fg_color, gboolean disabled);
180 /** Delete a single color filter (g_free'ed).
182 * @param colorf the color filter to be removed
184 void color_filter_delete(color_filter_t *colorf);
189 /** Delete a filter list including all entries.
191 * @param cfl the filter list to delete
193 void color_filter_list_delete(GSList **cfl);
195 #ifdef __cplusplus
197 #endif /* __cplusplus */
199 #endif
202 * Editor modelines - http://www.wireshark.org/tools/modelines.html
204 * Local variables:
205 * c-basic-offset: 4
206 * tab-width: 8
207 * indent-tabs-mode: nil
208 * End:
210 * vi: set shiftwidth=4 tabstop=8 expandtab:
211 * :indentSize=4:tabSize=8:noTabs=true: