1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: common/dobjcmn.cpp
3 // Purpose: implementation of data object methods common to all platforms
4 // Author: Vadim Zeitlin, Robert Roebling
8 // Copyright: (c) wxWindows Team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "dataobjbase.h"
24 #include "wx/wxprec.h"
37 #include "wx/dataobj.h"
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
43 #include "wx/listimpl.cpp"
45 WX_DEFINE_LIST(wxSimpleDataObjectList
);
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 static wxDataFormat dataFormatInvalid
;
52 WXDLLEXPORT
const wxDataFormat
& wxFormatInvalid
= dataFormatInvalid
;
54 // ============================================================================
56 // ============================================================================
58 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
62 wxDataObjectBase::~wxDataObjectBase()
66 bool wxDataObjectBase::IsSupported(const wxDataFormat
& format
,
69 size_t nFormatCount
= GetFormatCount(dir
);
70 if ( nFormatCount
== 1 )
72 return format
== GetPreferredFormat(dir
);
76 wxDataFormat
*formats
= new wxDataFormat
[nFormatCount
];
77 GetAllFormats(formats
, dir
);
80 for ( n
= 0; n
< nFormatCount
; n
++ )
82 if ( formats
[n
] == format
)
89 return n
< nFormatCount
;
93 // ----------------------------------------------------------------------------
94 // wxDataObjectComposite
95 // ----------------------------------------------------------------------------
97 wxDataObjectComposite::wxDataObjectComposite()
102 wxDataObjectComposite::~wxDataObjectComposite()
104 WX_CLEAR_LIST(wxSimpleDataObjectList
, m_dataObjects
);
108 wxDataObjectComposite::GetObject(const wxDataFormat
& format
) const
110 wxSimpleDataObjectList::compatibility_iterator node
= m_dataObjects
.GetFirst();
113 wxDataObjectSimple
*dataObj
= node
->GetData();
115 if ( dataObj
->GetFormat() == format
)
120 node
= node
->GetNext();
123 return (wxDataObjectSimple
*)NULL
;
126 void wxDataObjectComposite::Add(wxDataObjectSimple
*dataObject
, bool preferred
)
129 m_preferred
= m_dataObjects
.GetCount();
131 m_dataObjects
.Append( dataObject
);
135 wxDataObjectComposite::GetPreferredFormat(Direction
WXUNUSED(dir
)) const
137 wxSimpleDataObjectList::compatibility_iterator node
= m_dataObjects
.Item( m_preferred
);
139 wxCHECK_MSG( node
, wxFormatInvalid
, wxT("no preferred format") );
141 wxDataObjectSimple
* dataObj
= node
->GetData();
143 return dataObj
->GetFormat();
146 #if defined(__WXMSW__)
148 size_t wxDataObjectComposite::GetBufferOffset( const wxDataFormat
& format
)
150 wxDataObjectSimple
*dataObj
= GetObject(format
);
152 wxCHECK_MSG( dataObj
, 0,
153 wxT("unsupported format in wxDataObjectComposite"));
155 return dataObj
->GetBufferOffset( format
);
159 const void* wxDataObjectComposite::GetSizeFromBuffer( const void* buffer
,
161 const wxDataFormat
& format
)
163 wxDataObjectSimple
*dataObj
= GetObject(format
);
165 wxCHECK_MSG( dataObj
, NULL
,
166 wxT("unsupported format in wxDataObjectComposite"));
168 return dataObj
->GetSizeFromBuffer( buffer
, size
, format
);
172 void* wxDataObjectComposite::SetSizeInBuffer( void* buffer
, size_t size
,
173 const wxDataFormat
& format
)
175 wxDataObjectSimple
*dataObj
= GetObject(format
);
177 wxCHECK_MSG( dataObj
, NULL
,
178 wxT("unsupported format in wxDataObjectComposite"));
180 return dataObj
->SetSizeInBuffer( buffer
, size
, format
);
185 size_t wxDataObjectComposite::GetFormatCount(Direction
WXUNUSED(dir
)) const
187 // TODO what about the Get/Set only formats?
188 return m_dataObjects
.GetCount();
191 void wxDataObjectComposite::GetAllFormats(wxDataFormat
*formats
,
192 Direction
WXUNUSED(dir
)) const
195 wxSimpleDataObjectList::compatibility_iterator node
;
196 for ( node
= m_dataObjects
.GetFirst(); node
; node
= node
->GetNext() )
198 // TODO if ( !outputOnlyToo ) && this one counts ...
199 formats
[n
++] = node
->GetData()->GetFormat();
203 size_t wxDataObjectComposite::GetDataSize(const wxDataFormat
& format
) const
205 wxDataObjectSimple
*dataObj
= GetObject(format
);
207 wxCHECK_MSG( dataObj
, 0,
208 wxT("unsupported format in wxDataObjectComposite"));
210 return dataObj
->GetDataSize();
213 bool wxDataObjectComposite::GetDataHere(const wxDataFormat
& format
,
216 wxDataObjectSimple
*dataObj
= GetObject(format
);
218 wxCHECK_MSG( dataObj
, FALSE
,
219 wxT("unsupported format in wxDataObjectComposite"));
221 return dataObj
->GetDataHere(buf
);
224 bool wxDataObjectComposite::SetData(const wxDataFormat
& format
,
228 wxDataObjectSimple
*dataObj
= GetObject(format
);
230 wxCHECK_MSG( dataObj
, FALSE
,
231 wxT("unsupported format in wxDataObjectComposite"));
233 return dataObj
->SetData(len
, buf
);
236 // ----------------------------------------------------------------------------
238 // ----------------------------------------------------------------------------
240 size_t wxTextDataObject::GetDataSize() const
242 #if defined(__WXGTK20__) && wxUSE_UNICODE
244 wxCharBuffer buffer
= wxConvUTF8
.cWX2MB( GetText().c_str() );
245 return strlen( (const char*) buffer
) + 1;
247 return GetTextLength() * sizeof(wxChar
);
251 bool wxTextDataObject::GetDataHere(void *buf
) const
253 #if defined(__WXGTK20__) && wxUSE_UNICODE
255 wxCharBuffer buffer
= wxConvUTF8
.cWX2MB( GetText().c_str() );
256 strcpy( (char*) buf
, (const char*) buffer
);
258 wxStrcpy((wxChar
*)buf
, GetText().c_str());
264 bool wxTextDataObject::SetData(size_t WXUNUSED(len
), const void *buf
)
266 #if defined(__WXGTK20__) && wxUSE_UNICODE
268 SetText( wxConvUTF8
.cMB2WX( (const char*) buf
) );
270 SetText(wxString((const wxChar
*)buf
));
276 // ----------------------------------------------------------------------------
277 // wxFileDataObjectBase
278 // ----------------------------------------------------------------------------
280 // VZ: I don't need this in MSW finally, so if it is needed in wxGTK, it should
281 // be moved to gtk/dataobj.cpp
284 wxString
wxFileDataObjectBase::GetFilenames() const
287 size_t count
= m_filenames
.GetCount();
288 for ( size_t n
= 0; n
< count
; n
++ )
290 str
<< m_filenames
[n
] << wxT('\0');
296 void wxFileDataObjectBase::SetFilenames(const wxChar
* filenames
)
301 for ( const wxChar
*pc
= filenames
; ; pc
++ )
311 // 2 consecutive NULs - this is the end of the string
315 m_filenames
.Add(current
);
323 // ----------------------------------------------------------------------------
324 // wxCustomDataObject
325 // ----------------------------------------------------------------------------
327 wxCustomDataObject::wxCustomDataObject(const wxDataFormat
& format
)
328 : wxDataObjectSimple(format
)
330 m_data
= (void *)NULL
;
333 wxCustomDataObject::~wxCustomDataObject()
338 void wxCustomDataObject::TakeData(size_t size
, void *data
)
346 void *wxCustomDataObject::Alloc(size_t size
)
348 return (void *)new char[size
];
351 void wxCustomDataObject::Free()
353 delete [] (char *)m_data
;
355 m_data
= (void *)NULL
;
358 size_t wxCustomDataObject::GetDataSize() const
363 bool wxCustomDataObject::GetDataHere(void *buf
) const
365 void *data
= GetData();
369 memcpy(buf
, data
, GetSize());
374 bool wxCustomDataObject::SetData(size_t size
, const void *buf
)
378 m_data
= Alloc(size
);
382 memcpy(m_data
, buf
, m_size
= size
);
387 // ============================================================================
388 // some common dnd related code
389 // ============================================================================
391 #if wxUSE_DRAG_AND_DROP
395 // ----------------------------------------------------------------------------
397 // ----------------------------------------------------------------------------
399 // NB: we can't use "new" in ctor initializer lists because this provokes an
400 // internal compiler error with VC++ 5.0 (hey, even gcc compiles this!),
401 // so use SetDataObject() instead
403 wxTextDropTarget::wxTextDropTarget()
405 SetDataObject(new wxTextDataObject
);
408 wxDragResult
wxTextDropTarget::OnData(wxCoord x
, wxCoord y
, wxDragResult def
)
413 wxTextDataObject
*dobj
= (wxTextDataObject
*)m_dataObject
;
414 return OnDropText(x
, y
, dobj
->GetText()) ? def
: wxDragNone
;
417 // ----------------------------------------------------------------------------
419 // ----------------------------------------------------------------------------
421 wxFileDropTarget::wxFileDropTarget()
423 SetDataObject(new wxFileDataObject
);
426 wxDragResult
wxFileDropTarget::OnData(wxCoord x
, wxCoord y
, wxDragResult def
)
431 wxFileDataObject
*dobj
= (wxFileDataObject
*)m_dataObject
;
432 return OnDropFiles(x
, y
, dobj
->GetFilenames()) ? def
: wxDragNone
;
435 #endif // wxUSE_DRAG_AND_DROP
437 #endif // wxUSE_DATAOBJ