]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/progdlg.h
Fix links to wxArtClient and wxArtID in the generated documentation.
[wxWidgets.git] / interface / wx / progdlg.h
index 9933e795a1896103af80f8891f9436534812e411..221f1edaf1e0601dbe817cd925bd919d0ee2344f 100644 (file)
@@ -128,6 +128,41 @@ public:
     */
     void Resume();
 
+    /**
+        Changes the maximum value of the progress meter given in the constructor.
+        This function can only be called (with a positive value) if the value passed 
+        in the constructor was positive.
+
+        @since 2.9.1
+    */
+    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.