]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/treectrl.h
Add demonstration of a few more wxRenderer methods.
[wxWidgets.git] / include / wx / treectrl.h
index 77a10793c7c5aecf9de08e14af4b24b9fe08edc9..ee13f4f4a4a5c350361f4fb56687a072e0752a08 100644 (file)
@@ -210,6 +210,10 @@ public:
         //     control with a lot of items (~ O(number of items)).
     virtual size_t GetSelections(wxArrayTreeItemIds& selections) const = 0;
 
+        // get the last item to be clicked when the control has wxTR_MULTIPLE
+        // equivalent to GetSelection() if not wxTR_MULTIPLE
+    virtual wxTreeItemId GetFocusedItem() const = 0;
+
         // get the parent of this item (may return NULL if root)
     virtual wxTreeItemId GetItemParent(const wxTreeItemId& item) const = 0;
 
@@ -438,7 +442,7 @@ protected:
     bool        m_quickBestSize;
 
 
-    DECLARE_NO_COPY_CLASS(wxTreeCtrlBase)
+    wxDECLARE_NO_COPY_CLASS(wxTreeCtrlBase);
 };
 
 // ----------------------------------------------------------------------------