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:
@@ -487,6 +487,25 @@ bool wxProgressDialog::Show( bool show )
|
||||
return wxDialog::Show(show);
|
||||
}
|
||||
|
||||
int wxProgressDialog::GetValue() const
|
||||
{
|
||||
if (m_gauge)
|
||||
return m_gauge->GetValue();
|
||||
return wxNOT_FOUND;
|
||||
}
|
||||
|
||||
int wxProgressDialog::GetRange() const
|
||||
{
|
||||
if (m_gauge)
|
||||
return m_gauge->GetRange();
|
||||
return wxNOT_FOUND;
|
||||
}
|
||||
|
||||
wxString wxProgressDialog::GetMessage() const
|
||||
{
|
||||
return m_msg->GetLabel();
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// event handlers
|
||||
// ----------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user