aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/packet_panes.h
AgeCommit message (Collapse)AuthorFilesLines
2015-12-18Qt: use recent.gui_bytes_view preference to remember bits / byte viewPascal Quantin1-5/+2
While we are at it, let's centralize bytes_view_type definition Bug: 11903 Change-Id: I606c779a8efaea668db1b440d3ae0336e6e3fc67 Reviewed-on: https://code.wireshark.org/review/12706 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
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-12-21Add missing includesJakub Zawadzki1-0/+2
svn path=/trunk/; revision=54332
2013-12-03Avoid including <epan/epan.h> in dissectors.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=53774
2013-07-15Fix warning: ISO C restricts enumerator values to range of 'int'Chris Maynard1-5/+5
svn path=/trunk/; revision=50641
2013-01-22GTK+:Gerald Combs1-8/+1
Get rid of user-hostile behavior. In the layout preferences pane 2 & 3 radio buttons overrode the user's selection if a duplicate item was selected. Now we assume that the user knows what he or she is doing and steal duplicate selections from the other panes. Qt: Match the new GTK+ behavior in the layout preferences. Add padding around the layout images. Add toolbar style preferences to the Appearance pane (instead of the layout pane). All: Remove the selection mode and scrollbar placement prefs and mark them obsolete as recently discussed on -dev. Adjust the layout images yet again after more Awful Monitor Testing. svn path=/trunk/; revision=47214
2012-07-06- e_addr_resolve is structure so pass it by pointer.Jakub Zawadzki1-1/+1
- name_resolve_concurrency must be only defined when used. svn path=/trunk/; revision=43584
2012-07-06From Michael Mann:Anders Broman1-1/+1
Generic preferences implementation - Printing and Name Resolution. svn path=/trunk/; revision=43579
2012-06-30Fix bug #7425: Per-packet right-click network or MAC name resolution not workingJakub Zawadzki1-0/+2
proto_tree_draw() from r43189 is lazy, and it don't fills tree with all item labels. To fix it, move 'gbl_resolv_flags' hack to proto_tree_model_get_value(). XXX could we pass resolving flags to proto_item_fill_label()? svn path=/trunk/; revision=43550
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-06-16Rename clear_tree_and_hex_views() to main_clear_tree_and_hex_views(), asGuy Harris1-5/+0
it specifically works on the main window's tree and hex dump views (it doesn't apply to packet windows - they are always showing data from a particular packet), and move its declaration to main_packet_panes.h. svn path=/trunk/; revision=43293
2012-06-16Move some routines that specifically handle the main window's packetGuy Harris1-14/+13
panes to main_packet_panes.c. Rename main_tree_view_new() to proto_tree_view_new() - it's not just for creating the main window's protocol tree view, it's also for creating protocol tree views in packet windows. svn path=/trunk/; revision=43292
2012-06-16ui/gtk/main_proto_draw.c isn't just used for the main window, it's alsoGuy Harris1-0/+254
used for popped-up packet windows, and it includes more than just code to draw the protocol tree - it includes the hex dump pane code as well. Rename it packet_panes.c; the stuff specific to the main window should be moved into a different file. svn path=/trunk/; revision=43290