add default action methods

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32735 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2005-03-10 23:54:14 +00:00
parent 19874feb47
commit 303f572ea9

View 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();
};