]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/progdlg.h
Expand tabs
[wxWidgets.git] / include / wx / palmos / progdlg.h
index 8381b44bcff71a2831d40de7123f79058c3d98f9..5bb7e35c5df441b5dc1c94fbdfc4782a5bbd45fa 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
@@ -37,16 +37,15 @@ public:
     void Resume();
     virtual bool Show( bool show = true );
 
-    wxString GetMessage(){return m_msg;}
-    void SetMessage(wxString const &message){m_msg = message;}
+    Boolean Callback(/*PrgCallbackData */ void *data);
 
-    int GetMaxValue(){return m_max;}
-    int GetCurValue(){return m_cur;}
 private:
 
-    ProgressType *m_prgFrame;
+    /*ProgressType*/ void *m_prgFrame;
     wxString m_msg;
     int m_max,m_cur;
+    bool m_canSkip;
+    bool m_activeSkip;
 
     // Virtual function hiding supression
     virtual void Update() { wxDialog::Update(); }