]> git.saurik.com Git - wxWidgets.git/blame - src/common/dobjcmn.cpp
Font updates
[wxWidgets.git] / src / common / dobjcmn.cpp
CommitLineData
3f364be8
VZ
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 license
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
1e6feb95
VZ
30#if wxUSE_DATAOBJ
31
3f364be8
VZ
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
45WX_DEFINE_LIST(wxSimpleDataObjectList);
46
0c2b453f
VZ
47// ----------------------------------------------------------------------------
48// globals
49// ----------------------------------------------------------------------------
50
51static wxDataFormat dataFormatInvalid;
31e78e0c 52WXDLLEXPORT const wxDataFormat& wxFormatInvalid = dataFormatInvalid;
0c2b453f 53
3f364be8
VZ
54// ============================================================================
55// implementation
56// ============================================================================
57
58// ----------------------------------------------------------------------------
59// wxDataObjectBase
60// ----------------------------------------------------------------------------
61
62wxDataObjectBase::~wxDataObjectBase()
63{
64}
65
d9317fd4
VZ
66bool 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
3f364be8
VZ
93// ----------------------------------------------------------------------------
94// wxDataObjectComposite
95// ----------------------------------------------------------------------------
96
e6b01b78
VZ
97wxDataObjectComposite::wxDataObjectComposite()
98{
99 m_preferred = 0;
100
101 m_dataObjects.DeleteContents(TRUE);
102}
103
3f364be8
VZ
104wxDataObjectSimple *
105wxDataObjectComposite::GetObject(const wxDataFormat& format) const
106{
107 wxSimpleDataObjectList::Node *node = m_dataObjects.GetFirst();
108 while ( node )
109 {
110 wxDataObjectSimple *dataObj = node->GetData();
111
112 if ( dataObj->GetFormat() == format )
113 {
114 return dataObj;
115 }
116
117 node = node->GetNext();
118 }
119
120 return (wxDataObjectSimple *)NULL;
121}
122
123void wxDataObjectComposite::Add(wxDataObjectSimple *dataObject, bool preferred)
124{
125 if ( preferred )
126 m_preferred = m_dataObjects.GetCount();
127
128 m_dataObjects.Append( dataObject );
129}
130
131wxDataFormat
132wxDataObjectComposite::GetPreferredFormat(Direction WXUNUSED(dir)) const
133{
134 wxSimpleDataObjectList::Node *node = m_dataObjects.Item( m_preferred );
135
2ee3ee1b 136 wxCHECK_MSG( node, wxFormatInvalid, wxT("no preferred format") );
3f364be8
VZ
137
138 wxDataObjectSimple* dataObj = node->GetData();
139
140 return dataObj->GetFormat();
141}
142
e1b435af
MB
143#if defined(__WXMSW__)
144
145size_t wxDataObjectComposite::GetBufferOffset( const wxDataFormat& format )
146{
147 wxDataObjectSimple *dataObj = GetObject(format);
148
f7f50f49 149 wxCHECK_MSG( dataObj, 0,
e1b435af
MB
150 wxT("unsupported format in wxDataObjectComposite"));
151
152 return dataObj->GetBufferOffset( format );
153}
154
155const void* wxDataObjectComposite::GetSizeFromBuffer( const void* buffer,
156 size_t* size,
157 const wxDataFormat& format )
158{
159 wxDataObjectSimple *dataObj = GetObject(format);
160
f7f50f49 161 wxCHECK_MSG( dataObj, NULL,
e1b435af
MB
162 wxT("unsupported format in wxDataObjectComposite"));
163
164 return dataObj->GetSizeFromBuffer( buffer, size, format );
165}
166
167void* wxDataObjectComposite::SetSizeInBuffer( void* buffer, size_t size,
168 const wxDataFormat& format )
169{
170 wxDataObjectSimple *dataObj = GetObject(format);
171
f7f50f49 172 wxCHECK_MSG( dataObj, NULL,
e1b435af
MB
173 wxT("unsupported format in wxDataObjectComposite"));
174
175 return dataObj->SetSizeInBuffer( buffer, size, format );
176}
177
178#endif
179
3f364be8
VZ
180size_t wxDataObjectComposite::GetFormatCount(Direction WXUNUSED(dir)) const
181{
182 // TODO what about the Get/Set only formats?
183 return m_dataObjects.GetCount();
184}
185
186void wxDataObjectComposite::GetAllFormats(wxDataFormat *formats,
187 Direction WXUNUSED(dir)) const
188{
189 size_t n = 0;
190 wxSimpleDataObjectList::Node *node;
191 for ( node = m_dataObjects.GetFirst(); node; node = node->GetNext() )
192 {
193 // TODO if ( !outputOnlyToo ) && this one counts ...
194 formats[n++] = node->GetData()->GetFormat();
195 }
196}
197
198size_t wxDataObjectComposite::GetDataSize(const wxDataFormat& format) const
199{
200 wxDataObjectSimple *dataObj = GetObject(format);
201
202 wxCHECK_MSG( dataObj, 0,
203 wxT("unsupported format in wxDataObjectComposite"));
204
205 return dataObj->GetDataSize();
206}
207
208bool wxDataObjectComposite::GetDataHere(const wxDataFormat& format,
209 void *buf) const
210{
211 wxDataObjectSimple *dataObj = GetObject(format);
212
213 wxCHECK_MSG( dataObj, FALSE,
214 wxT("unsupported format in wxDataObjectComposite"));
215
216 return dataObj->GetDataHere(buf);
217}
218
219bool wxDataObjectComposite::SetData(const wxDataFormat& format,
220 size_t len,
221 const void *buf)
222{
223 wxDataObjectSimple *dataObj = GetObject(format);
224
225 wxCHECK_MSG( dataObj, FALSE,
226 wxT("unsupported format in wxDataObjectComposite"));
227
228 return dataObj->SetData(len, buf);
229}
230
231// ----------------------------------------------------------------------------
232// wxTextDataObject
233// ----------------------------------------------------------------------------
234
235size_t wxTextDataObject::GetDataSize() const
236{
6a59178a
RR
237#if defined(__WXGTK20__) && wxUSE_UNICODE
238 // Use UTF8 not UCS4
239 wxCharBuffer buffer = wxConvUTF8.cWX2MB( GetText().c_str() );
240 return strlen( (const char*) buffer ) + 1;
241#else
e1b435af 242 return GetTextLength() * sizeof(wxChar);
6a59178a 243#endif
3f364be8
VZ
244}
245
246bool wxTextDataObject::GetDataHere(void *buf) const
247{
6a59178a
RR
248#if defined(__WXGTK20__) && wxUSE_UNICODE
249 // Use UTF8 not UCS4
250 wxCharBuffer buffer = wxConvUTF8.cWX2MB( GetText().c_str() );
251 strcpy( (char*) buf, (const char*) buffer );
252#else
e1b435af 253 wxStrcpy((wxChar *)buf, GetText().c_str());
6a59178a 254#endif
3f364be8
VZ
255
256 return TRUE;
257}
258
259bool wxTextDataObject::SetData(size_t WXUNUSED(len), const void *buf)
260{
6a59178a
RR
261#if defined(__WXGTK20__) && wxUSE_UNICODE
262 // Use UTF8 not UCS4
263 SetText( wxConvUTF8.cMB2WX( (const char*) buf ) );
264#else
e1b435af 265 SetText(wxString((const wxChar *)buf));
6a59178a 266#endif
3f364be8
VZ
267
268 return TRUE;
269}
270
271// ----------------------------------------------------------------------------
272// wxFileDataObjectBase
273// ----------------------------------------------------------------------------
274
9e2896e5
VZ
275// VZ: I don't need this in MSW finally, so if it is needed in wxGTK, it should
276// be moved to gtk/dataobj.cpp
277#if 0
278
3f364be8
VZ
279wxString wxFileDataObjectBase::GetFilenames() const
280{
281 wxString str;
282 size_t count = m_filenames.GetCount();
283 for ( size_t n = 0; n < count; n++ )
284 {
285 str << m_filenames[n] << wxT('\0');
286 }
287
288 return str;
289}
290
291void wxFileDataObjectBase::SetFilenames(const wxChar* filenames)
292{
293 m_filenames.Empty();
294
295 wxString current;
296 for ( const wxChar *pc = filenames; ; pc++ )
297 {
298 if ( *pc )
299 {
300 current += *pc;
301 }
302 else
303 {
304 if ( !current )
305 {
306 // 2 consecutive NULs - this is the end of the string
307 break;
308 }
309
310 m_filenames.Add(current);
311 current.Empty();
312 }
313 }
314}
315
9e2896e5
VZ
316#endif // 0
317
3f364be8
VZ
318// ----------------------------------------------------------------------------
319// wxCustomDataObject
320// ----------------------------------------------------------------------------
321
775e1c62
RD
322wxCustomDataObject::wxCustomDataObject(const wxDataFormat& format)
323 : wxDataObjectSimple(format)
324{
4e16881a 325 m_data = (void *)NULL;
775e1c62
RD
326}
327
3f364be8
VZ
328wxCustomDataObject::~wxCustomDataObject()
329{
330 Free();
331}
332
333void wxCustomDataObject::TakeData(size_t size, void *data)
334{
335 Free();
336
337 m_size = size;
338 m_data = data;
339}
340
341void *wxCustomDataObject::Alloc(size_t size)
342{
343 return (void *)new char[size];
344}
345
346void wxCustomDataObject::Free()
347{
5bcea60e 348 delete [] (char *)m_data;
3f364be8
VZ
349 m_size = 0;
350 m_data = (void *)NULL;
351}
352
353size_t wxCustomDataObject::GetDataSize() const
354{
355 return GetSize();
356}
357
358bool wxCustomDataObject::GetDataHere(void *buf) const
359{
360 void *data = GetData();
361 if ( !data )
362 return FALSE;
363
364 memcpy(buf, data, GetSize());
365
366 return TRUE;
367}
368
9e2896e5 369bool wxCustomDataObject::SetData(size_t size, const void *buf)
3f364be8
VZ
370{
371 Free();
372
373 m_data = Alloc(size);
374 if ( !m_data )
375 return FALSE;
376
9e2896e5 377 memcpy(m_data, buf, m_size = size);
3f364be8
VZ
378
379 return TRUE;
380}
381
8ee9d618
VZ
382// ============================================================================
383// some common dnd related code
384// ============================================================================
385
8fb3a512
JS
386#if wxUSE_DRAG_AND_DROP
387
8ee9d618
VZ
388#include "wx/dnd.h"
389
390// ----------------------------------------------------------------------------
391// wxTextDropTarget
392// ----------------------------------------------------------------------------
393
f3ac12aa
VZ
394// NB: we can't use "new" in ctor initializer lists because this provokes an
395// internal compiler error with VC++ 5.0 (hey, even gcc compiles this!),
396// so use SetDataObject() instead
397
8ee9d618 398wxTextDropTarget::wxTextDropTarget()
8ee9d618 399{
f3ac12aa 400 SetDataObject(new wxTextDataObject);
8ee9d618
VZ
401}
402
403wxDragResult wxTextDropTarget::OnData(wxCoord x, wxCoord y, wxDragResult def)
404{
405 if ( !GetData() )
406 return wxDragNone;
407
408 wxTextDataObject *dobj = (wxTextDataObject *)m_dataObject;
409 return OnDropText(x, y, dobj->GetText()) ? def : wxDragNone;
410}
411
412// ----------------------------------------------------------------------------
413// wxFileDropTarget
414// ----------------------------------------------------------------------------
415
416wxFileDropTarget::wxFileDropTarget()
8ee9d618 417{
f3ac12aa 418 SetDataObject(new wxFileDataObject);
8ee9d618
VZ
419}
420
421wxDragResult wxFileDropTarget::OnData(wxCoord x, wxCoord y, wxDragResult def)
422{
423 if ( !GetData() )
424 return wxDragNone;
425
426 wxFileDataObject *dobj = (wxFileDataObject *)m_dataObject;
427 return OnDropFiles(x, y, dobj->GetFilenames()) ? def : wxDragNone;
428}
429
1e6feb95 430#endif // wxUSE_DRAG_AND_DROP
8fb3a512 431
1e6feb95 432#endif // wxUSE_DATAOBJ