Updates to reflect recent changes in wxWindows

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25730 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-02-11 00:21:37 +00:00
parent 7309deeafc
commit b159c5c481
5 changed files with 57 additions and 12 deletions

View File

@@ -642,12 +642,19 @@ public:
// remove the selection from currently selected item (if any)
void Unselect();
// remove the selection from the given one (multiselect mode only)
void UnselectItem(const wxTreeItemId& item);
// unselect all items (only makes sense for multiple selection control)
void UnselectAll();
// select this item
void SelectItem(const wxTreeItemId& item);
void SelectItem(const wxTreeItemId& item, bool select = True);
// toggle the item selection
void ToggleItemSelection(const wxTreeItemId& item);
// make sure this item is visible (expanding the parent item and/or
// scrolling to this item if necessary)
void EnsureVisible(const wxTreeItemId& item);