/**
@class wxProgressDialog
- @wxheader{progdlg.h}
This class represents a dialog that shows a short message and a
progress bar. Optionally, it can display ABORT and SKIP buttons,
/**
Destructor. Deletes the dialog and enables all top level windows.
*/
- ~wxProgressDialog();
+ virtual ~wxProgressDialog();
/**
Works like Update() but makes the gauge control run in indeterminate mode
(if present) to "Unknown" or to @a newmsg (if it's non-empty); moves the progress
bar a bit to indicate that some progress was done.
*/
- virtual bool Pulse(const wxString& newmsg = "",
- bool* skip = NULL);
+ virtual bool Pulse(const wxString& newmsg = wxEmptyString, bool* skip = NULL);
/**
Can be used to continue with the dialog, after the user had clicked the "Abort" button.
If "Skip" button was pressed since last Update() call,
this is set to @true.
*/
- virtual bool Update(int value, const wxString& newmsg = "",
+ virtual bool Update(int value, const wxString& newmsg = wxEmptyString,
bool* skip = NULL);
};