aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/capture_info_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2004-12-29Don't use a global capture_opts in the capturing engine (this isn't a good ↵Ulf Lamping1-1/+2
idea). Do some more "housekeeping" in the capturing part. Hopefully the unspecified forward declaration of capture_options_t in main.h is portable, but buildbot will tell me. This way I need the internals of that struct only at the places I really use it. svn path=/trunk/; revision=12853
2004-12-02From Nathan Jennings: add a preference that supplies a prefix for windowGuy Harris1-1/+6
titles. svn path=/trunk/; revision=12657
2004-10-30split capture_loop from capture.c, some more code cleanupUlf Lamping1-4/+4
svn path=/trunk/; revision=12451
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-05-27added a small commentUlf Lamping1-1/+2
svn path=/trunk/; revision=11019
2004-05-26more code cleanup from dialog things:Ulf Lamping1-17/+7
changed window_xy (dialog) function calling in a lot of gtk files cleanup of file selection code cleanup in dlg_utils/file_dlg/ui_util Please report any problems!!! svn path=/trunk/; revision=11003
2004-04-14two memory leaks removedUlf Lamping1-1/+2
svn path=/trunk/; revision=10599
2004-04-13From Jon Oberheide: Add interface name to the capture and ethereal windowMichael Tüxen1-3/+7
while capturing. svn path=/trunk/; revision=10594
2004-03-13replaced sprintf / snprintf by g_snprintf,Ulf Lamping1-3/+3
various other string related changes svn path=/trunk/; revision=10373
2004-02-21rework of capture.c: better seperation of sync and capture pipe by usingUlf Lamping1-7/+7
explicit names and seperated functionality of do_capture(), but no functional change! svn path=/trunk/; revision=10168
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