]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_dnd.i
Added missing CacheBestSize
[wxWidgets.git] / wxPython / src / _dnd.i
index 581ea9304311ec00d71b417a3c3efb3a7bc8a745..bfe497b58efa0ffc41048c468ed6a3af1f3d460e 100644 (file)
@@ -144,6 +144,15 @@ public:
     // with the data from the drop source if it returns True
     bool GetData();
 
+    // sets the default action for drag and drop:
+    // use wxDragMove or wxDragCopy to set deafult action to move or copy
+    // and use wxDragNone (default) to set default action specified by
+    // initialization of draging (see wxDropSourceBase::DoDragDrop())
+    void SetDefaultAction(wxDragResult action);
+
+    // returns default action for drag and drop or
+    // wxDragNone if this not specified
+    wxDragResult GetDefaultAction();
 };