aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
AgeCommit message (Collapse)AuthorFilesLines
2011-10-02Removed the protocol registration updates in the splash screen for PythonStig Bjørlykke1-0/+9
dissectors, because it does not work as expected and causes an assert. Added generic splash updates for python register and handoff instead. This should fix bug 5431. svn path=/trunk/; revision=39221
2011-10-02Added register action for loading Lua plugins.Stig Bjørlykke1-1/+8
Removed an unused argument to wslua_init(). svn path=/trunk/; revision=39214
2011-10-02Always update splash screen when action has changed.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=39213
2011-09-28In drag_and_drop.c use accessor functions for GtkSelectionData. InGerald Combs2-16/+14
main_menubar.c use gtk_osxapplication_insert_app_menu_item instead of gtk_osxapplication_add_app_menu_item. Fixes deprecation-related errors when compiling with HAVE_GTKOSXAPPLICATION defined. svn path=/trunk/; revision=39180
2011-09-26Put in "#if 0":s to make it compile, these widgets are not vissible on my ↵Anders Broman1-9/+12
system so I have no idea what the GUI looks like with these changes. svn path=/trunk/; revision=39142
2011-09-25gkvumeter got removed, don't try to build it.Jörg Mayer1-2/+1
svn path=/trunk/; revision=39141
2011-09-25Remove gtkvumeter.[hc]Jörg Mayer7-1519/+20
This may cause windows builds to fail. If nobody picks up the task of getting it to compile again I'll start doing that tomorrow morning with the help of the buildbot. svn path=/trunk/; revision=39139
2011-09-25Get rid of (hopefully) all configure options to enable MAIN_MENU_USE_UIMANAGERJörg Mayer1-6/+0
as it is the only option left. svn path=/trunk/; revision=39138
2011-09-25We now always build with MAIN_MENU_USE_UIMANAGER, so remove all code usingJörg Mayer89-5918/+66
the old ways except the proto_help.c file, which is kept for now in case someone is willing to reimplement the help menus using non-deprecated methods. svn path=/trunk/; revision=39137
2011-09-25Fix forJörg Mayer1-3/+5
/home/jmayer/work/wireshark/svn/trunk/gtk/capture_if_dlg.c:522:3: error: ISO C90 forbids mixed declarations and code svn path=/trunk/; revision=39135
2011-09-24Use the new remote capturing icon also in the interfaces dialog box.Michael Tüxen2-1/+10
svn path=/trunk/; revision=39122
2011-09-24Use one of the new icons for remote interfaces.Michael Tüxen4-3/+238
svn path=/trunk/; revision=39118
2011-09-24Mark the "adjustment" argument to scroll callbacks as unused. (IsGuy Harris1-2/+2
redrawing sufficient? Could the adjustment be used to optimize what's drawn?) svn path=/trunk/; revision=39117
2011-09-23Get rid of duplicate call.Guy Harris1-1/+0
svn path=/trunk/; revision=39115
2011-09-23Grr make it work if GTK < 2.22Anders Broman1-0/+9
svn path=/trunk/; revision=39112
2011-09-23Redraw when vertical scroll is used.Anders Broman1-36/+37
svn path=/trunk/; revision=39111
2011-09-23Update the draw area as well.Anders Broman1-2/+18
svn path=/trunk/; revision=39107
2011-09-23Remove duplicated code.Anders Broman1-10/+1
svn path=/trunk/; revision=39102
2011-09-22Add an option -d to specify display filter from the command line.Stig Bjørlykke1-2/+14
This was requested in bug 2463. svn path=/trunk/; revision=39090
2011-09-22Store a pointer to frame_data rather than the time.Anders Broman2-15/+33
svn path=/trunk/; revision=39086
2011-09-21Whitespace cleanup:Bill Meier6-1607/+1607
Use consistent indentation; Convert "4 space tabs" to spaces; Remove trailing whitespace. svn path=/trunk/; revision=39082
2011-09-21Fix ex "modeline" so it works;Bill Meier8-8/+8
See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5748 svn path=/trunk/; revision=39081
2011-09-21Don't pop up an error dialog box for every file that can't be saved. ↵Chris Maynard1-1/+1
Before, this could have potentially meant having to manually close far too many of them. svn path=/trunk/; revision=39080
2011-09-21Fix ex "modeline" so it works;Bill Meier1-28/+28
See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5748 Convert "4 space tabs" to spaces; Use consistent indentation. svn path=/trunk/; revision=39079
2011-09-21Fix vi "modeline" so it works;Bill Meier1-3/+3
See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5748 svn path=/trunk/; revision=39076
2011-09-20From DeCount via bug 6362: Increase maximum allowable number of duplicate ↵Chris Maynard1-14/+16
filesi from 10 to 1000. I modified his patch to avoid appending anything to the first filename, and other minor changes. Reference: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6362 svn path=/trunk/; revision=39061
2011-09-20From Dirk via bug 6361:Stig Bjørlykke1-6/+32
Add a File/Directory Dialog as a field type for UAT preferences. svn path=/trunk/; revision=39058
2011-09-19Move the return out of the for() loop so all values are freed. Fixes ↵Chris Maynard1-6/+2
Coverity CID 1277 (loop increment j++ is unreachable). svn path=/trunk/; revision=39053
2011-09-19Fix a crash when zooming into a TSN plot.Michael Tüxen1-107/+109
Provided by Irene Ruengeler. From me: remove tailing whitespaces. svn path=/trunk/; revision=39043
2011-09-19Remove debug code.Anders Broman1-1/+0
svn path=/trunk/; revision=39035
2011-09-16Fix a crash when analysing SCTP TSNs.Michael Tüxen2-0/+2
Provided by Irene Ruengeler. svn path=/trunk/; revision=39028
2011-09-15Store frame_data_t instead of nstime_t, now it should be possibleAnders Broman2-5/+9
to implement using the same time format as chosen in the packetlist. svn path=/trunk/; revision=38999
2011-09-14Trivial fix that would create one of the three GDK_DEPRECATED errors.Jörg Mayer2-4/+2
Use the #define instead of "font" svn path=/trunk/; revision=38998
2011-09-14Update based upon latest names "packet-type-codes" list from the IANA:Bill Meier1-74/+92
- Change some type-code names to match IANA list; - Handle additional type-codes as given in the IANA list; - Don't consider certain "attribute types" to be valid packet-type codes See Bug 6335: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6335 - Minor code cleanup. svn path=/trunk/; revision=38997
2011-09-14Show total ACKs/UE in UE table.Martin Mathieson1-4/+14
svn path=/trunk/; revision=38994
2011-09-13Fix a typo in a comment.Gerald Combs1-1/+1
svn path=/trunk/; revision=38988
2011-09-13Use Frame_data also in graph_analysis_item_t, this should ultimatelyAnders Broman6-27/+22
make it possible to use absolute time in the graph. svn path=/trunk/; revision=38984
2011-09-13Store a pointer to frame_data which holds the timing and frame number info ↵Anders Broman3-127/+68
rather than making copies. Move a structure only used internaly from voip_calls.h to .c svn path=/trunk/; revision=38982
2011-09-12Store a pointer to frame_data which holds the timing and frame number info ↵Anders Broman2-17/+11
rather than making copies. svn path=/trunk/; revision=38981
2011-09-12Use the correct name for the airpcap interface.Michael Tüxen1-6/+6
While there, clean up some whitespaces. svn path=/trunk/; revision=38975
2011-09-12Fix the wireless settings button for AirPCap devices in theMichael Tüxen1-5/+1
Edit Interface dialog box. Obtained from Irene Ruengeler. svn path=/trunk/; revision=38974
2011-09-09Fix locale problem with "Rel Start" time, both with display and copy to CSV, ↵Chris Maynard1-6/+2
by replacing rel_time_to_secs_str() with nstime_to_sec(). Problem reported on ask by packethunter. Ref: http://ask.wireshark.org/questions/6207/decimal-point-vs-decimal-comma svn path=/trunk/; revision=38948
2011-09-08Add syntax check and autocompletion to "Save Filter as".Stig Bjørlykke1-0/+6
svn path=/trunk/; revision=38939
2011-09-08Avoid crash when pressing the help button in the "Save Filter" dialog.Stig Bjørlykke1-0/+3
Documentation TBD. svn path=/trunk/; revision=38938
2011-09-08From Edwin Groothuis via bug 6207:Stig Bjørlykke11-7/+890
Added Filter Toolbar Save functionality. From me: Removed unused code. svn path=/trunk/; revision=38937
2011-09-07"Fix" an unjustified gcc might-be-used-unused warning.Jörg Mayer1-2/+3
svn path=/trunk/; revision=38920
2011-09-06Try to improve the tooltip a bit.Anders Broman1-1/+2
svn path=/trunk/; revision=38898
2011-09-05g_slist_free_full() didn't appear until GLib 2.28.Guy Harris1-2/+3
svn path=/trunk/; revision=38885
2011-09-05From Kurnia Hendrawan via bug 2931:Stig Bjørlykke3-6/+244
Added an option to save "decode as" entries. svn path=/trunk/; revision=38883
2011-09-05Try to fix the buildbot.Anders Broman1-2/+4
svn path=/trunk/; revision=38882