]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/treectlg.h
Renamed the wxWindowCocoaScroller class to wxWindowCocoaScrollView because
[wxWidgets.git] / include / wx / generic / treectlg.h
index 10132ad0e837f3961f714ffe2436a49918f75610..82dcaa849d7d6de73f55933917293ba92773180d 100644 (file)
@@ -105,6 +105,9 @@ public:
     virtual void AssignStateImageList(wxImageList *imageList);
     virtual void AssignButtonsImageList(wxImageList *imageList);
 
+    virtual void SetDropEffectAboveItem( bool above = false ) { m_dropEffectAboveItem = above; }
+    virtual bool GetDropEffectAboveItem() const { return m_dropEffectAboveItem; }
+
     // Functions to work with tree ctrl items.
 
     // accessors
@@ -207,10 +210,9 @@ public:
 
 #if WXWIN_COMPATIBILITY_2_2
         // deprecated:  Use GetItemParent instead.
-    wxTreeItemId GetParent(const wxTreeItemId& item) const
-        { return GetItemParent( item ); }
+    wxDEPRECATED( wxTreeItemId GetParent(const wxTreeItemId& item) const);
 
-        // Expose the base class method hidden by the one above.
+        // Expose the base class method hidden by the one above. Not deprecatable.
     wxWindow *GetParent() const { return wxScrolledWindow::GetParent(); }
 #endif  // WXWIN_COMPATIBILITY_2_2
 
@@ -447,6 +449,8 @@ protected:
     // incremental search data
     wxString             m_findPrefix;
     wxTimer             *m_findTimer;
+    
+    bool                 m_dropEffectAboveItem;
 
     // the common part of all ctors
     void Init();