aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/file_dlg.h
AgeCommit message (Collapse)AuthorFilesLines
2012-01-15Move gtk to ui/gtk.Jörg Mayer1-115/+0
This looses the last checkin to gtk, will add this manually back. svn path=/trunk/; revision=40518
2010-03-02Squelch some compiler warnings, clean up indentation, clean up aGuy Harris1-1/+1
comment. svn path=/trunk/; revision=32076
2008-04-12various code cleanupUlf Lamping1-1/+1
svn path=/trunk/; revision=24964
2008-04-11Clean up a few references to OBJECT_[GS]_DATA macrosBill Meier1-1/+1
svn path=/trunk/; revision=24901
2007-02-28Sync up my changes so far to the content list (now called objectStephen Fisher1-1/+2
list) feature for http traffic. It's now available under File-> Export->Objects->HTTP. More changes to come.. svn path=/trunk/; revision=20951
2006-05-22Get rid of a bunch of "Ethereal"s and "ethereal"s in comments, GUIGuy Harris1-1/+1
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/+114
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-120/+0
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
2006-02-11In "Save As", support only file types we can write to; that simplifiesGuy Harris1-1/+1
the logic, making it easier to get it right (fewer interactions between components of the dialog - the file type doesn't affect whether we can save some but not all packets). It also means we don't offer a file type for saving, only to take it away if you choose anything other than saving all packets. If the capture file is a temporary file from a capture done in the current Ethereal session, it's libpcap format, which we can write to, so you would be able to save it. If it's a saved file we read in, saving the file in its entirety in its own format is just copying the file, and it's not clear supporting that adds enough useful functionality to justify the extra complication. Fix "range_update_dynamics()" to update all the rows of the range button/count table properly (make the button active iff there's a non-zero count in the currently-selected column, make a count active iff the column is selected), to select the "Captured" column if the count of displayed packets goes to zero, and to select the "Save all packets" row if the count of packets in the currently-selected row and column goes to zero. (XXX - we should perhaps do that with the "user-defined range" counts as well, which would involve updating the counts on every change to the range field.) svn path=/trunk/; revision=17251
2005-12-05move some GTK only function declarations from ui_util.h to the appropriate ↵Ulf Lamping1-0/+4
header files in the gtk dir, as these declarations are obsolete and only confuses (at least me) svn path=/trunk/; revision=16687
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-06-17add Merge functionality to Ethereal in an experimental state.Ulf Lamping1-1/+9
Copied and sligthly modified merge.c from mergecap.c (needs a lot of code cleanup, though) svn path=/trunk/; revision=11171
2004-06-04add more details for doxygenUlf Lamping1-1/+2
svn path=/trunk/; revision=11110
2004-06-01add details for doxygen, various code cleanups as a result of thisUlf Lamping1-15/+64
svn path=/trunk/; revision=11052
2004-05-26more code cleanup from dialog things:Ulf Lamping1-7/+1
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-01-31Implemented rudimentary Drag and Drop support.Ulf Lamping1-1/+2
svn path=/trunk/; revision=9926
2004-01-29every GUI action, which will erease a currently unsaved capture file,Ulf Lamping1-1/+13
will now raise a dialog "Save xy before z?" with Yes/No/Cancel buttons. svn path=/trunk/; revision=9908
2003-12-01"select_file_cb()" only needs a title, not a "construct_args_t" -Guy Harris1-2/+2
"construct_args_t" is for use with filter dialogs, and the members other than the title apply only to filter dialogs. Have "select_file_cb()" actually use the title supplied to it. svn path=/trunk/; revision=9125
2003-11-30Move print_file_cb out of gtk/print_dlg.c and into gtk/file_dlg.c andRichard Sharpe1-1/+4
rename it to select_file_cb to reflect its function. While this cleans things up a bit, I am still not happy because now filter_prefs.h must be included before file_dlg.h just to get construct_args_t. svn path=/trunk/; revision=9119
2003-11-29Add an entry in the byte_view pane that allows the user to save the highlightedRichard Sharpe1-1/+4
data to a file. This allows the user to select some stuff, and analyse it with external tools, and is very useful for quickly prototying dissectors etc. This works by retrieving the info that is needed to define where the selected region is. It puts up a dialog box that asks for the file to save in. However, it is an ugly hack, because it reuses print_file_cb, while print_file_cb should be moved into file_dlg.c. It also needs to have some warning dialogs put up in error cases. Finally, it would be good to be able to select a region in the byte_view, which you can do with click and drag, and then have a menu item to save the selected bytes. svn path=/trunk/; revision=9116
2003-08-18From Richard Urwin a great enhancement to the color filter dialogue toRonnie Sahlberg1-1/+4
make it possible to import/export color filters svn path=/trunk/; revision=8188
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-4/+4
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
2001-12-06Make the "Save only marked frames" button in the "Save As..." dialog boxGuy Harris1-3/+10
sensitive only if there *are* marked frames. svn path=/trunk/; revision=4341
2000-02-12Move the declarations of the routines in "gtk/file_dlg.c" out ofGuy Harris1-0/+35
"gtk/main.h" and into a new "gtk/file_dlg.h" file. svn path=/trunk/; revision=1620