aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/rtp_stream_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2012-01-15Move gtk to ui/gtk.Jörg Mayer1-1140/+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-9/+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-31COPY as CSV to clipboard from RTP stream analysis only copies 1st line many ↵Anders Broman1-0/+1
times. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6279 svn path=/trunk/; revision=38823
2011-08-19Add one more menu item.Anders Broman1-0/+7
svn path=/trunk/; revision=38622
2011-08-04Replace almost all uses of GtkObject (which no longer existsJörg Mayer1-1/+1
in GTK3) by GObject (which does). These were the trivial cases, the two remaining uses in packet_win.c are left for someone who understands the code. svn path=/trunk/; revision=38344
2011-07-14Fix some compiler errors with -DGTK_DISABLE_DEPRECATEDJörg Mayer1-0/+4
svn path=/trunk/; revision=38006
2011-07-13Fix more tooltips fixes.Anders Broman1-10/+9
svn path=/trunk/; revision=37996
2011-07-11Remove a lot of instances of GTK_CHECK_VERSION. Clean up whitespace in aGerald Combs1-6/+2
couple of places. svn path=/trunk/; revision=37969
2011-06-05Fix memleaks and sigsegv when coping to clipboard RTP Streams.Jakub Zawadzki1-2/+9
svn path=/trunk/; revision=37554
2011-06-05wrong sort of column “Packets” in “RTP Streams” window.Anders Broman1-9/+9
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5988 svn path=/trunk/; revision=37550
2010-12-22Fix for bug 5513:Jaap Keuter1-6/+6
Prepare filter must take Fwd and Rev part in combined filter. svn path=/trunk/; revision=35247
2010-11-17Quote all fields when exporting to CSV. Fixes bug 2811.Chris Maynard1-2/+2
svn path=/trunk/; revision=34920
2010-11-08Use value_string_ext for RTP payload types.Anders Broman1-1/+1
svn path=/trunk/; revision=34804
2010-04-30Fix a gcc -Wshadow warning.Bill Meier1-12/+12
svn path=/trunk/; revision=32613
2010-04-28Replace GtkCList by GtkTreeView.Jaap Keuter1-312/+515
svn path=/trunk/; revision=32589
2010-01-29Fix various gcc -Wshadow warnings.Bill Meier1-21/+21
svn path=/trunk/; revision=31737
2009-11-15From Alejandro Vaquero:Anders Broman1-2/+3
Add RTP player to "RTP Stream Analysis" and makeover of VoIP flow https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4240 svn path=/trunk/; revision=30967
2009-11-10Removed some unused variables and unused assignments.Stig Bjørlykke1-1/+0
svn path=/trunk/; revision=30918
2009-09-06Rename address_to_str() to ep_address_to_str() because:Kovarththanan Rajaratnam1-12/+12
1) This indicates that the string has ephemeral lifetime 2) More consistent with its existing seasonal counterpart, se_address_to_str(). svn path=/trunk/; revision=29747
2009-08-29Fix potential crash due to NULL dereference.Bill Meier1-10/+10
(Found by clang scan-build) svn path=/trunk/; revision=29619
2009-08-26(FWIW) One step towards including stdio.h & stdlib.h only when req'd.Bill Meier1-0/+2
svn path=/trunk/; revision=29568
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-03Unit is now ms.Anders Broman1-3/+3
svn path=/trunk/; revision=28629
2009-06-02rtp_stream_dlg: rework dtp_stream "save as" slightly:Bill Meier1-16/+61
- Prevent "dead" save-as window if error opening/writing file or if a directory is entered as the filename; Work-around is to always kill save-as window whether success or an error causing alert-box popup; - Enable "check for file overwrite" (if GTK 2.8 or greater); - Fix some memory leaks. svn path=/trunk/; revision=28597
2009-04-21Turn on -Wshorten-64-to-32 by default, and fix some issues that turnedGuy Harris1-3/+3
up (99 44/100% of which were assignments of double-precision floating-point constants to floats). Hopefully this will catch at least some P64 issues on UN*X. svn path=/trunk/; revision=28108
2009-04-16Fix the last of the Win64 problems in the gtk directory.Gerald Combs1-1/+1
svn path=/trunk/; revision=28063
2009-03-19As suggested by Jakub Zawadzki: actually use sizeof(...) rather than a ↵Bill Meier1-5/+5
numeric constant in various places; svn path=/trunk/; revision=27800
2009-02-26gtk_label_set -> gtk_label_set_textAnders Broman1-1/+1
"gtk_label_set is deprecated and should not be used in newly-written code. Aliases gtk_label_set_text()." svn path=/trunk/; revision=27556
2009-02-22Remove unused(?) code.Anders Broman1-1/+2
svn path=/trunk/; revision=27513
2009-02-22Use gtk_file_chooser_dialog_new().Anders Broman1-19/+13
svn path=/trunk/; revision=27512
2008-12-20Fix some typos and spellingBill Meier1-1/+1
svn path=/trunk/; revision=27070
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-19/+16
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-15/+15
svn path=/trunk/; revision=24918
2008-04-11replace all appearances of BUTTON_NEW_FROM_STOCK with GTK2's ↵Ulf Lamping1-4/+4
gtk_button_new_from_stock svn path=/trunk/; revision=24904
2008-04-07remove GTK1 codeUlf Lamping1-8/+0
svn path=/trunk/; revision=24823
2008-03-01Include epan/strutil.h for gtk-1.2 builds.Michael Tüxen1-0/+1
svn path=/trunk/; revision=24513
2008-02-29Next attempt to cleanup some string functions, including:Stig Bjørlykke1-4/+4
strncpy -> g_strlcpy, strncat -> g_strlcat svn path=/trunk/; revision=24504
2008-02-01Rewrote some prohibited APIs in gtk/ (sprintf, strcpy, strcat).Stig Bjørlykke1-5/+5
If we get some truncated strings we probably overwrote some buffers... svn path=/trunk/; revision=24239
2007-05-31From Lars Ruoff:Stephen Fisher1-6/+6
find attached several trivial diffs for viewing RTP SSRC values in Hex rather than Dec at various places in the UI. Also includes change from BASE_DEC to BASE_HEX_DEC for corresponding RTP and RTCP dissector header fields. svn path=/trunk/; revision=22017
2007-04-22move some headers so that the compile works on gtk1Ronnie Sahlberg1-2/+2
svn path=/trunk/; revision=21505
2007-04-10Add the name of the dynamic payload type to the stream dialouge if avalable.Anders Broman1-2/+11
svn path=/trunk/; revision=21375
2006-05-22Get rid of a bunch of "Ethereal"s and "ethereal"s in comments, GUIGuy Harris1-3/+3
strings, and function names. svn path=/trunk/; revision=18205
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-04-30Move the file selection dialog routines to file_dlg.c, and give it aGuy Harris1-0/+1
header file. #if 0 out some includes; if none of the builds have a problem with that, I'll remove them. svn path=/trunk/; revision=18036
2005-09-17Move a pile of protocol-related headers from the top-level sourceGuy Harris1-1/+1
directory to the epan directory. Some of them should perhaps ultimately be moved to epan/dissectors, if they pertain only to stuff exported by a particular dissector. Fix Gerald's e-mail address in files we're moving. svn path=/trunk/; revision=15844
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-21Have "register_dfilter_stat()" add "..." to the menu item, as all menuGuy Harris1-1/+1
items registered with it pop up a dialog box before displaying the stat. Don't pass a name with "..." to it. Put "..." into other menu items that pop up a dialog box before displaying the stat; remove "..." from other menu items that don't. svn path=/trunk/; revision=15495