aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/help_dlg.h
AgeCommit message (Collapse)AuthorFilesLines
2005-01-20add some more online help functionality and help buttons at various dialog ↵Ulf Lamping1-38/+34
boxes, if a help page *is* available. However, the new help system needs a lot more work before completed. svn path=/trunk/; revision=13152
2004-12-29From Albert Chin: not all compilers support a comma after the last valueGuy Harris1-1/+2
in an enum. svn path=/trunk/; revision=12862
2004-10-27fix doxygen tagsUlf Lamping1-1/+1
svn path=/trunk/; revision=12404
2004-09-24add a link to the Ethereal wiki front pageUlf Lamping1-0/+1
svn path=/trunk/; revision=12084
2004-09-16first steps towards using the User's Guide as Ethereal's help systemUlf Lamping1-0/+49
svn path=/trunk/; revision=12021
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-06-04add more details for doxygenUlf Lamping1-1/+2
svn path=/trunk/; revision=11110
2004-06-01add details for doxygen, various code cleanups as a result of thisUlf Lamping1-4/+20
svn path=/trunk/; revision=11052
2004-01-25adding a function to the help dialog, showing a specific topic (context help),Ulf Lamping1-1/+2
beautifying the placement of the help button in the button_row, using the context help for the filter dialog svn path=/trunk/; revision=9851
2003-01-26Update my email address in various places since my old one no longer worksLaurent Deniel1-2/+2
svn path=/trunk/; revision=7003
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-3/+3
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
2000-09-08Redraw:Guy Harris1-1/+4
the text in all "Follow TCP Stream" windows; the text in the help window if we have one up; all hex dump windows; when GUI preference changes are to be applied, so that font changes and "Follow TCP Stream" color changes show up. Update both the Roman and bold font when the font is changed. Don't decrement the reference counts on the old Roman and bold fonts until that's all done. svn path=/trunk/; revision=2401
2000-08-11Miscellaneous code cleaningLaurent Deniel1-1/+6
- add <stdarg.h> or <varargs.h> in snprintf.h and remove those inclusions in the other #ifdef NEED_SNPRINTF_H codes - remove the check of multiple inclusions in source (.c) code (there is a bit loss of _cpp_ performance, but I prefer the gain of code reading and maintenance; and nowadays, disk caches and VM are correctly optimized ;-). - protect all (well almost) header files against multiple inclusions - add header (i.e. GPL license) in some include files - reorganize a bit the way header files are included: First: #include <system_include_files> #include <external_package_include_files (e.g. gtk, glib etc.)> Then #include "ethereal_include_files" with the correct HAVE_XXX or NEED_XXX protections. - add some HAVE_XXX checks before including some system header files - add the same HAVE_XXX in wiretap as in ethereal Please forgive me, if I break something (I've only compiled and regression tested on Linux). svn path=/trunk/; revision=2254
2000-08-08Add a Help window that contains:Laurent Deniel1-0/+27
- short overview - list of known protocols - list of display filters - short capture filter help The display filter help can be extended in the future when we will have a GUI for filter construction. But this is better than nothing ;-) And cut & paste from the text help window and the filter input field works... svn path=/trunk/; revision=2227