aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/sctp_stat_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2012-01-15Move gtk to ui/gtk.Jörg Mayer1-681/+0
This looses the last checkin to gtk, will add this manually back. svn path=/trunk/; revision=40518
2011-09-25We now always build with MAIN_MENU_USE_UIMANAGER, so remove all code usingJörg Mayer1-10/+1
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-08-19Add a few more menu items.Anders Broman1-0/+7
svn path=/trunk/; revision=38623
2011-07-21Fix almost all accesses to ->windowJörg Mayer1-1/+3
svn path=/trunk/; revision=38151
2011-07-14Fix some compiler errors with -DGTK_DISABLE_DEPRECATEDJörg Mayer1-0/+4
svn path=/trunk/; revision=38006
2011-07-11Remove a lot of instances of GTK_CHECK_VERSION. Clean up whitespace in aGerald Combs1-131/+124
couple of places. svn path=/trunk/; revision=37969
2011-05-17More eradication of old-style function definitions.Guy Harris1-2/+2
svn path=/trunk/; revision=37216
2010-08-23(Trivial/Cosmetic) Fix signatures of some signal callback functions;Bill Meier1-1/+1
Also:Add some missing G_CALLBACKs (even in commented out code) svn path=/trunk/; revision=33890
2010-06-23From Robin Seggelmann: Improve SCTP chunk statistics.Michael Tüxen1-1/+1
svn path=/trunk/; revision=33297
2009-11-10Yet another fix in dlg_destroy().Stig Bjørlykke1-2/+1
svn path=/trunk/; revision=30916
2009-11-10Fixed a bug in dlg_destroy() to destroy all widgets.Stig Bjørlykke1-5/+2
Removed unused variable 'sortable' in create_list(). Removed unused variable 'checksum' in sctp_stat_on_apply_filter(). svn path=/trunk/; revision=30914
2009-10-05Return from sctp_stat_on_select_row() if nothing selected.Stig Bjørlykke1-1/+4
svn path=/trunk/; revision=30338
2009-09-30Corrected prototype for create_list().Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=30221
2009-09-01From Irene Ruengeler: Get rid of legacy gtk code...Michael Tüxen1-219/+243
svn path=/trunk/; revision=29649
2009-08-27Add #include <stdio.h> in a few more places ....Bill Meier1-0/+2
svn path=/trunk/; revision=29578
2009-07-08From Kovarththanan Rajaratnam:Anders Broman1-1/+1
No letter-shortcuts in Telephony menu. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3678 svn path=/trunk/; revision=29028
2009-06-05Have tap listeners specify whether the "packet" routine requiresGuy Harris1-1/+1
a protocol tree; the column values. This includes stats-tree listeners. Have the routines to build the packet list, and to retap packets, honor those requirements. This means that cf_retap_packets() no longer needs an argument to specify whether to construct the column values or not, so get rid of that argument. This also means that there's no need for a tap to have a fake filter to ensure that the protocol tree will be built, so don't set up a fake "frame" filter. While we're at it, clean up some cases where "no filter" was represented as a null string rather than a null pointer. Have a routine to return an indication of the number of tap listeners with filters; use that rather than the global num_tap_filters. Clean up some indentation and some gboolean vs. gint items. svn path=/trunk/; revision=28645
2009-04-10Remove unnecessary use of (deprecated) gtk_button_box_set_child_ipadding();Bill Meier1-1/+0
(In each case the arg values used [4,0] were the same as the defaults). checkAPIs.pl: gtk_button_box_set_child_ipadding: 'W' --> 'E' svn path=/trunk/; revision=28030
2008-10-13Bring the windows to front when rescanning of packets are done.Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=26438
2008-07-08Fix some simple cases of GTK2 deprecated API usage by using a renamed or ↵Bill Meier1-1/+1
equivalent API gtk_button_box_set_spacing() ==> gtk_box_set_spacing() svn path=/trunk/; revision=25673
2008-06-29Fix some simple cases of GTK2 deprecated API usage by using a renamed or ↵Bill Meier1-1/+1
equivalent API gtk_container_border_width() ==> gtk_container_set_border_width() gtk_container_children() ==> gtk_container_get_children() gtk_entry_new_with_max_length() ==> gtk_entry_new(); gtk_entry_set_max_length() gtk_menu_append() ==> gtk_menu_shell_append() gtk_menu_prepend() ==> gtk_menu_shell_prepend() gtk_notebook_set_page() ==> gtk_notebook_set_current_page() gtk_paned_gutter_size() ==> gtk_paned_set_gutter_size() gtk_radio_button_group() ==> gtk_radio_button_get_group() gtk_signal_connect() ==> g_signal_connect() gtk_signal_disconnect() ==> g_signal_handler_disconnect() gtk_signal_emit_by_name() ==> g_signal_emit_by_name() gtk_signal_handler_block_by_data() ==> g_signal_handlers_block_matched() gtk_signal_handler_block_by_func() ==> g_signal_handlers_block_by_func() gtk_signal_handler_unblock_by_data() ==> g_signal-handlers_unblock_matched() gtk_signal_handler_unblock_by_func() ==> g_signal-handlers_unblock_by_func() gtk_spin_button_get_value_as_float() ==> gtk_spin_button_get_value() gtk_toggle_button_set_state() ==> gtk_toggle_button_set_active() svn path=/trunk/; revision=25634
2008-04-13sort #includes by directoriesUlf Lamping1-11/+11
svn path=/trunk/; revision=24969
2008-04-12where it's not necessary, remove #include "compat_macros.h"Ulf Lamping1-1/+0
svn path=/trunk/; revision=24922
2008-04-11last round to replace SIGNAL_CONNECT with g_signal_connectUlf Lamping1-8/+8
svn path=/trunk/; revision=24918
2008-04-11replace WIDGET_SET_SIZE with gtk_widget_set_size_requestUlf Lamping1-1/+1
svn path=/trunk/; revision=24910
2008-04-11replace all appearances of BUTTON_NEW_FROM_STOCK with GTK2's ↵Ulf Lamping1-1/+1
gtk_button_new_from_stock svn path=/trunk/; revision=24904
2007-09-06Enable esc key for SCTP Associations window.Bill Meier1-2/+4
svn path=/trunk/; revision=22804
2007-05-22From Irene Ruengeler: Fix TSN handling in graphs.Michael Tüxen1-88/+67
svn path=/trunk/; revision=21894
2007-02-09A fix from Irene Ruengeler to keep assocs selected whenMichael Tüxen1-34/+92
setting/applying filters. Remove some warnings. svn path=/trunk/; revision=20759
2007-01-29Improve the handling of INIT/ABORT mesage pairs.Michael Tüxen1-7/+9
svn path=/trunk/; revision=20608
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
2005-09-14Have cf_retap_packets() take an argument that indicates whether toGuy Harris1-1/+1
generate columns; use cf_retap_packets instead of cf_redissect_packets() when running taps (the general flow graph stat uses the Info column). svn path=/trunk/; revision=15793
2005-08-21As per a suggestion by Ulf Lamping, rename gtk_*.[ch] to gui_*.[ch], soGuy Harris1-1/+1
that it doesn't appear to be part of GTK+. svn path=/trunk/; revision=15501
2005-08-21Add a "register_dfilter_stat()", to register stats that take a displayGuy Harris1-1/+2
filter as an argument on the command line and have a dialog box to enter the display filter through the GUI. Use it for all stats using "gtk_tap_dfilter_dlg_cb()". Add a top-level "stat_menu.h" file to declare "REGISTER_STAT_GROUP_E" for the benefit of the declaration of "register_dfilter_stat()" in the top-level "tap_dfilter_dlg.h". Rename the "stat_menu.h" in the gtk directory to "gtk_stat_menu.h", so as not to have two headers with the same name. Get rid of headers not declaring any functions not being used in the module. svn path=/trunk/; revision=15493
2005-08-20- Declare some functions staticJörg Mayer1-3/+3
- Add plugins_dlg.h - Include .h files in their respective .c files - Include .h and remove extern declarations in .c files - set eol-style and keywords on gui_utils.[hc] svn path=/trunk/; revision=15471
2005-08-20renamed ui_util.c/.h to gui_utils.c/.h to prevent confusion with identical ↵Ulf Lamping1-1/+1
named ui_util.h in / dir svn path=/trunk/; revision=15465
2005-08-19Move the APIs for registering and processing "-z" command-line argumentsGuy Harris1-2/+2
and "Statistics" menu items into "stat.h" and "stat.c", to separate them from the core tapping APIs. A tap could conceivably not register as a "-z" command-line argument or "Statistics" menu item, and a stat could conceivably not be implemented as a tap, and dissectors that implement tapping points don't need the UI-related stuff from "stat.h", they just want the tap-related stuff in <epan/tap.h>. svn path=/trunk/; revision=15427
2005-08-10removed tons of MSVC const related warnings.Ulf Lamping1-2/+2
This might at some places interfere with the changes for gcc4, we might have to negotiate in that case :-) Please note that a lot of these warnings were GTK1.x related only! svn path=/trunk/; revision=15286
2005-08-06Last set of char -> const char trivial warning fixes.Jörg Mayer1-3/+3
svn path=/trunk/; revision=15244
2005-07-28Warning fixesJörg Mayer1-1/+1
svn path=/trunk/; revision=15125
2005-04-16add 12 new toolbar/menu iconsUlf Lamping1-1/+1
add two toolbar toggle buttons add icons to various menu items create new Statistics telephony group and put telephony and alike protocols in it svn path=/trunk/; revision=14098
2005-03-22From Irene Ruengeler: Bugfixes and support of chunk statistics per end point.Michael Tüxen1-58/+70
Some cleanups of the code. svn path=/trunk/; revision=13858
2005-03-10Trivial warning fixesJörg Mayer1-1/+1
svn path=/trunk/; revision=13691
2005-03-05Get rid of a redundant test.Guy Harris1-3/+0
svn path=/trunk/; revision=13604
2005-02-27few fixes to The SCTP associations dialogLuis Ontanon1-4/+23
- do not call main_filter_packets() with a null dfilter string - fix two leaks svn path=/trunk/; revision=13531
2005-02-04huge cleanup of capture file API (functions in file.c/file.h).Ulf Lamping1-1/+1
This includes: all functions in file.h now have a cf_ prefix, will have doxygen tags, will have the capture_file *cf as the first parameter and I tried to generalize the return values for non trivial functions. Hopefully, I didn't introduced any new bugs, as I had to change a lot of files... svn path=/trunk/; revision=13289
2004-12-10Get rid of C++/C99-style comments - not all C compilers accept them.Guy Harris1-1/+1
Fix some indentation. svn path=/trunk/; revision=12710
2004-09-07Set svn:eol-style to native to keep line endings canonicalized.Guy Harris1-1/+1
Set svn:keywords to Id to expand RCS IDs. svn path=/trunk/; revision=11931
2004-09-07Added graphical SCTP analysis implemented by Irene Ruengeler.Michael Tüxen1-0/+590
svn path=/trunk/; revision=11920