aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/capture_info_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2004-01-21implemented dlg_button_row_new to get a standard function forUlf Lamping1-9/+8
layouting the dialog buttons, and use it where appropriate. This will help us with the GTK1/2 conflict on button layouts and will also result in a more consistent look of the dialogs at all. svn path=/trunk/; revision=9771
2004-01-21use stock buttons whereever possible,Ulf Lamping1-6/+2
added some ethereal specific stock icons svn path=/trunk/; revision=9763
2004-01-05removed some MSVC warnings (level 3)Ulf Lamping1-2/+2
svn path=/trunk/; revision=9560
2003-12-21removed some MSVC warnings (moved pcap.h before glib.h)Ulf Lamping1-3/+2
svn path=/trunk/; revision=9393
2003-12-16Use gtk compatibility macros (from compat_macros.h) instead of some gtk+Olivier Abad1-5/+5
v1.2 functions which are deprecated in gtk+ v2. Update OBJECT_SET_DATA macros to cast "data" to (gpointer). svn path=/trunk/; revision=9296
2003-11-28use dlg_window_new instead of gtk_window_newUlf Lamping1-3/+2
svn path=/trunk/; revision=9112
2003-11-28label changed from "Portions" to "% of total" as suggested by GuyUlf Lamping1-6/+6
svn path=/trunk/; revision=9111
2003-11-18removed MSVC warningsUlf Lamping1-3/+2
svn path=/trunk/; revision=8996
2003-11-17Not all compilers allow array/structure/union members of automaticGuy Harris1-20/+26
variables to be initialized to non-constant values (C89 says that "All the expressions in an initializer for an object that has static storage duration or in an initializer list for an object that has aggregate or union type shall be constant expressions"; presumably the intent of the former was to avoid run-time initialization and of the latter was to let the initialization be done by copying from a compile-time-created blob of memory), so we have to initialize "info->counts" by hand. svn path=/trunk/; revision=8984
2003-11-17"capture()" takes a "struct pcap_stat *" argument, so you need toGuy Harris1-2/+3
include <pcap.h> before including "capture.h". Include "dlg_utils.h" to declare "dlg_set_cancel()". svn path=/trunk/; revision=8981
2003-11-15seperated capture dialog from capture.c and put into new gtk/capture_info_dlg.c,Ulf Lamping1-0/+279
added some tiny bars, that will indicate the percentage, added ESC key handler and use of GTK_STOCK button svn path=/trunk/; revision=8970