aboutsummaryrefslogtreecommitdiffstats
path: root/ui/follow.h
AgeCommit message (Collapse)AuthorFilesLines
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-11-18Follow dialog data display improvements.Gerald Combs1-1/+2
Change the "Raw" character type to UTF-8. I'm not sure it's possible to show true raw data in a QTextEdit widget and calling it UTF-8 more accurately repesents what happens when you pass a char * to a QString. Add a YAML display. Hopefully Scapy users will find it useful. Sort the the character display items alphabetically. Make sure we go back to the top of the buffer when we change the direction or character set. Be less aggressive about setting focus on the "find text" entry. svn path=/trunk/; revision=53421
2013-11-14Add packet information and selection to the Follow Stream dialog.Gerald Combs1-0/+2
Collect packet numbers when following streams so that we can correlate text positions with packets. Add a FollowStreamText class so that we can track mouse events. Add a hint label that shows the packet under the cursor along with packet counts and the number of "turns". Add the packet number to the C array dump. Note that dumping to YAML might be useful for Scapy users. svn path=/trunk/; revision=53314
2013-09-09Get rid of a whole bunch of things that are supposed to be included byGuy Harris1-18/+0
source files rather than header files in most if not all cases. svn path=/trunk/; revision=51908
2013-09-09Cleanup follow.h a bit:Pascal Quantin1-7/+2
- no need to include zlib.h - sgetline() function is not used outside of follow.c svn path=/trunk/; revision=51895
2013-09-09No need to include gtk/gtk.hJörg Mayer1-4/+0
svn path=/trunk/; revision=51889
2013-09-09From Thomas ERSFELD (GSoC13)Alexis La Goutte1-0/+128
Add TCP/UDP/SSL Follow feature to QtShark Known issue : * Duplicate code with GTK (function need follow_info_t struct but in GTK there is some GWidget variable in struct) * Sometimes TCP Follow fail... svn path=/trunk/; revision=51883