Minor tweaks to get up to date with wx CVS

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44173 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2007-01-08 23:10:39 +00:00
parent 070a1e7e3b
commit 1ceb4f4d19
16 changed files with 380 additions and 0 deletions

View File

@@ -516,6 +516,9 @@ public:
// is item text in bold font?
bool IsBold(const wxTreeItemId& item) const;
// is the control empty?
bool IsEmpty() const;
// if 'recursively' is False, only immediate children count, otherwise
// the returned number is the number of all items in this branch
@@ -673,6 +676,12 @@ public:
// collapse the item without removing its children
void Collapse(const wxTreeItemId& item);
// collapse the item and all its childs and thats childs
void CollapseAllChildren(const wxTreeItemId& item);
// collapse all items
void CollapseAll();
// collapse the item and remove all children
void CollapseAndReset(const wxTreeItemId& item);