aboutsummaryrefslogtreecommitdiffstats
path: root/color.h
AgeCommit message (Collapse)AuthorFilesLines
2006-05-21name changesahlberg1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18197 f5534014-38df-0310-8fa8-9805f1628bb7
2004-10-27fix doxygen tagsulfl1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12401 f5534014-38df-0310-8fa8-9805f1628bb7
2004-07-24Move the color-filter related stuff out of "color.h" intoguy1-28/+0
"color_filters.h", as that's the appropriate place for it - "color.h" should just deal with "color_t". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11503 f5534014-38df-0310-8fa8-9805f1628bb7
2004-07-24Rename "create_color()" to "initialize_color()", as that reflects a bitguy1-3/+3
better what it actually does. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11502 f5534014-38df-0310-8fa8-9805f1628bb7
2004-07-24Move the declaration of "color_add_filter_cb()" to "color.h", as,guy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11499 f5534014-38df-0310-8fa8-9805f1628bb7
2004-07-24Move the declaration of "create_color()" up to "color.h", so it'sguy1-0/+12
declared in a toolkit-independent header file. Get rid of "gtk/color_utils.h", as there's nothing left in it. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11498 f5534014-38df-0310-8fa8-9805f1628bb7
2004-07-18Set the svn:eol-style property on all text files to "native", so thatguy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11400 f5534014-38df-0310-8fa8-9805f1628bb7
2004-01-09Part 2 of the "unmarking a packet matching a color filter does not applyobiot1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9613 f5534014-38df-0310-8fa8-9805f1628bb7
2003-08-18From Richard Urwin a great enhancement to the color filter dialogue tosahlberg1-1/+2
make it possible to import/export color filters git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8188 f5534014-38df-0310-8fa8-9805f1628bb7
2002-09-23Change to color filters :oabad1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6324 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-28Removed trailing whitespaces from .h and .c files using thejmayer1-4/+4
winapi_cleanup tool written by Patrik Stridvall for the wine project. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6117 f5534014-38df-0310-8fa8-9805f1628bb7
2000-11-21Add a "color.h" file that declares a nominally-toolkit-independentguy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2692 f5534014-38df-0310-8fa8-9805f1628bb7