aboutsummaryrefslogtreecommitdiffstats
path: root/color.h
AgeCommit message (Collapse)AuthorFilesLines
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2004-10-27fix doxygen tagsUlf Lamping1-1/+0
svn path=/trunk/; revision=12401
2004-07-24Move the color-filter related stuff out of "color.h" intoGuy Harris1-28/+0
"color_filters.h", as that's the appropriate place for it - "color.h" should just deal with "color_t". svn path=/trunk/; revision=11503
2004-07-24Rename "create_color()" to "initialize_color()", as that reflects a bitGuy Harris1-3/+3
better what it actually does. svn path=/trunk/; revision=11502
2004-07-24Move the declaration of "color_add_filter_cb()" to "color.h", as,Guy Harris1-2/+8
although it currently takes a pointer to a GtkWidget as its second argument, that argument is actually a "void *", so it's sort-of toolkit-independent. That lets us get rid of all GTK+ references in "gtk/color_filters.c", so we can move it up to the top-level directory; get rid of the <gtk/gtk.h> include, in favor of a <glib.h> include. svn path=/trunk/; revision=11499
2004-07-24Move the declaration of "create_color()" up to "color.h", so it'sGuy Harris1-0/+12
declared in a toolkit-independent header file. Get rid of "gtk/color_utils.h", as there's nothing left in it. svn path=/trunk/; revision=11498
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-01-09Part 2 of the "unmarking a packet matching a color filter does not applyOlivier Biot1-1/+2
the color filter's colors" bug: keep a list of removed color filters, so there's no problem if we delete a color filter for which there are one or more packets that have its colors. Only get rid of the lists when they ar no longer needed. svn path=/trunk/; revision=9613
2003-08-18From Richard Urwin a great enhancement to the color filter dialogue toRonnie Sahlberg1-1/+2
make it possible to import/export color filters svn path=/trunk/; revision=8188
2002-09-23Change to color filters :Olivier Abad1-1/+20
- moved color_filter_t in color.h - change color_filter_t to use color_t instead of GdkColor This changed allowed to remove the last gtk includes in file.c. It is now completely free of any gtk related code. svn path=/trunk/; revision=6324
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-4/+4
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
2000-11-21Add a "color.h" file that declares a nominally-toolkit-independentGuy Harris1-0/+45
"color_t" structure to store color values (although currently it has all the same fields that a GdkColor has; its currently advantage is that you don't have to include any GTK/GDK stuff to declare it). Add routines in the "gtk" directory to convert between "color_t" and GdkColor values. Define, in "prefs.h", all colors as "color_t" values rather than GdkColor values. "prefs.h" now no longer needs to include <gtk/gtk.h>, so don't include it. svn path=/trunk/; revision=2692