aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/capture_file_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2008-05-22Move the file utility functions from wiretap to libwsutil so thatJeff Morriss1-3/+3
libwireshark (and the plugins using those functions) do not depend on wiretap on Windows. While doing that, rename the eth_* functions to ws_*. svn path=/trunk/; revision=25354
2008-04-27Remove all GTK+ < 2.4 code and minimum version checks.Stephen Fisher1-214/+10
svn path=/trunk/; revision=25182
2008-04-15don't mark a used parameter as unusedUlf Lamping1-1/+1
svn path=/trunk/; revision=25054
2008-04-13use the ending "_win32" for every windows specific fileUlf Lamping1-1/+1
svn path=/trunk/; revision=24972
2008-04-13sort #includes by directoriesUlf Lamping1-28/+30
svn path=/trunk/; revision=24967
2008-04-12rename menu -> main_menuUlf Lamping1-1/+1
remove old (and unused and confusing) ../menu.h svn path=/trunk/; revision=24947
2008-04-12move drag_and_drop declarations into it's own fileUlf Lamping1-0/+1
svn path=/trunk/; revision=24927
2008-04-12Include "stock_icons.h" to get WIRESHARK_STOCK_DISPLAY_FILTER_ENTRY.Guy Harris1-0/+1
svn path=/trunk/; revision=24924
2008-04-12compat_macros.h is gone now!!!Ulf Lamping1-10/+12
all GTK1 compatibility code was removed, so this file can simply be dropped svn path=/trunk/; revision=24923
2008-04-11Wrap the callback function pointer for g_signal_connect() inGuy Harris1-28/+47
G_CALLBACK(), to suppress compiler warnings (that's what the old SIGNAL_CONNECT macro did). svn path=/trunk/; revision=24915
2008-04-11first round to replace SIGNAL_CONNECT with g_signal_connectUlf Lamping1-29/+29
This requires some casts to be added and I just don't want to add casts at all possible places. So I compile and only add casts where the (MSVC) compiler has a hard time. Unfortunately this won't find any problems in Linux/Unix only code - I'll keep an eye on the buildbot and try to fix things as I'm going on ... svn path=/trunk/; revision=24912
2008-04-11replace WIDGET_SET_SIZE with gtk_widget_set_size_requestUlf Lamping1-3/+3
svn path=/trunk/; revision=24910
2008-04-11replace RADIO_BUTTON_NEW_WITH_MNEMONIC with ↵Ulf Lamping1-3/+4
gtk_radio_button_new_with_mnemonic_from_widget svn path=/trunk/; revision=24908
2008-04-11replace CHECK_BUTTON_NEW_WITH_MNEMONIC with gtk_check_button_new_with_mnemonicUlf Lamping1-3/+3
svn path=/trunk/; revision=24905
2008-04-11replace all appearances of BUTTON_NEW_FROM_STOCK with GTK2's ↵Ulf Lamping1-2/+2
gtk_button_new_from_stock svn path=/trunk/; revision=24904
2008-04-11OBJECT_..._DATA --> g_object_..._dataBill Meier1-60/+60
svn path=/trunk/; revision=24898
2008-04-09some minor GTK1 related code fixesUlf Lamping1-1/+1
svn path=/trunk/; revision=24873
2008-04-06replace confusing #if checking for GTK2.4.0 (the GTK version when ↵Ulf Lamping1-44/+44
gtk_file_chooser was "invented") by #if GTK_CHECK_VERSION(2,4,0) svn path=/trunk/; revision=24811
2008-04-06remove GTK1 codeUlf Lamping1-63/+17
svn path=/trunk/; revision=24810
2008-03-27Add tooltips for the filter button and text entry in the open and mergeGerald Combs1-4/+10
dialogs. svn path=/trunk/; revision=24735
2008-01-26Also destroy the window when failure to export/import color filters.Stig Bjørlykke1-1/+14
svn path=/trunk/; revision=24204
2008-01-26Destroy the open window after open failure to avoid having an unusableStig Bjørlykke1-0/+14
open dialog when using GTK >= 2.4. This fixes bug 1986. svn path=/trunk/; revision=24203
2008-01-26Destroy the save window after canceling a save to an existing file, soStig Bjørlykke1-0/+9
the user is able to save again without having a hidden save window which will not open. Older GTK versions will show the hidden window after failure. This fixes bug 1896. svn path=/trunk/; revision=24202
2007-12-08Revert SVN #23728 since change (to fix a Windows issue) is in code not used ↵Bill Meier1-8/+1
on Windows and thus does not actually fix anything. See Bug #2055 for further info. svn path=/trunk/; revision=23809
2007-12-04If we're using the native Windows file dialog, don't bother to see if the Gerald Combs1-1/+8
file exists before we try to save it. The Windows file dialog code does that for us. svn path=/trunk/; revision=23728
2007-11-26s/stat/eth_stat/ and s/unlink/eth_unlink/ to avoid non-ASCII filename ↵Jeff Morriss1-1/+2
problems on Windows. svn path=/trunk/; revision=23605
2007-07-25from Florent DROUIN:Luis Ontanon1-8/+17
I did load an k12 file (.rf5), and want to save the selected frames in a new file. I got the error "Wireshark can't save this capture in that format" I think this is due to this correction: http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=22214 I have got a patch to force the type of file to libpcap, only if no other format is available. It should solve both problems. svn path=/trunk/; revision=22403
2007-06-27Fix a bug where you couldn't save individual packets from a file type thatStephen Fisher1-1/+7
Wireshark doesn't support writing to. The default in the drop-down menu was libpcap, but since gtk_option_menu_set_history() doesn't send the activate signal we set up earlier, you would have to manually click on the drop-down and reselect libpcap for it to work. Now it works as expected. svn path=/trunk/; revision=22214
2007-05-29Use G_GINT64_MODIFIER, rather than the PRI[douxX]64 macros, for GLibGuy Harris1-1/+1
routines and routines using those routines. GLib might use different modifiers for 64-bit quantities than the platform's C library does. svn path=/trunk/; revision=21990
2007-05-16Fix bug #1600: Merge feature from File menu does'nt do what it shouldStephen Fisher1-4/+4
(append vs prepend) svn path=/trunk/; revision=21807
2007-04-03Fix warnings on Linux/gcc 4.1.1Stephen Fisher1-1/+1
svn path=/trunk/; revision=21330
2007-01-22Fix various compiler warningsStephen Fisher1-1/+1
svn path=/trunk/; revision=20522
2006-11-05change all file offsets from long to gint64 so we can - theoretically - ↵Ulf Lamping1-1/+1
handle files > 2GB correct. Please distclean Win32 builds! svn path=/trunk/; revision=19814
2006-10-03the whole ARGUMENT_CL mimic isn't required any longer - remove it. This ↵Ulf Lamping1-10/+1
should fix compile problems under Unix. svn path=/trunk/; revision=19416
2006-10-03Implement a real "Cancel" button for the coloring rules dialog - this was a ↵Ulf Lamping1-14/+16
hard one! It seems to be working without bugs and as designed now. As this was a huge internal change, new bugs are very probable - please report. The implementation isn't still perfect, a new dialog internal list could possibly be removed again. However, I want to check in at this condition, just in case I make things worse - again. svn path=/trunk/; revision=19413
2006-10-02missing mark -> select changesUlf Lamping1-25/+25
svn path=/trunk/; revision=19400
2006-08-23fix #927: Win32: delete an existing file, if the user want's to overwrite a ↵Ulf Lamping1-0/+4
file and confirmed this already svn path=/trunk/; revision=19008
2006-05-28Ethereal->WiresharkAnders Broman1-2/+2
svn path=/trunk/; revision=18232
2006-05-22Get rid of a bunch of "Ethereal"s and "ethereal"s in comments, GUIGuy Harris1-7/+7
strings, and function names. svn path=/trunk/; revision=18205
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-04-30We use stuff from dlg_utils.h.Guy Harris1-2/+0
svn path=/trunk/; revision=18038
2006-04-30Move the file selection dialog routines to file_dlg.c, and give it aGuy Harris1-0/+3
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
2006-04-29Most of the stuff in file_dlg.c is specific to capture files, so renameGuy Harris1-0/+1898
it to capture_file_dlg.c, and rename its header file. We might want to move the generic file dialog stuff to a file_dlg.c file (it's currently in dlg_utils.c), and move the non-capture-file dialog stuff in capture_file_dlg.c to another file. svn path=/trunk/; revision=18034