add GetValue,GetRange and GetMessage helpers
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57075 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -61,13 +61,17 @@ public:
|
||||
// Must provide overload to avoid hiding it (and warnings about it)
|
||||
virtual void Update() { wxDialog::Update(); }
|
||||
|
||||
virtual bool Show( bool show = true );
|
||||
|
||||
/* Can be called to continue after the cancel button has been pressed, but
|
||||
the program decided to continue the operation (e.g., user didn't
|
||||
confirm it)
|
||||
*/
|
||||
void Resume();
|
||||
|
||||
virtual bool Show( bool show = true );
|
||||
int GetValue() const;
|
||||
int GetRange() const;
|
||||
wxString GetMessage() const;
|
||||
|
||||
protected:
|
||||
// callback for optional abort button
|
||||
@@ -101,7 +105,7 @@ private:
|
||||
void DisableSkip() { EnableSkip(false); }
|
||||
void DisableAbort() { EnableAbort(false); }
|
||||
|
||||
// the status bar
|
||||
// the widget displaying current status (may be NULL)
|
||||
wxGauge *m_gauge;
|
||||
// the message displayed
|
||||
wxStaticText *m_msg;
|
||||
|
@@ -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
|
||||
@@ -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;
|
||||
|
Reference in New Issue
Block a user