Set the svn:eol-style property on all text files to "native", so that
[obnox/wireshark/wip.git] / gtk / color_dlg.h
1 /* color_dlg.h
2  * Definitions for dialog boxes for color filters
3  *
4  * $Id$
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@zing.org>
8  * Copyright 1998 Gerald Combs
9  *
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 __COLOR_DLG_H__
27 #define __COLOR_DLG_H__
28
29 /** @file
30  *  "Colorize Display" dialog box.
31  *  @ingroup dialog_group
32  */
33
34 /** User requested the "Colorize Display" dialog box by menu or toolbar.
35  *
36  * @param widget parent widget (unused)
37  * @param data unused
38  */
39 void color_display_cb(GtkWidget *widget, gpointer data);
40
41 /** Open the colorize dialogue and presets the filter string.
42  *
43  * @param filter the preset filter string
44  */
45 void color_display_with_filter(char *filter);
46
47 /** Count the number of color filters.
48  *
49  * @return the number of color filters
50  */
51 int color_marked_count(void);
52
53 /** Add a color filter.
54  *
55  * @param colorf the new color filter
56  * @param arg the color filter widget
57  */
58 void color_add_filter_cb (color_filter_t *colorf, gpointer arg);
59
60 #endif /* color_dlg.h */