aboutsummaryrefslogtreecommitdiffstats
path: root/stat_menu.h
AgeCommit message (Collapse)AuthorFilesLines
2007-08-16experimental feature: dissector filtersUlf Lamping1-1/+2
add the possibility, that a dissector writer can provide (usually non-trivial) display filters specific for the protocol in question (with an example in packet-dcerpc-pn-io.c), that will appear in the GUI svn path=/trunk/; revision=22530
2007-02-28Sync up my changes so far to the content list (now called objectStephen Fisher1-3/+0
list) feature for http traffic. It's now available under File-> Export->Objects->HTTP. More changes to come.. svn path=/trunk/; revision=20951
2007-02-25revert (most) changes in rev #20753, to avoid items being created on a wrong ↵Luis Ontanon1-2/+1
menu on windows. svn path=/trunk/; revision=20928
2007-02-20Put the rest of the #if GTK_MAJOR_VERSION >= 2 preprocessor statements ↵Stephen Fisher1-0/+2
around parts of the Content List -> HTTP feature code. svn path=/trunk/; revision=20869
2007-02-19Initial version of the new Statistics -> Content List -> HTTP feature. ThisStephen Fisher1-0/+1
feature lists all of the content found in an HTTP stream (images, http, etc.) and displays it in a list that allows the user to save each one as a file that is already reassembled by the dissectors. svn path=/trunk/; revision=20867
2007-02-09* Add a Submenu (/Views/User Tables) where UATs can be accessed.Luis Ontanon1-1/+2
* Remove macros_dlg, the DFMacros UAT goes in the menu with all the rest * in packet-user_encap.c WTAP_ENCAP=XXX has become useless information for the user leave just the DLT# svn path=/trunk/; revision=20753
2006-11-05From Albert ChinJaap Keuter1-3/+3
The IBM C compiler on AIX 4.3.3 doesn't accept a trailing comma after the last enum definition. Patch attached for stat_menu.h svn path=/trunk/; revision=19813
2006-09-28Avoid to add an empty menu if there's no Lua.Luis Ontanon1-0/+2
svn path=/trunk/; revision=19346
2006-09-27* rename REGISTER_STAT_GROUP_E -> register_stat_group_tLuis Ontanon1-2/+3
* Add a "Tools" menu * allow wslua's register_menu to register menu items into more menus svn path=/trunk/; revision=19338
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2005-09-13implement a way to add menu items to the "Analyze" menuUlf Lamping1-1/+2
svn path=/trunk/; revision=15788
2005-08-21Add a "register_dfilter_stat()", to register stats that take a displayGuy Harris1-0/+59
filter as an argument on the command line and have a dialog box to enter the display filter through the GUI. Use it for all stats using "gtk_tap_dfilter_dlg_cb()". Add a top-level "stat_menu.h" file to declare "REGISTER_STAT_GROUP_E" for the benefit of the declaration of "register_dfilter_stat()" in the top-level "tap_dfilter_dlg.h". Rename the "stat_menu.h" in the gtk directory to "gtk_stat_menu.h", so as not to have two headers with the same name. Get rid of headers not declaring any functions not being used in the module. svn path=/trunk/; revision=15493