added wxTreeCtrl::ExpandAll() which is now called by char handler when '*' is

pressed to expand all subitems (MSW compatible)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@6924 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-03-24 16:03:29 +00:00
parent 39d496f99f
commit 356cbde599

View File

@@ -312,6 +312,8 @@ public:
// expand this item // expand this item
void Expand(const wxTreeItemId& item); void Expand(const wxTreeItemId& item);
// expand this item and all subitems recursively
void ExpandAll(const wxTreeItemId& item);
// collapse the item without removing its children // collapse the item without removing its children
void Collapse(const wxTreeItemId& item); void Collapse(const wxTreeItemId& item);
// collapse the item and remove all children // collapse the item and remove all children