Correct wxDataViewCtrl::IsExpanded and add test for it

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57406 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2008-12-17 22:26:40 +00:00
parent 5a9379d7b0
commit 10ab6d4f65
3 changed files with 13 additions and 3 deletions

View File

@@ -1210,8 +1210,13 @@ bool wxDataViewCtrl::IsExpanded( const wxDataViewItem & item ) const
{
wxMacDataViewDataBrowserListViewControlPointer MacDataViewListCtrlPtr(dynamic_cast<wxMacDataViewDataBrowserListViewControlPointer>(m_peer));
// TODO ???
// This doesn't seem to be supported
DataBrowserItemState state = 0;
OSStatus err = ::GetDataBrowserItemState(
MacDataViewListCtrlPtr->GetControlRef(),
reinterpret_cast<DataBrowserItemID>(item.GetID()),
&state );
if ((err == 0) && (state & kDataBrowserContainerIsOpen))
return true;
}
return false;
}