]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/dataobj.cpp
really fix binary backwards compatibility for wxMotif
[wxWidgets.git] / src / gtk / dataobj.cpp
CommitLineData
8b53e5a2
RR
1///////////////////////////////////////////////////////////////////////////////
2// Name: dataobj.cpp
3// Purpose: wxDataObject class
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
8b53e5a2
RR
8///////////////////////////////////////////////////////////////////////////////
9
14f355c2 10#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
3f480da3 11 #pragma implementation "dataobj.h"
8b53e5a2
RR
12#endif
13
14f355c2
VS
14// For compilers that support precompilation, includes "wx.h".
15#include "wx/wxprec.h"
16
8b53e5a2 17#include "wx/dataobj.h"
14631f7f
MR
18
19#if wxUSE_DATAOBJ
20
ab8884ac 21#include "wx/app.h"
0d2a2b60 22#include "wx/debug.h"
e2acb9ae
RR
23#include "wx/mstream.h"
24#include "wx/image.h"
1fb35ade 25#include "wx/log.h"
174f2229 26#include "wx/uri.h"
0d2a2b60 27
071a2d78 28#include <gdk/gdk.h>
0d2a2b60 29
d6086ea6
RR
30//-------------------------------------------------------------------------
31// global data
32//-------------------------------------------------------------------------
33
34GdkAtom g_textAtom = 0;
c7d6d883 35GdkAtom g_altTextAtom = 0;
e2acb9ae 36GdkAtom g_pngAtom = 0;
1dd989e1 37GdkAtom g_fileAtom = 0;
d6086ea6 38
0d2a2b60
RR
39//-------------------------------------------------------------------------
40// wxDataFormat
41//-------------------------------------------------------------------------
42
cd5bf2a6 43wxDataFormat::wxDataFormat()
0d2a2b60 44{
4b3d29db
VZ
45 // do *not* call PrepareFormats() from here for 2 reasons:
46 //
47 // 1. we will have time to do it later because some other Set function
48 // must be called before we really need them
49 //
50 // 2. doing so prevents us from declaring global wxDataFormats because
51 // calling PrepareFormats (and thus gdk_atom_intern) before GDK is
52 // initialised will result in a crash
cd5bf2a6 53 m_type = wxDF_INVALID;
1dd989e1 54 m_format = (GdkAtom) 0;
cd5bf2a6
RR
55}
56
3f480da3 57wxDataFormat::wxDataFormat( wxDataFormatId type )
cd5bf2a6 58{
e2acb9ae 59 PrepareFormats();
cd5bf2a6 60 SetType( type );
0d2a2b60
RR
61}
62
b5be07d4 63wxDataFormat::wxDataFormat( const wxChar *id )
8a126fcc 64{
e2acb9ae 65 PrepareFormats();
8a126fcc
RR
66 SetId( id );
67}
68
0d2a2b60
RR
69wxDataFormat::wxDataFormat( const wxString &id )
70{
e2acb9ae 71 PrepareFormats();
cd5bf2a6 72 SetId( id );
0d2a2b60
RR
73}
74
1dd989e1 75wxDataFormat::wxDataFormat( NativeFormat format )
0d2a2b60 76{
e2acb9ae 77 PrepareFormats();
1dd989e1 78 SetId( format );
0d2a2b60
RR
79}
80
3f480da3 81void wxDataFormat::SetType( wxDataFormatId type )
cd5bf2a6 82{
4b3d29db 83 PrepareFormats();
ca11abde 84
ca11abde
RR
85 m_type = type;
86
810324c8
VS
87#if wxUSE_UNICODE
88 if (m_type == wxDF_UNICODETEXT)
89 m_format = g_textAtom;
90 else if (m_type == wxDF_TEXT)
91 m_format = g_altTextAtom;
92#else
c7d6d883 93 if (m_type == wxDF_TEXT || m_type == wxDF_UNICODETEXT)
1dd989e1 94 m_format = g_textAtom;
810324c8 95#endif
cd5bf2a6
RR
96 else
97 if (m_type == wxDF_BITMAP)
1dd989e1 98 m_format = g_pngAtom;
cd5bf2a6
RR
99 else
100 if (m_type == wxDF_FILENAME)
1dd989e1 101 m_format = g_fileAtom;
cd5bf2a6
RR
102 else
103 {
223d09f6 104 wxFAIL_MSG( wxT("invalid dataformat") );
cd5bf2a6 105 }
cd5bf2a6 106}
3f480da3
VZ
107
108wxDataFormatId wxDataFormat::GetType() const
0d2a2b60
RR
109{
110 return m_type;
111}
112
113wxString wxDataFormat::GetId() const
114{
2e1d7104 115 wxString ret = wxString::FromAscii( gdk_atom_name( m_format ) );
1dd989e1 116 return ret;
0d2a2b60 117}
3f480da3 118
1dd989e1 119void wxDataFormat::SetId( NativeFormat format )
3f480da3 120{
4b3d29db 121 PrepareFormats();
1dd989e1 122 m_format = format;
3f480da3 123
1dd989e1 124 if (m_format == g_textAtom)
810324c8
VS
125#if wxUSE_UNICODE
126 m_type = wxDF_UNICODETEXT;
127#else
128 m_type = wxDF_TEXT;
129#endif
130 else
131 if (m_format == g_altTextAtom)
1dd989e1
RR
132 m_type = wxDF_TEXT;
133 else
134 if (m_format == g_pngAtom)
135 m_type = wxDF_BITMAP;
136 else
137 if (m_format == g_fileAtom)
138 m_type = wxDF_FILENAME;
139 else
140 m_type = wxDF_PRIVATE;
0d2a2b60 141}
3f480da3 142
1dd989e1 143void wxDataFormat::SetId( const wxChar *id )
0d2a2b60 144{
4b3d29db 145 PrepareFormats();
1dd989e1
RR
146 m_type = wxDF_PRIVATE;
147 wxString tmp( id );
2e1d7104 148 m_format = gdk_atom_intern( (const char*) tmp.ToAscii(), FALSE );
0d2a2b60 149}
3f480da3 150
1dd989e1 151void wxDataFormat::PrepareFormats()
0d2a2b60 152{
810b5e1f 153 // VZ: GNOME included in RedHat 6.1 uses the MIME types below and not the
74d38ad8
VZ
154 // atoms STRING and file:ALL as the old code was, but normal X apps
155 // use STRING for text selection when transfering the data via
156 // clipboard, for example, so do use STRING for now (GNOME apps will
157 // probably support STRING as well for compatibility anyhow), but use
158 // text/uri-list for file dnd because compatibility is not important
159 // here (with whom?)
e1ee679c 160 if (!g_textAtom)
2e1d7104 161#if wxUSE_UNICODE
ca11abde 162 g_textAtom = gdk_atom_intern( "UTF8_STRING", FALSE );
c7d6d883 163 g_altTextAtom = gdk_atom_intern( "STRING", FALSE );
2e1d7104 164#else
74d38ad8 165 g_textAtom = gdk_atom_intern( "STRING" /* "text/plain" */, FALSE );
2e1d7104 166#endif
e1ee679c 167 if (!g_pngAtom)
1dd989e1 168 g_pngAtom = gdk_atom_intern( "image/png", FALSE );
e1ee679c 169 if (!g_fileAtom)
810b5e1f 170 g_fileAtom = gdk_atom_intern( "text/uri-list", FALSE );
0d2a2b60 171}
8b53e5a2
RR
172
173//-------------------------------------------------------------------------
174// wxDataObject
175//-------------------------------------------------------------------------
176
0d2a2b60
RR
177wxDataObject::wxDataObject()
178{
0d2a2b60 179}
3f480da3 180
2b5f62a0
VZ
181wxDataObject::~wxDataObject()
182{
183 // dtor is empty but needed for Darwin and AIX -- otherwise it doesn't link
184}
185
b068c4e8 186bool wxDataObject::IsSupportedFormat(const wxDataFormat& format, Direction dir) const
0d2a2b60 187{
b068c4e8 188 size_t nFormatCount = GetFormatCount(dir);
f2593d0d
RR
189 if ( nFormatCount == 1 )
190 {
1dd989e1
RR
191 return format == GetPreferredFormat();
192 }
f2593d0d
RR
193 else
194 {
1dd989e1 195 wxDataFormat *formats = new wxDataFormat[nFormatCount];
b068c4e8 196 GetAllFormats(formats,dir);
1dd989e1
RR
197
198 size_t n;
f2593d0d
RR
199 for ( n = 0; n < nFormatCount; n++ )
200 {
1dd989e1
RR
201 if ( formats[n] == format )
202 break;
203 }
0d2a2b60 204
1dd989e1 205 delete [] formats;
cd5bf2a6 206
1dd989e1
RR
207 // found?
208 return n < nFormatCount;
209 }
0d2a2b60
RR
210}
211
c7d6d883
RR
212// ----------------------------------------------------------------------------
213// wxTextDataObject
214// ----------------------------------------------------------------------------
215
216#if defined(__WXGTK20__) && wxUSE_UNICODE
217void wxTextDataObject::GetAllFormats(wxDataFormat *formats, wxDataObjectBase::Direction dir) const
218{
219 *formats++ = GetPreferredFormat();
220 *formats = g_altTextAtom;
221}
222#endif
223
8b53e5a2
RR
224// ----------------------------------------------------------------------------
225// wxFileDataObject
226// ----------------------------------------------------------------------------
227
e1ee679c 228bool wxFileDataObject::GetDataHere(void *buf) const
0d2a2b60 229{
b068c4e8 230 wxString filenames;
4b3d29db 231
b068c4e8
RR
232 for (size_t i = 0; i < m_filenames.GetCount(); i++)
233 {
a1696b86 234 filenames += wxT("file:");
b068c4e8 235 filenames += m_filenames[i];
a1696b86 236 filenames += wxT("\r\n");
b068c4e8 237 }
4b3d29db 238
e1ee679c 239 memcpy( buf, filenames.mbc_str(), filenames.Len() + 1 );
0d2a2b60 240
e1ee679c 241 return TRUE;
0d2a2b60 242}
3f480da3 243
e1ee679c 244size_t wxFileDataObject::GetDataSize() const
0d2a2b60 245{
b068c4e8 246 size_t res = 0;
4b3d29db 247
b068c4e8
RR
248 for (size_t i = 0; i < m_filenames.GetCount(); i++)
249 {
a1696b86 250 // This is junk in UTF-8
b068c4e8 251 res += m_filenames[i].Len();
a1696b86 252 res += 5 + 2; // "file:" (5) + "\r\n" (2)
b068c4e8 253 }
4b3d29db 254
b068c4e8 255 return res + 1;
0d2a2b60 256}
3f480da3 257
7941ba11 258bool wxFileDataObject::SetData(size_t WXUNUSED(size), const void *buf)
0d2a2b60 259{
810b5e1f
VZ
260 m_filenames.Empty();
261
e188df5d
VZ
262 // we get data in the text/uri-list format, i.e. as a sequence of URIs
263 // (filenames prefixed by "file:") delimited by "\r\n"
810b5e1f 264 wxString filename;
74d38ad8 265 for ( const char *p = (const char *)buf; ; p++ )
810b5e1f 266 {
74d38ad8
VZ
267 // some broken programs (testdnd GTK+ sample!) omit the trailing
268 // "\r\n", so check for '\0' explicitly here instead of doing it in
269 // the loop statement to account for it
270 if ( (*p == '\r' && *(p+1) == '\n') || !*p )
810b5e1f 271 {
74d38ad8 272 size_t lenPrefix = 5; // strlen("file:")
810b5e1f
VZ
273 if ( filename.Left(lenPrefix).MakeLower() == _T("file:") )
274 {
74d38ad8
VZ
275 // sometimes the syntax is "file:filename", sometimes it's
276 // URL-like: "file://filename" - deal with both
277 if ( filename[lenPrefix] == _T('/') &&
278 filename[lenPrefix + 1] == _T('/') )
279 {
280 // skip the slashes
281 lenPrefix += 2;
282 }
283
174f2229 284 AddFile(wxURI::Unescape(filename.c_str() + lenPrefix));
74d38ad8
VZ
285 filename.Empty();
286 }
287 else
288 {
289 wxLogDebug(_T("Unsupported URI '%s' in wxFileDataObject"),
290 filename.c_str());
810b5e1f
VZ
291 }
292
74d38ad8
VZ
293 if ( !*p )
294 break;
810b5e1f
VZ
295
296 // skip '\r'
297 p++;
298 }
299 else
300 {
301 filename += *p;
302 }
2d68e1b4 303 }
3f480da3 304
1dd989e1
RR
305 return TRUE;
306}
307
b068c4e8
RR
308void wxFileDataObject::AddFile( const wxString &filename )
309{
310 m_filenames.Add( filename );
311}
312
8b53e5a2
RR
313// ----------------------------------------------------------------------------
314// wxBitmapDataObject
315// ----------------------------------------------------------------------------
316
0d2a2b60
RR
317wxBitmapDataObject::wxBitmapDataObject()
318{
e1ee679c 319 Init();
0d2a2b60
RR
320}
321
322wxBitmapDataObject::wxBitmapDataObject( const wxBitmap& bitmap )
e1ee679c 323 : wxBitmapDataObjectBase(bitmap)
0d2a2b60 324{
e1ee679c
VZ
325 Init();
326
e2acb9ae
RR
327 DoConvertToPng();
328}
329
330wxBitmapDataObject::~wxBitmapDataObject()
331{
e1ee679c 332 Clear();
0d2a2b60
RR
333}
334
335void wxBitmapDataObject::SetBitmap( const wxBitmap &bitmap )
336{
e1ee679c 337 ClearAll();
0d2a2b60 338
e1ee679c
VZ
339 wxBitmapDataObjectBase::SetBitmap(bitmap);
340
341 DoConvertToPng();
0d2a2b60
RR
342}
343
e1ee679c 344bool wxBitmapDataObject::GetDataHere(void *buf) const
0d2a2b60 345{
e1ee679c 346 if ( !m_pngSize )
1dd989e1 347 {
e1ee679c
VZ
348 wxFAIL_MSG( wxT("attempt to copy empty bitmap failed") );
349
350 return FALSE;
1dd989e1 351 }
0d2a2b60 352
e1ee679c
VZ
353 memcpy(buf, m_pngData, m_pngSize);
354
355 return TRUE;
e2acb9ae
RR
356}
357
e1ee679c 358bool wxBitmapDataObject::SetData(size_t size, const void *buf)
e2acb9ae 359{
e1ee679c
VZ
360 Clear();
361
bd3b7e09
VS
362 wxCHECK_MSG( wxImage::FindHandler(wxBITMAP_TYPE_PNG) != NULL,
363 FALSE, wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") );
364
1dd989e1 365 m_pngSize = size;
e1ee679c
VZ
366 m_pngData = malloc(m_pngSize);
367
bd3b7e09 368 memcpy(m_pngData, buf, m_pngSize);
e1ee679c 369
bd3b7e09 370 wxMemoryInputStream mstream((char*) m_pngData, m_pngSize);
e2acb9ae 371 wxImage image;
bd3b7e09 372 if ( !image.LoadFile( mstream, wxBITMAP_TYPE_PNG ) )
e1ee679c
VZ
373 {
374 return FALSE;
375 }
376
bd3b7e09 377 m_bitmap = wxBitmap(image);
4b3d29db 378
b068c4e8 379 return m_bitmap.Ok();
e2acb9ae
RR
380}
381
382void wxBitmapDataObject::DoConvertToPng()
383{
bd3b7e09 384 if ( !m_bitmap.Ok() )
e1ee679c
VZ
385 return;
386
bd3b7e09
VS
387 wxCHECK_RET( wxImage::FindHandler(wxBITMAP_TYPE_PNG) != NULL,
388 wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") );
389
368d59f0 390 wxImage image = m_bitmap.ConvertToImage();
e1ee679c 391
e2acb9ae 392 wxCountingOutputStream count;
bd3b7e09 393 image.SaveFile(count, wxBITMAP_TYPE_PNG);
e1ee679c 394
e2acb9ae 395 m_pngSize = count.GetSize() + 100; // sometimes the size seems to vary ???
e1ee679c
VZ
396 m_pngData = malloc(m_pngSize);
397
bd3b7e09
VS
398 wxMemoryOutputStream mstream((char*) m_pngData, m_pngSize);
399 image.SaveFile(mstream, wxBITMAP_TYPE_PNG);
0d2a2b60 400}
3f480da3 401
14631f7f 402#endif // wxUSE_DATAOBJ