+ 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;
+
+ /**
+ Like Update() but makes the gauge control run in indeterminate mode.
+
+ In indeterminate mode the remaining and the estimated time labels (if
+ present) are set to to "Unknown" or to @a newmsg (if it's non-empty).
+ Each call to this function moves the progress bar a bit to indicate
+ that some progress was done.
+
+ @see wxGauge::Pulse(), Update()
+ */
+ virtual bool Pulse(const wxString& newmsg = wxEmptyString, bool* skip = NULL);