///////////////////////////////////////////////////////////////////////////////
-// Name: common/dobjcmn.cpp
+// Name: src/common/dobjcmn.cpp
// Purpose: implementation of data object methods common to all platforms
// Author: Vadim Zeitlin, Robert Roebling
// Modified by:
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
-// ============================================================================
-// declarations
-// ============================================================================
-
-// ----------------------------------------------------------------------------
-// headers
-// ----------------------------------------------------------------------------
-
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma implementation "dataobjbase.h"
-#endif
-
+// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#if wxUSE_DATAOBJ
+#include "wx/dataobj.h"
+
#ifndef WX_PRECOMP
#include "wx/app.h"
- #include "wx/debug.h"
-#endif // WX_PRECOMP
-
-#include "wx/dataobj.h"
+#endif
// ----------------------------------------------------------------------------
// lists
#include "wx/listimpl.cpp"
-WX_DEFINE_LIST(wxSimpleDataObjectList);
+WX_DEFINE_LIST(wxSimpleDataObjectList)
// ----------------------------------------------------------------------------
// globals
bool wxDataObjectBase::IsSupported(const wxDataFormat& format,
Direction dir) const
{
- size_t nFormatCount = GetFormatCount(dir);
+ size_t nFormatCount = GetFormatCount( dir );
if ( nFormatCount == 1 )
{
- return format == GetPreferredFormat(dir);
+ return format == GetPreferredFormat( dir );
}
else
{
wxDataFormat *formats = new wxDataFormat[nFormatCount];
- GetAllFormats(formats, dir);
+ GetAllFormats( formats, dir );
size_t n;
for ( n = 0; n < nFormatCount; n++ )
wxDataObjectComposite::wxDataObjectComposite()
{
m_preferred = 0;
+ m_receivedFormat = wxFormatInvalid;
}
wxDataObjectComposite::~wxDataObjectComposite()
{
- WX_CLEAR_LIST(wxSimpleDataObjectList, m_dataObjects);
+ WX_CLEAR_LIST( wxSimpleDataObjectList, m_dataObjects );
}
wxDataObjectSimple *
m_dataObjects.Append( dataObject );
}
+wxDataFormat wxDataObjectComposite::GetReceivedFormat() const
+{
+ return m_receivedFormat;
+}
+
wxDataFormat
wxDataObjectComposite::GetPreferredFormat(Direction WXUNUSED(dir)) const
{
void* wxDataObjectComposite::SetSizeInBuffer( void* buffer, size_t size,
const wxDataFormat& format )
{
- wxDataObjectSimple *dataObj = GetObject(format);
+ wxDataObjectSimple *dataObj = GetObject( format );
wxCHECK_MSG( dataObj, NULL,
wxT("unsupported format in wxDataObjectComposite"));
bool wxDataObjectComposite::GetDataHere(const wxDataFormat& format,
void *buf) const
{
- wxDataObjectSimple *dataObj = GetObject(format);
+ wxDataObjectSimple *dataObj = GetObject( format );
wxCHECK_MSG( dataObj, false,
wxT("unsupported format in wxDataObjectComposite"));
- return dataObj->GetDataHere(buf);
+ return dataObj->GetDataHere( buf );
}
bool wxDataObjectComposite::SetData(const wxDataFormat& format,
size_t len,
const void *buf)
{
- wxDataObjectSimple *dataObj = GetObject(format);
+ wxDataObjectSimple *dataObj = GetObject( format );
wxCHECK_MSG( dataObj, false,
wxT("unsupported format in wxDataObjectComposite"));
- return dataObj->SetData(len, buf);
+ m_receivedFormat = format;
+ return dataObj->SetData( len, buf );
}
// ----------------------------------------------------------------------------
size_t wxTextDataObject::GetDataSize(const wxDataFormat& format) const
{
wxCharBuffer buffer = GetConv(format).cWX2MB( GetText().c_str() );
- return buffer ? strlen(buffer) + 1 : 0;
+
+ return buffer ? strlen( buffer ) : 0;
}
bool wxTextDataObject::GetDataHere(const wxDataFormat& format, void *buf) const
{
+ if ( !buf )
+ return false;
+
wxCharBuffer buffer = GetConv(format).cWX2MB( GetText().c_str() );
if ( !buffer )
return false;
- strcpy( (char*) buf, buffer );
+ memcpy( (char*) buf, buffer, GetDataSize(format) );
+ // strcpy( (char*) buf, buffer );
return true;
}
bool wxTextDataObject::SetData(const wxDataFormat& format,
size_t WXUNUSED(len), const void *buf)
{
- wxWCharBuffer buffer = GetConv(format).cMB2WX((const char *)buf);
- if ( !buffer )
+ if ( buf == NULL )
return false;
- SetText(buffer);
+ wxWCharBuffer buffer = GetConv(format).cMB2WX( (const char*)buf );
+
+ SetText( buffer );
return true;
}
#elif wxUSE_UNICODE && defined(__WXMAC__)
+static wxMBConvUTF16 sUTF16Converter;
+
+static inline wxMBConv& GetConv(const wxDataFormat& format)
+{
+ return
+ format == wxDF_UNICODETEXT
+ ? (wxMBConv&) sUTF16Converter
+ : (wxMBConv&) wxConvLocal;
+}
+
size_t wxTextDataObject::GetDataSize(const wxDataFormat& format) const
{
- if (format == wxDF_UNICODETEXT)
- {
- // host native is UTF16
- wxMBConvUTF16 converter ;
- return converter.WC2MB( NULL , GetText().c_str() , 0 ) + 2; // add space for trailing unichar 0
- }
- else // == wxDF_TEXT
- {
- wxCharBuffer buffer = wxConvLibc.cWX2MB( GetText().c_str() );
- return strlen( (const char*) buffer ) + 1;
- }
+ size_t len = GetConv(format).WC2MB( NULL, GetText().c_str(), 0 );
+ len += (format == wxDF_UNICODETEXT ? 2 : 1);
+
+ return len;
}
bool wxTextDataObject::GetDataHere(const wxDataFormat& format, void *buf) const
{
- if (format == wxDF_UNICODETEXT)
- {
- // host native is UTF16
- wxMBConvUTF16 converter ;
- size_t len = converter.WC2MB( NULL , GetText().c_str() , 0 ) ;
- wxCharBuffer buffer = converter.cWX2MB( GetText().c_str() );
- memcpy( (char*) buf, (const char*) buffer , len + 2); // trailing unichar 0
- }
- else
- {
- wxCharBuffer buffer = wxConvLibc.cWX2MB( GetText().c_str() );
- strcpy( (char*) buf, (const char*) buffer );
- }
+ if ( buf == NULL )
+ return false;
+
+ wxCharBuffer buffer = GetConv(format).cWX2MB( GetText().c_str() );
+
+ size_t len = GetConv(format).WC2MB( NULL, GetText().c_str(), 0 );
+ len += (format == wxDF_UNICODETEXT ? 2 : 1);
+
+ // trailing (uni)char 0
+ memcpy( (char*)buf, (const char*)buffer, len );
return true;
}
bool wxTextDataObject::SetData(const wxDataFormat& format,
size_t WXUNUSED(len), const void *buf)
{
- if (format == wxDF_UNICODETEXT)
- {
- // host native is UTF16
- wxMBConvUTF16 converter ;
- SetText( converter.cMB2WX( (const char*) buf ) );
- }
- else
- SetText( wxConvLibc.cMB2WX( (const char*) buf ) );
+ if ( buf == NULL )
+ return false;
+
+ wxWCharBuffer buffer = GetConv(format).cMB2WX( (const char*)buf );
+
+ SetText( buffer );
return true;
}
bool wxTextDataObject::GetDataHere(void *buf) const
{
- wxStrcpy((wxChar *)buf, GetText().c_str());
+ wxStrcpy( (wxChar*)buf, GetText().c_str() );
return true;
}
bool wxTextDataObject::SetData(size_t WXUNUSED(len), const void *buf)
{
- SetText(wxString((const wxChar *)buf));
+ SetText( wxString((const wxChar*)buf) );
return true;
}
}
}
-#endif // 0
+#endif
// ----------------------------------------------------------------------------
// wxCustomDataObject
wxCustomDataObject::wxCustomDataObject(const wxDataFormat& format)
: wxDataObjectSimple(format)
{
- m_data = (void *)NULL;
+ m_data = NULL;
+ m_size = 0;
}
wxCustomDataObject::~wxCustomDataObject()
void wxCustomDataObject::Free()
{
- delete [] (char *)m_data;
+ delete [] (char*)m_data;
m_size = 0;
- m_data = (void *)NULL;
+ m_data = (void*)NULL;
}
size_t wxCustomDataObject::GetDataSize() const
bool wxCustomDataObject::GetDataHere(void *buf) const
{
+ if ( buf == NULL )
+ return false;
+
void *data = GetData();
- if ( !data )
+ if ( data == NULL )
return false;
- memcpy(buf, data, GetSize());
+ memcpy( buf, data, GetSize() );
return true;
}
Free();
m_data = Alloc(size);
- if ( !m_data )
+ if ( m_data == NULL )
return false;
- memcpy(m_data, buf, m_size = size);
+ m_size = size;
+ memcpy( m_data, buf, m_size );
return true;
}
return wxDragNone;
wxTextDataObject *dobj = (wxTextDataObject *)m_dataObject;
- return OnDropText(x, y, dobj->GetText()) ? def : wxDragNone;
+ return OnDropText( x, y, dobj->GetText() ) ? def : wxDragNone;
}
// ----------------------------------------------------------------------------
return wxDragNone;
wxFileDataObject *dobj = (wxFileDataObject *)m_dataObject;
- return OnDropFiles(x, y, dobj->GetFilenames()) ? def : wxDragNone;
+ return OnDropFiles( x, y, dobj->GetFilenames() ) ? def : wxDragNone;
}
#endif // wxUSE_DRAG_AND_DROP