X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d3c7fc996a73e9f6a83067bc28a3c5581a3fee65..b6fd0b424573e09ae7e83a28b225bbba008157b7:/include/wx/palmos/progdlg.h diff --git a/include/wx/palmos/progdlg.h b/include/wx/palmos/progdlg.h index fa897d81f3..f37db2e9e0 100644 --- a/include/wx/palmos/progdlg.h +++ b/include/wx/palmos/progdlg.h @@ -2,7 +2,7 @@ // Name: wx/palmos/progdlg.h // Purpose: wxProgressDialog interface // Author: Wlodzimierz ABX Skiba -// Modified by: +// Modified by: // Created: 29.12.2004 // RCS-ID: $Id$ // Copyright: (c) Wlodzimierz Skiba @@ -18,7 +18,7 @@ #include "wx/dialog.h" -class WXDLLEXPORT wxProgressDialog : public wxDialog +class WXDLLIMPEXP_CORE wxProgressDialog : public wxDialog { DECLARE_DYNAMIC_CLASS(wxProgressDialog) public: @@ -35,6 +35,10 @@ public: Boolean Callback(/*PrgCallbackData */ void *data); + int GetValue() const { return m_cur; } + int GetRange() const { return m_max; } + wxString GetMessage() const { return m_msg; } + private: /*ProgressType*/ void *m_prgFrame;