// wxCustomDataObject
// ----------------------------------------------------------------------------
+wxCustomDataObject::wxCustomDataObject(const wxDataFormat& format)
+ : wxDataObjectSimple(format)
+{
+}
+
+
wxCustomDataObject::~wxCustomDataObject()
{
Free();
return TRUE;
}
+// ============================================================================
+// some common dnd related code
+// ============================================================================
+
+#if wxUSE_DRAG_AND_DROP
+
+#include "wx/dnd.h"
+
+// ----------------------------------------------------------------------------
+// wxTextDropTarget
+// ----------------------------------------------------------------------------
+
+wxTextDropTarget::wxTextDropTarget()
+ : wxDropTarget(new wxTextDataObject)
+{
+}
+
+wxDragResult wxTextDropTarget::OnData(wxCoord x, wxCoord y, wxDragResult def)
+{
+ if ( !GetData() )
+ return wxDragNone;
+
+ wxTextDataObject *dobj = (wxTextDataObject *)m_dataObject;
+ return OnDropText(x, y, dobj->GetText()) ? def : wxDragNone;
+}
+
+// ----------------------------------------------------------------------------
+// wxFileDropTarget
+// ----------------------------------------------------------------------------
+
+wxFileDropTarget::wxFileDropTarget()
+ : wxDropTarget(new wxFileDataObject)
+{
+}
+
+wxDragResult wxFileDropTarget::OnData(wxCoord x, wxCoord y, wxDragResult def)
+{
+ if ( !GetData() )
+ return wxDragNone;
+
+ wxFileDataObject *dobj = (wxFileDataObject *)m_dataObject;
+ return OnDropFiles(x, y, dobj->GetFilenames()) ? def : wxDragNone;
+}
+
+#endif
+