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