+ /**
+ Returns the last value passed to the Update() function or
+ @c wxNOT_FOUND if the dialog has no progress bar.
+
+ @since 2.9.0
+ */
+ int GetValue() const;
+
+ /**
+ Returns the maximum value of the progress meter, as passed to
+ the constructor or @c wxNOT_FOUND if the dialog has no progress bar.
+
+ @since 2.9.0
+ */
+ int GetRange() const;
+
+ /**
+ Returns the last message passed to the Update() function;
+ if you always passed wxEmptyString to Update() then the message
+ set through the constructor is returned.
+
+ @since 2.9.0
+ */
+ wxString GetMessage() const;
+