From 356cbde59938be29004255db4e1b7413e8d9e527 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 24 Mar 2000 16:03:29 +0000 Subject: [PATCH] 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 --- include/wx/generic/treectrl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wx/generic/treectrl.h b/include/wx/generic/treectrl.h index 7d1dd7e39d..b08f4d8f5a 100644 --- a/include/wx/generic/treectrl.h +++ b/include/wx/generic/treectrl.h @@ -312,6 +312,8 @@ public: // expand this 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 void Collapse(const wxTreeItemId& item); // collapse the item and remove all children