// ----------------------------------------------------------------------------
static wxDataFormat dataFormatInvalid;
-const wxDataFormat& wxFormatInvalid = dataFormatInvalid;
+WXDLLEXPORT const wxDataFormat& wxFormatInvalid = dataFormatInvalid;
// ============================================================================
// implementation
{
}
+bool wxDataObjectBase::IsSupported(const wxDataFormat& format,
+ Direction dir) const
+{
+ size_t nFormatCount = GetFormatCount(dir);
+ if ( nFormatCount == 1 )
+ {
+ return format == GetPreferredFormat(dir);
+ }
+ else
+ {
+ wxDataFormat *formats = new wxDataFormat[nFormatCount];
+ GetAllFormats(formats, dir);
+
+ size_t n;
+ for ( n = 0; n < nFormatCount; n++ )
+ {
+ if ( formats[n] == format )
+ break;
+ }
+
+ delete [] formats;
+
+ // found?
+ return n < nFormatCount;
+ }
+}
+
// ----------------------------------------------------------------------------
// wxDataObjectComposite
// ----------------------------------------------------------------------------
{
wxSimpleDataObjectList::Node *node = m_dataObjects.Item( m_preferred );
- wxCHECK_MSG( node, wxDataFormat((unsigned short) wxDF_INVALID), wxT("no preferred format") );
+ wxCHECK_MSG( node, wxFormatInvalid, wxT("no preferred format") );
wxDataObjectSimple* dataObj = node->GetData();
// wxCustomDataObject
// ----------------------------------------------------------------------------
+wxCustomDataObject::wxCustomDataObject(const wxDataFormat& format)
+ : wxDataObjectSimple(format)
+{
+ m_data = (void *)NULL;
+}
+
wxCustomDataObject::~wxCustomDataObject()
{
Free();
void wxCustomDataObject::Free()
{
- delete [] m_data;
+ delete [] (char *)m_data;
m_size = 0;
m_data = (void *)NULL;
}
return TRUE;
}
+// ============================================================================
+// some common dnd related code
+// ============================================================================
+
+#if wxUSE_DRAG_AND_DROP
+
+#include "wx/dnd.h"
+
+// ----------------------------------------------------------------------------
+// wxTextDropTarget
+// ----------------------------------------------------------------------------
+
+// NB: we can't use "new" in ctor initializer lists because this provokes an
+// internal compiler error with VC++ 5.0 (hey, even gcc compiles this!),
+// so use SetDataObject() instead
+
+wxTextDropTarget::wxTextDropTarget()
+{
+ SetDataObject(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()
+{
+ SetDataObject(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
+