STL-ification patch for wxMSW and wxGTK.
[wxWidgets.git] / src / common / dobjcmn.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: common/dobjcmn.cpp
3 // Purpose: implementation of data object methods common to all platforms
4 // Author: Vadim Zeitlin, Robert Roebling
5 // Modified by:
6 // Created: 19.10.99
7 // RCS-ID: $Id$
8 // Copyright: (c) wxWindows Team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #ifdef __GNUG__
21 #pragma implementation "dataobjbase.h"
22 #endif
23
24 #include "wx/wxprec.h"
25
26 #ifdef __BORLANDC__
27 #pragma hdrstop
28 #endif
29
30 #if wxUSE_DATAOBJ
31
32 #ifndef WX_PRECOMP
33 #include "wx/app.h"
34 #include "wx/debug.h"
35 #endif // WX_PRECOMP
36
37 #include "wx/dataobj.h"
38
39 // ----------------------------------------------------------------------------
40 // lists
41 // ----------------------------------------------------------------------------
42
43 #include "wx/listimpl.cpp"
44
45 WX_DEFINE_LIST(wxSimpleDataObjectList);
46
47 // ----------------------------------------------------------------------------
48 // globals
49 // ----------------------------------------------------------------------------
50
51 static wxDataFormat dataFormatInvalid;
52 WXDLLEXPORT const wxDataFormat& wxFormatInvalid = dataFormatInvalid;
53
54 // ============================================================================
55 // implementation
56 // ============================================================================
57
58 // ----------------------------------------------------------------------------
59 // wxDataObjectBase
60 // ----------------------------------------------------------------------------
61
62 wxDataObjectBase::~wxDataObjectBase()
63 {
64 }
65
66 bool wxDataObjectBase::IsSupported(const wxDataFormat& format,
67 Direction dir) const
68 {
69 size_t nFormatCount = GetFormatCount(dir);
70 if ( nFormatCount == 1 )
71 {
72 return format == GetPreferredFormat(dir);
73 }
74 else
75 {
76 wxDataFormat *formats = new wxDataFormat[nFormatCount];
77 GetAllFormats(formats, dir);
78
79 size_t n;
80 for ( n = 0; n < nFormatCount; n++ )
81 {
82 if ( formats[n] == format )
83 break;
84 }
85
86 delete [] formats;
87
88 // found?
89 return n < nFormatCount;
90 }
91 }
92
93 // ----------------------------------------------------------------------------
94 // wxDataObjectComposite
95 // ----------------------------------------------------------------------------
96
97 wxDataObjectComposite::wxDataObjectComposite()
98 {
99 m_preferred = 0;
100 }
101
102 wxDataObjectComposite::~wxDataObjectComposite()
103 {
104 WX_CLEAR_LIST(wxSimpleDataObjectList, m_dataObjects);
105 }
106
107 wxDataObjectSimple *
108 wxDataObjectComposite::GetObject(const wxDataFormat& format) const
109 {
110 wxSimpleDataObjectList::compatibility_iterator node = m_dataObjects.GetFirst();
111 while ( node )
112 {
113 wxDataObjectSimple *dataObj = node->GetData();
114
115 if ( dataObj->GetFormat() == format )
116 {
117 return dataObj;
118 }
119
120 node = node->GetNext();
121 }
122
123 return (wxDataObjectSimple *)NULL;
124 }
125
126 void wxDataObjectComposite::Add(wxDataObjectSimple *dataObject, bool preferred)
127 {
128 if ( preferred )
129 m_preferred = m_dataObjects.GetCount();
130
131 m_dataObjects.Append( dataObject );
132 }
133
134 wxDataFormat
135 wxDataObjectComposite::GetPreferredFormat(Direction WXUNUSED(dir)) const
136 {
137 wxSimpleDataObjectList::compatibility_iterator node = m_dataObjects.Item( m_preferred );
138
139 wxCHECK_MSG( node, wxFormatInvalid, wxT("no preferred format") );
140
141 wxDataObjectSimple* dataObj = node->GetData();
142
143 return dataObj->GetFormat();
144 }
145
146 #if defined(__WXMSW__)
147
148 size_t wxDataObjectComposite::GetBufferOffset( const wxDataFormat& format )
149 {
150 wxDataObjectSimple *dataObj = GetObject(format);
151
152 wxCHECK_MSG( dataObj, 0,
153 wxT("unsupported format in wxDataObjectComposite"));
154
155 return dataObj->GetBufferOffset( format );
156 }
157
158
159 const void* wxDataObjectComposite::GetSizeFromBuffer( const void* buffer,
160 size_t* size,
161 const wxDataFormat& format )
162 {
163 wxDataObjectSimple *dataObj = GetObject(format);
164
165 wxCHECK_MSG( dataObj, NULL,
166 wxT("unsupported format in wxDataObjectComposite"));
167
168 return dataObj->GetSizeFromBuffer( buffer, size, format );
169 }
170
171
172 void* wxDataObjectComposite::SetSizeInBuffer( void* buffer, size_t size,
173 const wxDataFormat& format )
174 {
175 wxDataObjectSimple *dataObj = GetObject(format);
176
177 wxCHECK_MSG( dataObj, NULL,
178 wxT("unsupported format in wxDataObjectComposite"));
179
180 return dataObj->SetSizeInBuffer( buffer, size, format );
181 }
182
183 #endif
184
185 size_t wxDataObjectComposite::GetFormatCount(Direction WXUNUSED(dir)) const
186 {
187 // TODO what about the Get/Set only formats?
188 return m_dataObjects.GetCount();
189 }
190
191 void wxDataObjectComposite::GetAllFormats(wxDataFormat *formats,
192 Direction WXUNUSED(dir)) const
193 {
194 size_t n = 0;
195 wxSimpleDataObjectList::compatibility_iterator node;
196 for ( node = m_dataObjects.GetFirst(); node; node = node->GetNext() )
197 {
198 // TODO if ( !outputOnlyToo ) && this one counts ...
199 formats[n++] = node->GetData()->GetFormat();
200 }
201 }
202
203 size_t wxDataObjectComposite::GetDataSize(const wxDataFormat& format) const
204 {
205 wxDataObjectSimple *dataObj = GetObject(format);
206
207 wxCHECK_MSG( dataObj, 0,
208 wxT("unsupported format in wxDataObjectComposite"));
209
210 return dataObj->GetDataSize();
211 }
212
213 bool wxDataObjectComposite::GetDataHere(const wxDataFormat& format,
214 void *buf) const
215 {
216 wxDataObjectSimple *dataObj = GetObject(format);
217
218 wxCHECK_MSG( dataObj, FALSE,
219 wxT("unsupported format in wxDataObjectComposite"));
220
221 return dataObj->GetDataHere(buf);
222 }
223
224 bool wxDataObjectComposite::SetData(const wxDataFormat& format,
225 size_t len,
226 const void *buf)
227 {
228 wxDataObjectSimple *dataObj = GetObject(format);
229
230 wxCHECK_MSG( dataObj, FALSE,
231 wxT("unsupported format in wxDataObjectComposite"));
232
233 return dataObj->SetData(len, buf);
234 }
235
236 // ----------------------------------------------------------------------------
237 // wxTextDataObject
238 // ----------------------------------------------------------------------------
239
240 size_t wxTextDataObject::GetDataSize() const
241 {
242 #if defined(__WXGTK20__) && wxUSE_UNICODE
243 // Use UTF8 not UCS4
244 wxCharBuffer buffer = wxConvUTF8.cWX2MB( GetText().c_str() );
245 return strlen( (const char*) buffer ) + 1;
246 #else
247 return GetTextLength() * sizeof(wxChar);
248 #endif
249 }
250
251 bool wxTextDataObject::GetDataHere(void *buf) const
252 {
253 #if defined(__WXGTK20__) && wxUSE_UNICODE
254 // Use UTF8 not UCS4
255 wxCharBuffer buffer = wxConvUTF8.cWX2MB( GetText().c_str() );
256 strcpy( (char*) buf, (const char*) buffer );
257 #else
258 wxStrcpy((wxChar *)buf, GetText().c_str());
259 #endif
260
261 return TRUE;
262 }
263
264 bool wxTextDataObject::SetData(size_t WXUNUSED(len), const void *buf)
265 {
266 #if defined(__WXGTK20__) && wxUSE_UNICODE
267 // Use UTF8 not UCS4
268 SetText( wxConvUTF8.cMB2WX( (const char*) buf ) );
269 #else
270 SetText(wxString((const wxChar *)buf));
271 #endif
272
273 return TRUE;
274 }
275
276 // ----------------------------------------------------------------------------
277 // wxFileDataObjectBase
278 // ----------------------------------------------------------------------------
279
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
282 #if 0
283
284 wxString wxFileDataObjectBase::GetFilenames() const
285 {
286 wxString str;
287 size_t count = m_filenames.GetCount();
288 for ( size_t n = 0; n < count; n++ )
289 {
290 str << m_filenames[n] << wxT('\0');
291 }
292
293 return str;
294 }
295
296 void wxFileDataObjectBase::SetFilenames(const wxChar* filenames)
297 {
298 m_filenames.Empty();
299
300 wxString current;
301 for ( const wxChar *pc = filenames; ; pc++ )
302 {
303 if ( *pc )
304 {
305 current += *pc;
306 }
307 else
308 {
309 if ( !current )
310 {
311 // 2 consecutive NULs - this is the end of the string
312 break;
313 }
314
315 m_filenames.Add(current);
316 current.Empty();
317 }
318 }
319 }
320
321 #endif // 0
322
323 // ----------------------------------------------------------------------------
324 // wxCustomDataObject
325 // ----------------------------------------------------------------------------
326
327 wxCustomDataObject::wxCustomDataObject(const wxDataFormat& format)
328 : wxDataObjectSimple(format)
329 {
330 m_data = (void *)NULL;
331 }
332
333 wxCustomDataObject::~wxCustomDataObject()
334 {
335 Free();
336 }
337
338 void wxCustomDataObject::TakeData(size_t size, void *data)
339 {
340 Free();
341
342 m_size = size;
343 m_data = data;
344 }
345
346 void *wxCustomDataObject::Alloc(size_t size)
347 {
348 return (void *)new char[size];
349 }
350
351 void wxCustomDataObject::Free()
352 {
353 delete [] (char *)m_data;
354 m_size = 0;
355 m_data = (void *)NULL;
356 }
357
358 size_t wxCustomDataObject::GetDataSize() const
359 {
360 return GetSize();
361 }
362
363 bool wxCustomDataObject::GetDataHere(void *buf) const
364 {
365 void *data = GetData();
366 if ( !data )
367 return FALSE;
368
369 memcpy(buf, data, GetSize());
370
371 return TRUE;
372 }
373
374 bool wxCustomDataObject::SetData(size_t size, const void *buf)
375 {
376 Free();
377
378 m_data = Alloc(size);
379 if ( !m_data )
380 return FALSE;
381
382 memcpy(m_data, buf, m_size = size);
383
384 return TRUE;
385 }
386
387 // ============================================================================
388 // some common dnd related code
389 // ============================================================================
390
391 #if wxUSE_DRAG_AND_DROP
392
393 #include "wx/dnd.h"
394
395 // ----------------------------------------------------------------------------
396 // wxTextDropTarget
397 // ----------------------------------------------------------------------------
398
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
402
403 wxTextDropTarget::wxTextDropTarget()
404 {
405 SetDataObject(new wxTextDataObject);
406 }
407
408 wxDragResult wxTextDropTarget::OnData(wxCoord x, wxCoord y, wxDragResult def)
409 {
410 if ( !GetData() )
411 return wxDragNone;
412
413 wxTextDataObject *dobj = (wxTextDataObject *)m_dataObject;
414 return OnDropText(x, y, dobj->GetText()) ? def : wxDragNone;
415 }
416
417 // ----------------------------------------------------------------------------
418 // wxFileDropTarget
419 // ----------------------------------------------------------------------------
420
421 wxFileDropTarget::wxFileDropTarget()
422 {
423 SetDataObject(new wxFileDataObject);
424 }
425
426 wxDragResult wxFileDropTarget::OnData(wxCoord x, wxCoord y, wxDragResult def)
427 {
428 if ( !GetData() )
429 return wxDragNone;
430
431 wxFileDataObject *dobj = (wxFileDataObject *)m_dataObject;
432 return OnDropFiles(x, y, dobj->GetFilenames()) ? def : wxDragNone;
433 }
434
435 #endif // wxUSE_DRAG_AND_DROP
436
437 #endif // wxUSE_DATAOBJ