]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/dataobj.cpp
fixed compilation of STL non-UTF8 builds
[wxWidgets.git] / src / gtk / dataobj.cpp
CommitLineData
8b53e5a2 1///////////////////////////////////////////////////////////////////////////////
e4db172a 2// Name: src/gtk/dataobj.cpp
8b53e5a2
RR
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
e4db172a
WS
13#if wxUSE_DATAOBJ
14
8b53e5a2 15#include "wx/dataobj.h"
14631f7f 16
e4db172a
WS
17#ifndef WX_PRECOMP
18 #include "wx/log.h"
670f9935 19 #include "wx/app.h"
155ecd4c 20 #include "wx/image.h"
e4db172a 21#endif
14631f7f 22
e2acb9ae 23#include "wx/mstream.h"
174f2229 24#include "wx/uri.h"
0d2a2b60 25
e808cf8a 26#include "wx/gtk/private.h"
0d2a2b60 27
d6086ea6
RR
28//-------------------------------------------------------------------------
29// global data
30//-------------------------------------------------------------------------
31
32GdkAtom g_textAtom = 0;
c7d6d883 33GdkAtom g_altTextAtom = 0;
e2acb9ae 34GdkAtom g_pngAtom = 0;
1dd989e1 35GdkAtom g_fileAtom = 0;
d6086ea6 36
0d2a2b60
RR
37//-------------------------------------------------------------------------
38// wxDataFormat
39//-------------------------------------------------------------------------
40
cd5bf2a6 41wxDataFormat::wxDataFormat()
0d2a2b60 42{
4b3d29db
VZ
43 // do *not* call PrepareFormats() from here for 2 reasons:
44 //
45 // 1. we will have time to do it later because some other Set function
46 // must be called before we really need them
47 //
48 // 2. doing so prevents us from declaring global wxDataFormats because
49 // calling PrepareFormats (and thus gdk_atom_intern) before GDK is
50 // initialised will result in a crash
cd5bf2a6 51 m_type = wxDF_INVALID;
1dd989e1 52 m_format = (GdkAtom) 0;
cd5bf2a6
RR
53}
54
3f480da3 55wxDataFormat::wxDataFormat( wxDataFormatId type )
cd5bf2a6 56{
e2acb9ae 57 PrepareFormats();
cd5bf2a6 58 SetType( type );
0d2a2b60
RR
59}
60
b5be07d4 61wxDataFormat::wxDataFormat( const wxChar *id )
8a126fcc 62{
e2acb9ae 63 PrepareFormats();
8a126fcc
RR
64 SetId( id );
65}
66
0d2a2b60
RR
67wxDataFormat::wxDataFormat( const wxString &id )
68{
e2acb9ae 69 PrepareFormats();
cd5bf2a6 70 SetId( id );
0d2a2b60
RR
71}
72
1dd989e1 73wxDataFormat::wxDataFormat( NativeFormat format )
0d2a2b60 74{
e2acb9ae 75 PrepareFormats();
1dd989e1 76 SetId( format );
0d2a2b60
RR
77}
78
3f480da3 79void wxDataFormat::SetType( wxDataFormatId type )
cd5bf2a6 80{
4b3d29db 81 PrepareFormats();
3d257b8d 82
ca11abde 83 m_type = type;
3d257b8d 84
810324c8
VS
85#if wxUSE_UNICODE
86 if (m_type == wxDF_UNICODETEXT)
87 m_format = g_textAtom;
88 else if (m_type == wxDF_TEXT)
89 m_format = g_altTextAtom;
90#else
c7d6d883 91 if (m_type == wxDF_TEXT || m_type == wxDF_UNICODETEXT)
1dd989e1 92 m_format = g_textAtom;
810324c8 93#endif
cd5bf2a6
RR
94 else
95 if (m_type == wxDF_BITMAP)
1dd989e1 96 m_format = g_pngAtom;
cd5bf2a6
RR
97 else
98 if (m_type == wxDF_FILENAME)
1dd989e1 99 m_format = g_fileAtom;
cd5bf2a6
RR
100 else
101 {
223d09f6 102 wxFAIL_MSG( wxT("invalid dataformat") );
cd5bf2a6 103 }
cd5bf2a6 104}
3f480da3
VZ
105
106wxDataFormatId wxDataFormat::GetType() const
0d2a2b60
RR
107{
108 return m_type;
109}
110
111wxString wxDataFormat::GetId() const
112{
e808cf8a
PC
113 wxGtkString atom_name(gdk_atom_name(m_format));
114 return wxString::FromAscii(atom_name);
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
c7d6d883
RR
210// ----------------------------------------------------------------------------
211// wxTextDataObject
212// ----------------------------------------------------------------------------
213
214#if defined(__WXGTK20__) && wxUSE_UNICODE
215void wxTextDataObject::GetAllFormats(wxDataFormat *formats, wxDataObjectBase::Direction dir) const
216{
217 *formats++ = GetPreferredFormat();
218 *formats = g_altTextAtom;
219}
220#endif
221
8b53e5a2
RR
222// ----------------------------------------------------------------------------
223// wxFileDataObject
224// ----------------------------------------------------------------------------
225
e1ee679c 226bool wxFileDataObject::GetDataHere(void *buf) const
0d2a2b60 227{
b068c4e8 228 wxString filenames;
4b3d29db 229
b068c4e8
RR
230 for (size_t i = 0; i < m_filenames.GetCount(); i++)
231 {
a1696b86 232 filenames += wxT("file:");
b068c4e8 233 filenames += m_filenames[i];
a1696b86 234 filenames += wxT("\r\n");
b068c4e8 235 }
4b3d29db 236
155ecd4c 237 memcpy( buf, filenames.mbc_str(), filenames.length() + 1 );
0d2a2b60 238
670f9935 239 return true;
0d2a2b60 240}
3f480da3 241
e1ee679c 242size_t wxFileDataObject::GetDataSize() const
0d2a2b60 243{
b068c4e8 244 size_t res = 0;
4b3d29db 245
b068c4e8
RR
246 for (size_t i = 0; i < m_filenames.GetCount(); i++)
247 {
a1696b86 248 // This is junk in UTF-8
155ecd4c 249 res += m_filenames[i].length();
a1696b86 250 res += 5 + 2; // "file:" (5) + "\r\n" (2)
b068c4e8 251 }
4b3d29db 252
b068c4e8 253 return res + 1;
0d2a2b60 254}
3f480da3 255
7941ba11 256bool wxFileDataObject::SetData(size_t WXUNUSED(size), const void *buf)
0d2a2b60 257{
810b5e1f
VZ
258 m_filenames.Empty();
259
e188df5d
VZ
260 // we get data in the text/uri-list format, i.e. as a sequence of URIs
261 // (filenames prefixed by "file:") delimited by "\r\n"
810b5e1f 262 wxString filename;
74d38ad8 263 for ( const char *p = (const char *)buf; ; p++ )
810b5e1f 264 {
74d38ad8
VZ
265 // some broken programs (testdnd GTK+ sample!) omit the trailing
266 // "\r\n", so check for '\0' explicitly here instead of doing it in
267 // the loop statement to account for it
268 if ( (*p == '\r' && *(p+1) == '\n') || !*p )
810b5e1f 269 {
74d38ad8 270 size_t lenPrefix = 5; // strlen("file:")
810b5e1f
VZ
271 if ( filename.Left(lenPrefix).MakeLower() == _T("file:") )
272 {
74d38ad8
VZ
273 // sometimes the syntax is "file:filename", sometimes it's
274 // URL-like: "file://filename" - deal with both
275 if ( filename[lenPrefix] == _T('/') &&
276 filename[lenPrefix + 1] == _T('/') )
277 {
278 // skip the slashes
279 lenPrefix += 2;
280 }
f4322df6 281
bb5b7285
RR
282 // It would probably be nicer to use a GTK or Glib
283 // function to unescape the 8-bit strings pointed to
284 // by buf, but this does the same in wx code.
285 wxString filename_unicode = wxURI::Unescape(filename.c_str() + lenPrefix);
286 wxCharBuffer filename_8bit = wxConvISO8859_1.cWX2MB( filename_unicode );
287 filename_unicode = wxConvFileName->cMB2WX( filename_8bit );
288 AddFile( filename_unicode );
74d38ad8
VZ
289 filename.Empty();
290 }
1906f9df 291 else if ( !filename.empty() )
74d38ad8 292 {
1906f9df 293 wxLogDebug(_T("Unsupported URI \"%s\" in wxFileDataObject"),
74d38ad8 294 filename.c_str());
810b5e1f
VZ
295 }
296
74d38ad8
VZ
297 if ( !*p )
298 break;
810b5e1f
VZ
299
300 // skip '\r'
301 p++;
302 }
303 else
304 {
bb5b7285 305 // The string is in ISO-8859-1 according to XDND spec
810b5e1f
VZ
306 filename += *p;
307 }
2d68e1b4 308 }
3f480da3 309
670f9935 310 return true;
1dd989e1
RR
311}
312
b068c4e8
RR
313void wxFileDataObject::AddFile( const wxString &filename )
314{
315 m_filenames.Add( filename );
316}
317
8b53e5a2
RR
318// ----------------------------------------------------------------------------
319// wxBitmapDataObject
320// ----------------------------------------------------------------------------
321
0d2a2b60
RR
322wxBitmapDataObject::wxBitmapDataObject()
323{
e1ee679c 324 Init();
0d2a2b60
RR
325}
326
327wxBitmapDataObject::wxBitmapDataObject( const wxBitmap& bitmap )
e1ee679c 328 : wxBitmapDataObjectBase(bitmap)
0d2a2b60 329{
e1ee679c
VZ
330 Init();
331
e2acb9ae
RR
332 DoConvertToPng();
333}
334
335wxBitmapDataObject::~wxBitmapDataObject()
336{
e1ee679c 337 Clear();
0d2a2b60
RR
338}
339
340void wxBitmapDataObject::SetBitmap( const wxBitmap &bitmap )
341{
e1ee679c 342 ClearAll();
0d2a2b60 343
e1ee679c
VZ
344 wxBitmapDataObjectBase::SetBitmap(bitmap);
345
346 DoConvertToPng();
0d2a2b60
RR
347}
348
e1ee679c 349bool wxBitmapDataObject::GetDataHere(void *buf) const
0d2a2b60 350{
e1ee679c 351 if ( !m_pngSize )
1dd989e1 352 {
e1ee679c
VZ
353 wxFAIL_MSG( wxT("attempt to copy empty bitmap failed") );
354
670f9935 355 return false;
1dd989e1 356 }
0d2a2b60 357
e1ee679c
VZ
358 memcpy(buf, m_pngData, m_pngSize);
359
670f9935 360 return true;
e2acb9ae
RR
361}
362
e1ee679c 363bool wxBitmapDataObject::SetData(size_t size, const void *buf)
e2acb9ae 364{
e1ee679c
VZ
365 Clear();
366
bd3b7e09 367 wxCHECK_MSG( wxImage::FindHandler(wxBITMAP_TYPE_PNG) != NULL,
670f9935 368 false, wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") );
bd3b7e09 369
1dd989e1 370 m_pngSize = size;
e1ee679c
VZ
371 m_pngData = malloc(m_pngSize);
372
bd3b7e09 373 memcpy(m_pngData, buf, m_pngSize);
e1ee679c 374
bd3b7e09 375 wxMemoryInputStream mstream((char*) m_pngData, m_pngSize);
e2acb9ae 376 wxImage image;
bd3b7e09 377 if ( !image.LoadFile( mstream, wxBITMAP_TYPE_PNG ) )
e1ee679c 378 {
670f9935 379 return false;
e1ee679c
VZ
380 }
381
bd3b7e09 382 m_bitmap = wxBitmap(image);
4b3d29db 383
b068c4e8 384 return m_bitmap.Ok();
e2acb9ae
RR
385}
386
387void wxBitmapDataObject::DoConvertToPng()
388{
bd3b7e09 389 if ( !m_bitmap.Ok() )
e1ee679c
VZ
390 return;
391
bd3b7e09
VS
392 wxCHECK_RET( wxImage::FindHandler(wxBITMAP_TYPE_PNG) != NULL,
393 wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") );
394
368d59f0 395 wxImage image = m_bitmap.ConvertToImage();
e1ee679c 396
e2acb9ae 397 wxCountingOutputStream count;
bd3b7e09 398 image.SaveFile(count, wxBITMAP_TYPE_PNG);
e1ee679c 399
e2acb9ae 400 m_pngSize = count.GetSize() + 100; // sometimes the size seems to vary ???
e1ee679c
VZ
401 m_pngData = malloc(m_pngSize);
402
bd3b7e09
VS
403 wxMemoryOutputStream mstream((char*) m_pngData, m_pngSize);
404 image.SaveFile(mstream, wxBITMAP_TYPE_PNG);
0d2a2b60 405}
3f480da3 406
14631f7f 407#endif // wxUSE_DATAOBJ