Added wxDataViewCtrl::IsExpanded(item)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57374 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2008-12-16 21:23:55 +00:00
parent 4ce846b17c
commit 739a839903
8 changed files with 76 additions and 16 deletions

View File

@@ -946,6 +946,13 @@ public:
virtual void HitTest(const wxPoint& point, wxDataViewItem& item,
wxDataViewColumn*& col) const;
/**
Return @true if the item is expanded.
Currently not supported by OS X.
*/
virtual bool IsExpanded(const wxDataViewItem& item) const;
/**
Return @true if the item is selected.
*/
@@ -1532,7 +1539,7 @@ enum wxDataViewColumnFlags
@class wxDataViewColumn
This class represents a column in a wxDataViewCtrl.
One wxDataViewColumn is bound to one column in the data model, to which the
One wxDataViewColumn is bound to one column in the data model to which the
wxDataViewCtrl has been associated.
An instance of wxDataViewRenderer is used by this class to render its data.