aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/color_dlg.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-02-12 08:31:49 +0000
committerGuy Harris <guy@alum.mit.edu>2000-02-12 08:31:49 +0000
commit55c8a368b8f6256c4256a6fae23531ebfdaa2817 (patch)
tree0347246c7501ea99c9feb4e8cd1ebfd23c4d1134 /gtk/color_dlg.h
parentc80a7fd1d5b91dac9c7522a4afc11a8cccbf3ca6 (diff)
Split the color manipulation stuff into "color_dlg.[ch]", containing the
dialog boxes for editing color filtes, and "colors.[ch]", containing the toolkit-dependent code to manipulate colors. svn path=/trunk/; revision=1622
Diffstat (limited to 'gtk/color_dlg.h')
-rw-r--r--gtk/color_dlg.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/gtk/color_dlg.h b/gtk/color_dlg.h
new file mode 100644
index 0000000000..78d57997b7
--- /dev/null
+++ b/gtk/color_dlg.h
@@ -0,0 +1,31 @@
+/* color_dlg.h
+ * Definitions for dialog boxes for color filters
+ *
+ * $Id: color_dlg.h,v 1.1 2000/02/12 08:31:47 guy Exp $
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@zing.org>
+ * Copyright 1998 Gerald Combs
+ *
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __COLOR_DLG_H__
+#define __COLOR_DLG_H__
+
+void color_display_cb(GtkWidget *w, gpointer d);
+
+#endif /* color_dlg.h */