+ /**
+ Returns the item last clicked or otherwise selected.
+ Unlike GetSelection(), it can be used whether or not
+ the control has the @c wxTR_MULTIPLE style.
+
+ @since 2.9.1
+ */
+ virtual wxTreeItemId GetFocusedItem() const;
+
+
+ /**
+ Clears the currently focused item
+
+ @since 2.9.1
+ */
+ virtual void ClearFocusedItem();
+
+ /**
+ Sets the currently focused item.
+
+ @param item
+ The item to make the current one. It must be valid.
+ @since 2.9.1
+ */
+ virtual void SetFocusedItem(const wxTreeItemId& item);
+
+