aboutsummaryrefslogtreecommitdiffstats
path: root/progress_dlg.h
AgeCommit message (Collapse)AuthorFilesLines
2006-05-21name changesahlberg1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18197 f5534014-38df-0310-8fa8-9805f1628bb7
2005-11-12Allow a progress dialog to have "Stop" or "Cancel" as the "terminateguy1-2/+9
button"; "Stop" should be used for operations that can only be stopped (meaning that what it's already done isn't undone), not cancelled (meaning that whatever it's already done *is* undone), for which "Cancel" is used. Allow the merging process to be cancelled. Clean up indentation. Update some comments. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16489 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-06Last set of char -> const char trivial warning fixes.jmayer1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15244 f5534014-38df-0310-8fa8-9805f1628bb7
2004-07-18Set the svn:eol-style property on all text files to "native", so thatguy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11400 f5534014-38df-0310-8fa8-9805f1628bb7
2004-06-04add details for doxygenulfl1-17/+32
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11109 f5534014-38df-0310-8fa8-9805f1628bb7
2004-01-21The progressbar had a parameter to specify the text of the Cancel/Stop button.ulfl1-7/+5
As this will always be a Cancel of a running operation, this parameter was removed. This makes us also able to use a stock button for this. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9774 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-28Make the "start_time" argument to "delayed_create_progress_dlg()" aguy1-2/+2
pointer to const, to emphasize that it does *not* modify the time pointed to by the argument. Make the initial delay for delayed progress bars 1/10 second rather than 1/2 second, as a 1/2 second delay is noticeable, especially when loading a file for the first time (as the main window looks a bit blank). Even at 1/10 second you can still notice it, but it's not *as* noticeable. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6118 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-28Removed trailing whitespaces from .h and .c files using thejmayer1-6/+6
winapi_cleanup tool written by Patrik Stridvall for the wine project. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6117 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-28From Ulf Lamping: extend the progress dialog box to give more progressguy1-13/+14
information. Fix the types of some variables (make the file position in "read_cap_file()" a "long", as Wiretap supports "long" offsets, and make processed-packet counts in packet-processing loops "int"s, as the total packet count in a "capture_file" structure is an "int"). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6112 f5534014-38df-0310-8fa8-9805f1628bb7
2002-07-30From Graeme Hewson:guy1-1/+13
Ethereal sometimes creates a progress dialog bar and then, if the processing is fast, quickly destroys it. The resulting "flash" can be disconcerting. This set of patches ensures a progress bar is either not created or is displayed for a minimum time. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5916 f5534014-38df-0310-8fa8-9805f1628bb7
2001-03-24Give the code that computes protocol statistics a progress dialog box,guy1-0/+61
as, on a large capture, it could take a significant amount of time. Let the user stop the computation and, if they do, don't pop up the statistics dialog box. Create a new header file declaring the routines to create, update, and destroy progress dialog boxes; those routines' APIs don't depend on GTK+, but others declared in "ui_util.h" do, and we don't want to oblige a source file to depend on GTK+ headers unless it uses a GTK+ API or an API that depends on GTK+. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3179 f5534014-38df-0310-8fa8-9805f1628bb7