aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/help_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2010-09-23Put the guides into the "guides" subdirectory of DOC_DIRJörg Mayer1-2/+2
svn path=/trunk/; revision=34197
2010-08-19Fix gcc compile errors....Bill Meier1-1/+1
svn path=/trunk/; revision=33850
2010-08-19Use proper signatures for event callback functions:Bill Meier1-23/+22
EG: Non-event signal callback functions shouldn't be directly used as event callback functions. Replace use of deprecated "GtkSignalFunc"; Whitespace cleanup. svn path=/trunk/; revision=33849
2010-08-01Fix Windows builds broken by previous commitBalint Reczey1-1/+5
svn path=/trunk/; revision=33684
2010-08-01Use local copy of Wireshark documentation on UNIX if it's available.Balint Reczey1-2/+7
Installation has to be done manually to the location specified by --docdir configure option. svn path=/trunk/; revision=33683
2010-04-27Added Manual IP address resolve functions.Stig Bjørlykke1-0/+3
This can later be extended with ethernet and probably other addresses. svn path=/trunk/; revision=32571
2010-03-02topic_menu_cb() used as callback returning gboolean. Thus make it so.Jaap Keuter1-2/+4
svn path=/trunk/; revision=32087
2010-01-22Add a simple help page for LTE RLC stats.Martin Mathieson1-1/+4
svn path=/trunk/; revision=31616
2009-09-16Check for TCP Chimney offloading as described atGerald Combs1-0/+3
http://support.microsoft.com/kb/912222. Print a warning on the welcome page if it's present and enabled. This hasn't yet been tested on a chimney-enabled machine, but it should work. svn path=/trunk/; revision=29948
2009-05-21Small improvements for the compare capture files dialog:Stig Bjørlykke1-0/+3
- Added autocompletion in the filter entry - Added a help button (documentation TBD) svn path=/trunk/; revision=28440
2009-03-18Use retx info in stats window.Martin Mathieson1-0/+3
User guide help not added yet, as having trouble building... svn path=/trunk/; revision=27776
2008-07-12Correct help topic for firewall dialog.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=25725
2008-06-30Move privileges.c and unicode-utils.c from epan to wsutil (so things likeJeff Morriss1-1/+1
capinfos and dumpcap don't need to depend on libwireshark nor directly pull in those modules). Because capinfos and editcap were only being linked with privileges.c if we had plugins, this allows those programs to be linked when someone is compiling --without-plugins. svn path=/trunk/; revision=25640
2008-06-21Added help topic item previous reused for another topic.Stig Bjørlykke1-0/+3
Todo: add documentation text. svn path=/trunk/; revision=25506
2008-06-21Removed the usage of topic_available() as we now have all topics.Stig Bjørlykke1-8/+0
svn path=/trunk/; revision=25505
2008-06-21Added a help button in the Interface Options dialog.Stig Bjørlykke1-9/+4
Added the Interface Options docbook chapter. svn path=/trunk/; revision=25502
2008-05-23Change references to follow TCP stream to just follow stream to reflectStephen Fisher1-1/+1
the multi-purpose nature of the follow_stream.c code (you can also follow SSL and UDP streams with it.) svn path=/trunk/; revision=25363
2008-05-22Move the file utility functions from wiretap to libwsutil so thatJeff Morriss1-1/+0
libwireshark (and the plugins using those functions) do not depend on wiretap on Windows. While doing that, rename the eth_* functions to ws_*. svn path=/trunk/; revision=25354
2008-04-17add tooltips for the welcome page buttonsUlf Lamping1-13/+31
svn path=/trunk/; revision=25092
2008-04-16add the firewall ACL dialog to the help topics (would be a good idea to ↵Ulf Lamping1-0/+3
better describe that dialog anyway...) svn path=/trunk/; revision=25060
2008-04-15add some more "links" to online pagesUlf Lamping1-1/+13
svn path=/trunk/; revision=25035
2008-04-13text_page -> text_page_utilsUlf Lamping1-1/+1
svn path=/trunk/; revision=24973
2008-04-13sort #includes by directoriesUlf Lamping1-10/+12
svn path=/trunk/; revision=24968
2008-04-12where it's not necessary, remove #include "compat_macros.h"Ulf Lamping1-1/+0
svn path=/trunk/; revision=24922
2008-04-06remove GTK1 codeUlf Lamping1-216/+0
svn path=/trunk/; revision=24821
2008-02-22add rawshark.html to packaging and Wireshark help menuUlf Lamping1-0/+3
svn path=/trunk/; revision=24431
2008-02-17Added help button in expert info and expert info composite dialogs.Stig Bjørlykke1-0/+3
svn path=/trunk/; revision=24374
2008-02-14Added option to turn off name resolution.Stig Bjørlykke1-0/+3
Added help button (documentation TBD). svn path=/trunk/; revision=24329
2008-01-14This patch adds support for configuration profiles, which can be used toStig Bjørlykke1-0/+3
configure and use more than one set of preferences and configuration files. This can be found in the "Configuration Profiles..." menu item from the Edit menu, or by pressing Shift-Ctrl-A. It's also possible to start wireshark and tshark with a named profile by using the "-C ProfileName" option. A new status pane in the main window will show the current profile. The configuration files currently stored in the Profiles are: - Preferences - Capture Filters - Display Filters - Coloring Rules - Disabled Protocols - User Accessible Tables The recent data are by design not added to the profile. Planned future enhancements: - make a more convenient function to switch between profiles - add a "clone profile" button to copy an existing profile - make the profiles list active and accept return as OK - save users "Decode as" in the profile - make new, clone and deletion of profiles more secure - make some of the recent values available in the profile This patch also fixes: - setting default status pane sizes - a bug setting status pane for packets when not having main lower pane. svn path=/trunk/; revision=24089
2007-03-03Update object export code:Stephen Fisher1-0/+3
- Add to User's Guide - Add a help button - Move a lot of code into the shared export_object.c file and out of dissector specific file export_object_http.c. This will make adding additional protocols much easier. - Change comment in packet-http.c to reflect new name (Export Object) - Various other minor improvements svn path=/trunk/; revision=20961
2007-02-19Oops, help_topic_gtk() is _only_ needed in GTK1.2 builds, so #ifdef it (and ↵Jeff Morriss1-102/+103
some of its helpers) out in GTK2 builds. svn path=/trunk/; revision=20859
2007-02-05* Add a help facility for UATsLuis Ontanon1-1/+1
* export help_topic_html() svn path=/trunk/; revision=20717
2007-01-16Should have done this in the last checkin: wrap help_topic_html() in ↵Jeff Morriss1-0/+2
#ifdef(GLIB2) as it's only used (and only works) there svn path=/trunk/; revision=20454
2007-01-16help_topic_gtk() is needed in GTK 1.2 builds so don't #ifdef(GKT2) it outJeff Morriss1-2/+0
svn path=/trunk/; revision=20451
2007-01-16in effect use the User's Guide as the online help system now (for GTK > V1)!Ulf Lamping1-3/+7
remove ENABLE_WSUG setting from config.nmake and replace it with GLIB_MAJOR_VERSION >= 2 (as Glib 1.x cannot open a browser to show a HTML file - it's just currently? not implemented) svn path=/trunk/; revision=20446
2007-01-15Help:Ulf Lamping1-50/+59
- Win32 only: try to load help page from local user-guide.chm (if HHC_DIR is set in config.nmake) and if that fails: - show corresponding help page directly from www.wireshark.org in the configured web browser. The "internet way" will be the only way for all UNIX based versions, as they cannot read .chm files. svn path=/trunk/; revision=20445
2006-09-22Add support for reading from stdin under Windows. Based on a patch sentGerald Combs1-7/+7
in last year by Gianluca Varenni. Add partial support for reading from named pipes (currently disabled). Move utf_8to16() and utf_16to8() to a separate module (unicode-utils.[ch]) so that we don't have to cut and paste code in dumpcap.c. Fix up whitespace. svn path=/trunk/; revision=19291
2006-09-12various nmake related build file cleanupsUlf Lamping1-2/+2
svn path=/trunk/; revision=19198
2006-08-30add some file dialog related help pagesUlf Lamping1-0/+20
use file related instead of print related help pages for the export dialogs svn path=/trunk/; revision=19089
2006-08-24capture interfaces dialog: use capture stock icons instead of plain text buttonsUlf Lamping1-0/+3
capture info dialog: add a "Help" and use stock buttons svn path=/trunk/; revision=19020
2006-06-07Update the download link in the help dialog. More Ethereal -> Wireshark.Gerald Combs1-2/+2
svn path=/trunk/; revision=18391
2006-06-02eug_html_chunked -> wsug_html_chunkedUlf Lamping1-3/+3
svn path=/trunk/; revision=18321
2006-05-31Tethereal/tethereal -> TShark/tshark.Gerald Combs1-2/+2
svn path=/trunk/; revision=18268
2006-05-29Ethereal->WiresharkAnders Broman1-2/+2
svn path=/trunk/; revision=18246
2006-05-28Ethereal->WiresharkAnders Broman1-14/+14
svn path=/trunk/; revision=18232
2006-05-22Get rid of a bunch of "Ethereal"s and "ethereal"s in comments, GUIGuy Harris1-1/+1
strings, and function names. svn path=/trunk/; revision=18205
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-04-20if HHC_DIR is defined in config.nmake, use the Win32 HTMLHELP system (using ↵Ulf Lamping1-25/+68
the user-guide.chm file) svn path=/trunk/; revision=17932
2006-02-24add the dumpcap manpage to the menuUlf Lamping1-0/+3
svn path=/trunk/; revision=17402
2005-11-06replace *a lot* of file related calls by their GLib counterparts. This is ↵Ulf Lamping1-1/+2
necessary for the switch to GTK 2.6 (at least on WIN32). to do this, I've added file_util.h to wiretap (would file_compat.h be a better name?), and provide compat_macros like eth_open() instead of open(). While at it, move other file related things there, like #include <io.h>, definition of O_BINARY and alike, so it's all in one place. deleted related things from config.h.win32 As of these massive changes, I'm almost certain that this will break the Unix build. I'll keep an eye on the buildbot so hopefully everything is working again soon. svn path=/trunk/; revision=16403