]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/progdlg.h
Add wxLOCALE_DONT_LOAD_DEFAULT (=0) for clarity.
[wxWidgets.git] / include / wx / palmos / progdlg.h
index fa897d81f3a21c7cb261876243a88cb059d33466..d3f4c0ca147e1d620def7c50b0c8c0ea5805721a 100644 (file)
@@ -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;
@@ -46,7 +50,7 @@ private:
     // Virtual function hiding supression
     virtual void Update() { wxDialog::Update(); }
 
-    DECLARE_NO_COPY_CLASS(wxProgressDialog)
+    wxDECLARE_NO_COPY_CLASS(wxProgressDialog);
 };
 
 #endif // wxUSE_PROGRESSDLG