Added wxPGProperty::Enable() for conveniency. Refactored related code and improved related documentation.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65216 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1398,42 +1398,6 @@ bool wxPropertyGridPageState::DoHideProperty( wxPGProperty* p, bool hide, int fl
|
||||
return true;
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
|
||||
bool wxPropertyGridPageState::DoEnableProperty( wxPGProperty* p, bool enable )
|
||||
{
|
||||
if ( p )
|
||||
{
|
||||
if ( enable )
|
||||
{
|
||||
if ( !(p->m_flags & wxPG_PROP_DISABLED) )
|
||||
return false;
|
||||
|
||||
// Enabling
|
||||
|
||||
p->m_flags &= ~(wxPG_PROP_DISABLED);
|
||||
}
|
||||
else
|
||||
{
|
||||
if ( p->m_flags & wxPG_PROP_DISABLED )
|
||||
return false;
|
||||
|
||||
// Disabling
|
||||
|
||||
p->m_flags |= wxPG_PROP_DISABLED;
|
||||
|
||||
}
|
||||
|
||||
// Apply same to sub-properties as well
|
||||
unsigned int i;
|
||||
for ( i = 0; i < p->GetChildCount(); i++ )
|
||||
DoEnableProperty( p->Item(i), enable );
|
||||
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
// wxPropertyGridPageState wxVariant related routines
|
||||
// -----------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user