summaryrefslogtreecommitdiff
path: root/gtk
AgeCommit message (Collapse)AuthorFilesLines
2010-01-04Check for valid linktype_history in capture_get_linktype().Stig Bjørlykke1-1/+6
svn path=/trunk/; revision=31438
2009-12-30Set correct linktype when starting capture from the welcome page.Stig Bjørlykke3-8/+25
svn path=/trunk/; revision=31393
2009-12-29Show in stats % of UL traffic that is padding (subheader or payload).Martin Mathieson1-4/+16
svn path=/trunk/; revision=31390
2009-12-29Squelch warning from MSVC++ when building 64-bit code.Guy Harris1-1/+1
svn path=/trunk/; revision=31389
2009-12-29Use gtk_editable_insert_text() instead of deprecated gtk_entry_append_text().Bill Meier1-6/+10
svn path=/trunk/; revision=31386
2009-12-29Use gtk_progress_bar_set_fraction instead of the deprecated ↵Bill Meier1-2/+2
gtk_progress_bar_update; svn path=/trunk/; revision=31384
2009-12-29Use gtk_progress_bar_set_fraction instead of the deprecated ↵Bill Meier1-83/+68
gtk_progress_bar_update; Optimize the progress_bar related code a bit; Fix some indentation. svn path=/trunk/; revision=31383
2009-12-27Fix for bug 4354:Jaap Keuter1-1/+6
Set Edit and Delete button sensitivity when deleting a row. svn path=/trunk/; revision=31364
2009-12-24Add save option to RTP graph window.Jaap Keuter1-2/+28
svn path=/trunk/; revision=31363
2009-12-22Rename splash_register_freq to info_update_freq. Use it to throttle nameGerald Combs2-7/+8
resolution updates as well as splash screen updates. svn path=/trunk/; revision=31351
2009-12-22Change host_name_lookup_process to return TRUE if anything new has beenGerald Combs1-6/+24
resolved since the last time it was called. Use this to redraw the packet list and detail any time we have newly-resolved objects. svn path=/trunk/; revision=31350
2009-12-22Renamed some menu items to clarify the usage:Stig Bjørlykke1-6/+6
"Mark All Packets" -> "Mark All Displayed Packets" "Ignore All Packets" -> "Ignore All Displayed Packets" svn path=/trunk/; revision=31349
2009-12-22Set correct sensitivity for "Ignore All Packets".Stig Bjørlykke1-0/+2
svn path=/trunk/; revision=31348
2009-12-22Only mark/ignore displayed frames when doing mark/ignore all packetsSake Blok1-2/+4
svn path=/trunk/; revision=31345
2009-12-21Add "Ignore all packets", just like "Mark all packets"Sake Blok5-4/+44
svn path=/trunk/; revision=31343
2009-12-21Added Copy Profile functionality.Stig Bjørlykke2-15/+76
svn path=/trunk/; revision=31335
2009-12-20Set new column minimum width and resize column when changing column titleStig Bjørlykke1-0/+5
from the packet list popup menu. svn path=/trunk/; revision=31329
2009-12-18PortAudio doesn't make sure that a default device is even available on the ↵Jaap Keuter1-40/+130
default Host API (go figure). Therefore opening the default stream may fail in the precense of usable devices, on other Host API's. If the default stream fails to open iterate among the Host API's to find one with a default device. svn path=/trunk/; revision=31318
2009-12-18Added some shortcuts for the Ignore Packet menu items.Stig Bjørlykke1-4/+4
svn path=/trunk/; revision=31314
2009-12-18If we don't have PCRE and we do have GLib >= 2.14, use GRegexes for theGerald Combs1-3/+3
"matches" operator. svn path=/trunk/; revision=31302
2009-12-17Squelch GTK warnings on the RTP player progress bar when resizeing the window.Jaap Keuter1-1/+2
svn path=/trunk/; revision=31298
2009-12-17Squelch a GTK warning on the RTP player spinner control.Jaap Keuter1-1/+1
svn path=/trunk/; revision=31297
2009-12-17Added "Ignore Packet" menu items to the main menu.Stig Bjørlykke6-3/+62
Show ignored packages in the summary dialog. svn path=/trunk/; revision=31289
2009-12-17Introduce "Ignore Packet" in the packet list.Stig Bjørlykke7-16/+150
This will remove the package from the dissection functions without removing it from the capture file. svn path=/trunk/; revision=31287
2009-12-15Behave more gracefully if WinPcap isn't installed. Don't assert ifGerald Combs1-1/+1
we call pcap_open or pcap_open_live when WinPcap isn't loaded - just return NULL. Don't display the "NPF driver isn't running" dialog if we're capturing from stdin or a file. Fix a cut-and-paste error in capture_pcap_linktype_list. svn path=/trunk/; revision=31275
2009-12-14From Valerio Messina:Jaap Keuter8-38/+39
As now, when Wireshark save capture files, it show "Loading" in status bar and in the dialog box, warning many users of lost them packets. Saving work as expected. Is simply a GUI use interaction problem. svn path=/trunk/; revision=31269
2009-12-14Moved conversations_ipv6.c and hostlist_ipv6.c to TAP_SRC.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=31262
2009-12-13From Andreas Heise:Anders Broman1-1/+1
Fix different duration format beteen directions. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4327 svn path=/trunk/; revision=31254
2009-12-12Rename BASE_STRUCTURE_RESET to BASE_DISPLAY_E_MASK, to clarify that it'sGuy Harris1-1/+1
a mask to select the base_display_e value from a display field in a header_field_info structure. Never select that value by masking out the BASE_RANGE_STRING flag bit, as that won't continue to work if more flag bits, or other bitfields, are added. Instead, mask with BASE_DISPLAY_E_MASK. Note that the base_display_e value and BASE_RANGE_STRING flag are only for integral field types, and clarify what BASE_DISPLAY_E_MASK is. Give at least one of the reasons why hiding protocol fields is not considered a good idea. svn path=/trunk/; revision=31249
2009-12-11Add new filesJörg Mayer1-0/+2
svn path=/trunk/; revision=31242
2009-12-11Fix for bug 3801:Jaap Keuter1-16/+26
Following r28546 and r30953 this adjusts the timescale in the RTP Graph Analysis, restoring its operation. svn path=/trunk/; revision=31240
2009-12-11From Andreas Heise:Anders Broman1-0/+2
fix missing display of max skew in reversed d. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4320 svn path=/trunk/; revision=31235
2009-12-10From Clif Bratcher:Jaap Keuter3-0/+204
Support for IPv6 in the Conversations window. Add IPv6 tab to the Endpoints window svn path=/trunk/; revision=31231
2009-12-09Cleanup some column alignment code.Stig Bjørlykke2-17/+8
svn path=/trunk/; revision=31217
2009-12-09Save column alignment in the old packet list.Stig Bjørlykke1-10/+56
svn path=/trunk/; revision=31216
2009-12-09Moved column xalign values.Stig Bjørlykke2-5/+6
svn path=/trunk/; revision=31215
2009-12-09Added "No Sorting" and Align menu items to the old packet list Stig Bjørlykke3-20/+65
heading popup menu. svn path=/trunk/; revision=31214
2009-12-08When freezing/thawing selection gets lost.Anders Broman1-1/+17
svn path=/trunk/; revision=31206
2009-12-03- Use the gtk_tree_view_column_set_min_width() method alsoAnders Broman1-13/+15
when crating the list. - Set min width to the size of the title or COLUMN_WIDTH_MIN svn path=/trunk/; revision=31167
2009-12-03Improved Apply/Prepare a filter from Packet List for custom columns:Stig Bjørlykke1-3/+16
- Add quotes for strings - Use only protocol for protocol only columns svn path=/trunk/; revision=31158
2009-12-02Use size_t for length.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=31152
2009-12-02Set tooltips on the column button.Stig Bjørlykke1-11/+6
svn path=/trunk/; revision=31151
2009-12-02Indicate default column alignment in the popup menu.Stig Bjørlykke3-6/+58
svn path=/trunk/; revision=31150
2009-12-02Fixed opening correct preferences page.Stig Bjørlykke3-6/+20
svn path=/trunk/; revision=31149
2009-12-02Borrow some of the web site colors for the welcome screen.Gerald Combs1-45/+21
svn path=/trunk/; revision=31147
2009-12-01Fix a comment.Guy Harris1-1/+1
svn path=/trunk/; revision=31146
2009-12-01Use pango_font_description_get_size() to pad out the default columnGerald Combs1-5/+3
size. This may require tweaking, e.g. with pango_font_description_set_absolute_size(). svn path=/trunk/; revision=31145
2009-12-01Save column alignment in the recent file.Stig Bjørlykke5-14/+157
Added center and default alignment menu items. svn path=/trunk/; revision=31143
2009-12-01Added three states for sorting: ascending, descending and no sortingStig Bjørlykke3-2/+11
(ascending on first column). svn path=/trunk/; revision=31141
2009-12-01Clean up indentation a bit more.Guy Harris1-21/+21
svn path=/trunk/; revision=31139