aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/voip_calls_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2012-01-15Move gtk to ui/gtk.Jörg Mayer1-888/+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-14/+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-09-13Use Frame_data also in graph_analysis_item_t, this should ultimatelyAnders Broman1-1/+1
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 Broman1-4/+4
rather than making copies. Move a structure only used internaly from voip_calls.h to .c svn path=/trunk/; revision=38982
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-21Fix almost all accesses to ->windowJörg Mayer1-1/+2
svn path=/trunk/; revision=38151
2011-07-14Fix some compiler errors with -DGTK_DISABLE_DEPRECATEDJörg Mayer1-0/+8
svn path=/trunk/; revision=38006
2011-07-13Fix more tooltips fixes.Anders Broman1-7/+6
svn path=/trunk/; revision=37996
2011-07-11Remove a lot of instances of GTK_CHECK_VERSION. Clean up whitespace in aGerald Combs1-6/+0
couple of places. svn path=/trunk/; revision=37969
2011-05-10More GUIManager stuff.Anders Broman1-14/+1
svn path=/trunk/; revision=37035
2011-05-03Do some prep work on GUIManager code, if you enable it it will break as the ↵Anders Broman1-0/+24
menus.c changes are not commited. svn path=/trunk/; revision=36977
2010-10-09Fix menu entry.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=34447
2010-09-22Fix for bug 5172:Jaap Keuter1-1/+1
Properly retrieve the H.245 endpoint IP address. svn path=/trunk/; revision=34184
2010-09-011.4 version does not display the t.38 graph.Anders Broman1-0/+2
(init/remove tap_listener missing) svn path=/trunk/; revision=34038
2010-08-30Remove some unnecessary includes: a lot of things don't need globals.h and ↵Jeff Morriss1-2/+1
register.h svn path=/trunk/; revision=34017
2010-07-22Rework code so start-time, end-time, & packets columns sort properly and are ↵Bill Meier1-83/+61
right-justified; Remove some redundant code; Widen the VOIP calls window slightly so all columns are displayed initially; Minor whitespace cleanup. svn path=/trunk/; revision=33617
2010-04-06clear the store list before inserting all rawsTomas Kukosa1-0/+1
svn path=/trunk/; revision=32397
2010-03-21Fix some gcc -Wshadow warnings.Bill Meier1-37/+37
svn path=/trunk/; revision=32261
2010-03-19Squelch a compiler warning.Guy Harris1-1/+2
svn path=/trunk/; revision=32249
2010-03-19Replace GtkCList by GtkTreeView.Jaap Keuter1-726/+450
svn path=/trunk/; revision=32248
2010-03-03Remove one too many columns, causing havoc on display and sorting.Jaap Keuter1-1/+0
svn path=/trunk/; revision=32100
2010-03-03Allow for other time presentations.Jaap Keuter1-4/+4
svn path=/trunk/; revision=32099
2010-02-19Get rid of C++-style comments (even inside "#if 0"/"#endif", the APIGuy Harris1-55/+57
checks fail). Clean up indentation. svn path=/trunk/; revision=31926
2010-02-19Commit #if 0'd out code:Anders Broman1-10/+203
"Start of converting the clist to a gtk_list_store" If some one whant's to continue on it... svn path=/trunk/; revision=31925
2010-02-01Fix some gcc -Wshadow warnings.Bill Meier1-26/+26
svn path=/trunk/; revision=31756
2010-01-19Use more unique names for certain enum constants.Bill Meier1-2/+2
(enum constant names are part of the global name space). (Fixes at least one gcc -Wshadow warning). svn path=/trunk/; revision=31572
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-11-16GTK_STOCK_SELECT_ALL is gtk 2.10.Anders Broman1-2/+5
Fix indentation. svn path=/trunk/; revision=30968
2009-11-15From Alejandro Vaquero:Anders Broman1-6/+12
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-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-22Change window_new() to dlg_window_new() and destroy the window with the top ↵Anders Broman1-1/+2
level window. svn path=/trunk/; revision=28810
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-16Fix the last of the Win64 problems in the gtk directory.Gerald Combs1-2/+2
svn path=/trunk/; revision=28063
2009-03-11From Carlos Mendioroz:Anders Broman1-0/+3
IAX2 calls statistics window ala RTP. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3217 svn path=/trunk/; revision=27696
2009-02-26gtk_label_set -> gtk_label_set_textAnders Broman1-6/+6
"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-01-30From Carlos Mendioroz:Jaap Keuter1-0/+3
Enhanced the skinny dissector to expose a tap, and added SKINNY call control protocol support to gtk/call_voip to show those calls. svn path=/trunk/; revision=27332
2008-11-25MGCP is no longer a plugin.Jaap Keuter1-7/+2
svn path=/trunk/; revision=26839
2008-10-13Bring the windows to front when rescanning of packets are done.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=26439
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-05-06Fix some of the Errors/warnings detected by checkapi.Anders Broman1-8/+8
svn path=/trunk/; revision=25244
2008-05-01Force foreground when background is forced in RTP analysis and VOIP calls.Stig Bjørlykke1-2/+5
svn path=/trunk/; revision=25212
2008-04-13sort #includes by directoriesUlf Lamping1-20/+20
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-10/+10
svn path=/trunk/; revision=24918
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
2008-04-05Remove more GTK1 code and related xpm files.Stephen Fisher1-18/+0
svn path=/trunk/; revision=24795
2008-01-09To ease troubleshooting of bug #2017 and for code clarity in the future, useStephen Fisher1-6/+6
two different variables for types voip_rtp_stream_info_t (strinfo) and voip_calls_info_t (callsinfo) instead of using strinfo for both. svn path=/trunk/; revision=24038
2007-10-24Add missing case.Martin Mathieson1-2/+3
svn path=/trunk/; revision=23264