X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ed1288eef07896f7dc5382e2658d720d5420a6d1..71a0f42d2a5606098e3e7abbb50b9bb1cd718f9e:/interface/wx/progdlg.h diff --git a/interface/wx/progdlg.h b/interface/wx/progdlg.h index 7847a230c2..ac23bb7fff 100644 --- a/interface/wx/progdlg.h +++ b/interface/wx/progdlg.h @@ -3,7 +3,7 @@ // Purpose: interface of wxProgressDialog // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -137,6 +137,32 @@ public: */ void SetRange(int maximum); + + /** + Returns true if the "Cancel" button was pressed. + + Normally a Cancel button press is indicated by Update() returning + @false but sometimes it may be more convenient to check if the dialog + was cancelled from elsewhere in the code and this function allows to + do it. + + It always returns @false if the Cancel button is not shown at all. + + @since 2.9.1 + */ + bool WasCancelled() const; + + /** + Returns true if the "Skip" button was pressed. + + This is similar to WasCancelled() but returns @true if the "Skip" + button was pressed, not the "Cancel" one. + + @since 2.9.1 + */ + bool WasSkipped() const; + + /** Updates the dialog, setting the progress bar to the new value and updating the message if new one is specified.