]>
Commit | Line | Data |
---|---|---|
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 | ||
32 | GdkAtom g_textAtom = 0; | |
c7d6d883 | 33 | GdkAtom g_altTextAtom = 0; |
e2acb9ae | 34 | GdkAtom g_pngAtom = 0; |
1dd989e1 | 35 | GdkAtom g_fileAtom = 0; |
d6086ea6 | 36 | |
0d2a2b60 RR |
37 | //------------------------------------------------------------------------- |
38 | // wxDataFormat | |
39 | //------------------------------------------------------------------------- | |
40 | ||
cd5bf2a6 | 41 | wxDataFormat::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 | 55 | wxDataFormat::wxDataFormat( wxDataFormatId type ) |
cd5bf2a6 | 56 | { |
e2acb9ae | 57 | PrepareFormats(); |
cd5bf2a6 | 58 | SetType( type ); |
0d2a2b60 RR |
59 | } |
60 | ||
45344b38 | 61 | void wxDataFormat::InitFromString( const wxString &id ) |
0d2a2b60 | 62 | { |
e2acb9ae | 63 | PrepareFormats(); |
cd5bf2a6 | 64 | SetId( id ); |
0d2a2b60 RR |
65 | } |
66 | ||
1dd989e1 | 67 | wxDataFormat::wxDataFormat( NativeFormat format ) |
0d2a2b60 | 68 | { |
e2acb9ae | 69 | PrepareFormats(); |
1dd989e1 | 70 | SetId( format ); |
0d2a2b60 RR |
71 | } |
72 | ||
3f480da3 | 73 | void wxDataFormat::SetType( wxDataFormatId type ) |
cd5bf2a6 | 74 | { |
4b3d29db | 75 | PrepareFormats(); |
3d257b8d | 76 | |
ca11abde | 77 | m_type = type; |
3d257b8d | 78 | |
810324c8 VS |
79 | #if wxUSE_UNICODE |
80 | if (m_type == wxDF_UNICODETEXT) | |
81 | m_format = g_textAtom; | |
82 | else if (m_type == wxDF_TEXT) | |
83 | m_format = g_altTextAtom; | |
84 | #else | |
c7d6d883 | 85 | if (m_type == wxDF_TEXT || m_type == wxDF_UNICODETEXT) |
1dd989e1 | 86 | m_format = g_textAtom; |
810324c8 | 87 | #endif |
cd5bf2a6 RR |
88 | else |
89 | if (m_type == wxDF_BITMAP) | |
1dd989e1 | 90 | m_format = g_pngAtom; |
cd5bf2a6 RR |
91 | else |
92 | if (m_type == wxDF_FILENAME) | |
1dd989e1 | 93 | m_format = g_fileAtom; |
cd5bf2a6 RR |
94 | else |
95 | { | |
223d09f6 | 96 | wxFAIL_MSG( wxT("invalid dataformat") ); |
cd5bf2a6 | 97 | } |
cd5bf2a6 | 98 | } |
3f480da3 VZ |
99 | |
100 | wxDataFormatId wxDataFormat::GetType() const | |
0d2a2b60 RR |
101 | { |
102 | return m_type; | |
103 | } | |
104 | ||
105 | wxString wxDataFormat::GetId() const | |
106 | { | |
e808cf8a PC |
107 | wxGtkString atom_name(gdk_atom_name(m_format)); |
108 | return wxString::FromAscii(atom_name); | |
0d2a2b60 | 109 | } |
3f480da3 | 110 | |
1dd989e1 | 111 | void wxDataFormat::SetId( NativeFormat format ) |
3f480da3 | 112 | { |
4b3d29db | 113 | PrepareFormats(); |
1dd989e1 | 114 | m_format = format; |
3f480da3 | 115 | |
1dd989e1 | 116 | if (m_format == g_textAtom) |
810324c8 VS |
117 | #if wxUSE_UNICODE |
118 | m_type = wxDF_UNICODETEXT; | |
119 | #else | |
120 | m_type = wxDF_TEXT; | |
121 | #endif | |
122 | else | |
123 | if (m_format == g_altTextAtom) | |
1dd989e1 RR |
124 | m_type = wxDF_TEXT; |
125 | else | |
126 | if (m_format == g_pngAtom) | |
127 | m_type = wxDF_BITMAP; | |
128 | else | |
129 | if (m_format == g_fileAtom) | |
130 | m_type = wxDF_FILENAME; | |
131 | else | |
132 | m_type = wxDF_PRIVATE; | |
0d2a2b60 | 133 | } |
3f480da3 | 134 | |
a1eb65c2 | 135 | void wxDataFormat::SetId( const wxString& id ) |
0d2a2b60 | 136 | { |
4b3d29db | 137 | PrepareFormats(); |
1dd989e1 | 138 | m_type = wxDF_PRIVATE; |
a1eb65c2 | 139 | m_format = gdk_atom_intern( id.ToAscii(), FALSE ); |
0d2a2b60 | 140 | } |
3f480da3 | 141 | |
1dd989e1 | 142 | void wxDataFormat::PrepareFormats() |
0d2a2b60 | 143 | { |
810b5e1f | 144 | // VZ: GNOME included in RedHat 6.1 uses the MIME types below and not the |
74d38ad8 VZ |
145 | // atoms STRING and file:ALL as the old code was, but normal X apps |
146 | // use STRING for text selection when transfering the data via | |
147 | // clipboard, for example, so do use STRING for now (GNOME apps will | |
148 | // probably support STRING as well for compatibility anyhow), but use | |
149 | // text/uri-list for file dnd because compatibility is not important | |
150 | // here (with whom?) | |
e1ee679c | 151 | if (!g_textAtom) |
782158c2 | 152 | { |
2e1d7104 | 153 | #if wxUSE_UNICODE |
ca11abde | 154 | g_textAtom = gdk_atom_intern( "UTF8_STRING", FALSE ); |
c7d6d883 | 155 | g_altTextAtom = gdk_atom_intern( "STRING", FALSE ); |
2e1d7104 | 156 | #else |
74d38ad8 | 157 | g_textAtom = gdk_atom_intern( "STRING" /* "text/plain" */, FALSE ); |
2e1d7104 | 158 | #endif |
782158c2 | 159 | } |
e1ee679c | 160 | if (!g_pngAtom) |
1dd989e1 | 161 | g_pngAtom = gdk_atom_intern( "image/png", FALSE ); |
e1ee679c | 162 | if (!g_fileAtom) |
810b5e1f | 163 | g_fileAtom = gdk_atom_intern( "text/uri-list", FALSE ); |
0d2a2b60 | 164 | } |
8b53e5a2 RR |
165 | |
166 | //------------------------------------------------------------------------- | |
167 | // wxDataObject | |
168 | //------------------------------------------------------------------------- | |
169 | ||
0d2a2b60 RR |
170 | wxDataObject::wxDataObject() |
171 | { | |
0d2a2b60 | 172 | } |
3f480da3 | 173 | |
2b5f62a0 VZ |
174 | wxDataObject::~wxDataObject() |
175 | { | |
176 | // dtor is empty but needed for Darwin and AIX -- otherwise it doesn't link | |
177 | } | |
178 | ||
b068c4e8 | 179 | bool wxDataObject::IsSupportedFormat(const wxDataFormat& format, Direction dir) const |
0d2a2b60 | 180 | { |
b068c4e8 | 181 | size_t nFormatCount = GetFormatCount(dir); |
3d257b8d | 182 | if ( nFormatCount == 1 ) |
f2593d0d | 183 | { |
1dd989e1 RR |
184 | return format == GetPreferredFormat(); |
185 | } | |
3d257b8d | 186 | else |
f2593d0d | 187 | { |
1dd989e1 | 188 | wxDataFormat *formats = new wxDataFormat[nFormatCount]; |
b068c4e8 | 189 | GetAllFormats(formats,dir); |
1dd989e1 RR |
190 | |
191 | size_t n; | |
3d257b8d | 192 | for ( n = 0; n < nFormatCount; n++ ) |
f2593d0d | 193 | { |
1dd989e1 RR |
194 | if ( formats[n] == format ) |
195 | break; | |
196 | } | |
0d2a2b60 | 197 | |
1dd989e1 | 198 | delete [] formats; |
cd5bf2a6 | 199 | |
1dd989e1 RR |
200 | // found? |
201 | return n < nFormatCount; | |
202 | } | |
0d2a2b60 RR |
203 | } |
204 | ||
c7d6d883 RR |
205 | // ---------------------------------------------------------------------------- |
206 | // wxTextDataObject | |
207 | // ---------------------------------------------------------------------------- | |
208 | ||
ff654490 VZ |
209 | #if wxUSE_UNICODE |
210 | ||
e4161a2a VZ |
211 | void |
212 | wxTextDataObject::GetAllFormats(wxDataFormat *formats, | |
213 | wxDataObjectBase::Direction WXUNUSED(dir)) const | |
c7d6d883 RR |
214 | { |
215 | *formats++ = GetPreferredFormat(); | |
216 | *formats = g_altTextAtom; | |
217 | } | |
ff654490 VZ |
218 | |
219 | #endif // wxUSE_UNICODE | |
c7d6d883 | 220 | |
8b53e5a2 RR |
221 | // ---------------------------------------------------------------------------- |
222 | // wxFileDataObject | |
223 | // ---------------------------------------------------------------------------- | |
224 | ||
e1ee679c | 225 | bool wxFileDataObject::GetDataHere(void *buf) const |
0d2a2b60 | 226 | { |
b068c4e8 | 227 | wxString filenames; |
4b3d29db | 228 | |
b068c4e8 RR |
229 | for (size_t i = 0; i < m_filenames.GetCount(); i++) |
230 | { | |
a1696b86 | 231 | filenames += wxT("file:"); |
b068c4e8 | 232 | filenames += m_filenames[i]; |
a1696b86 | 233 | filenames += wxT("\r\n"); |
b068c4e8 | 234 | } |
4b3d29db | 235 | |
155ecd4c | 236 | memcpy( buf, filenames.mbc_str(), filenames.length() + 1 ); |
0d2a2b60 | 237 | |
670f9935 | 238 | return true; |
0d2a2b60 | 239 | } |
3f480da3 | 240 | |
e1ee679c | 241 | size_t wxFileDataObject::GetDataSize() const |
0d2a2b60 | 242 | { |
b068c4e8 | 243 | size_t res = 0; |
4b3d29db | 244 | |
b068c4e8 RR |
245 | for (size_t i = 0; i < m_filenames.GetCount(); i++) |
246 | { | |
a1696b86 | 247 | // This is junk in UTF-8 |
155ecd4c | 248 | res += m_filenames[i].length(); |
a1696b86 | 249 | res += 5 + 2; // "file:" (5) + "\r\n" (2) |
b068c4e8 | 250 | } |
4b3d29db | 251 | |
b068c4e8 | 252 | return res + 1; |
0d2a2b60 | 253 | } |
3f480da3 | 254 | |
7941ba11 | 255 | bool wxFileDataObject::SetData(size_t WXUNUSED(size), const void *buf) |
0d2a2b60 | 256 | { |
ead90b5f RR |
257 | // we get data in the text/uri-list format, i.e. as a sequence of URIs |
258 | // (filenames prefixed by "file:") delimited by "\r\n". size includes | |
259 | // the trailing zero (in theory, not for Nautilus in early GNOME | |
260 | // versions). | |
261 | ||
810b5e1f VZ |
262 | m_filenames.Empty(); |
263 | ||
ead90b5f RR |
264 | const gchar *nexttemp = (const gchar*) buf; |
265 | for ( ; ; ) | |
810b5e1f | 266 | { |
ead90b5f RR |
267 | int len = 0; |
268 | const gchar *temp = nexttemp; | |
269 | for (;;) | |
810b5e1f | 270 | { |
ead90b5f | 271 | if (temp[len] == 0) |
810b5e1f | 272 | { |
ead90b5f | 273 | if (len > 0) |
74d38ad8 | 274 | { |
ead90b5f RR |
275 | // if an app omits '\r''\n' |
276 | nexttemp = temp+len; | |
277 | break; | |
74d38ad8 | 278 | } |
ead90b5f RR |
279 | |
280 | return true; | |
74d38ad8 | 281 | } |
ead90b5f | 282 | if (temp[len] == '\r') |
74d38ad8 | 283 | { |
ead90b5f RR |
284 | if (temp[len+1] == '\n') |
285 | nexttemp = temp+len+2; | |
286 | else | |
287 | nexttemp = temp+len+1; | |
74d38ad8 | 288 | break; |
ead90b5f RR |
289 | } |
290 | len++; | |
810b5e1f | 291 | } |
ead90b5f RR |
292 | |
293 | if (len == 0) | |
294 | break; | |
295 | ||
296 | // required to give it a trailing zero | |
297 | gchar *uri = g_strndup( temp, len ); | |
298 | ||
299 | gchar *fn = g_filename_from_uri( uri, NULL, NULL ); | |
300 | ||
301 | g_free( uri ); | |
302 | ||
303 | if (fn) | |
810b5e1f | 304 | { |
ead90b5f RR |
305 | AddFile( wxConvFileName->cMB2WX( fn ) ); |
306 | g_free( fn ); | |
810b5e1f | 307 | } |
2d68e1b4 | 308 | } |
3f480da3 | 309 | |
670f9935 | 310 | return true; |
1dd989e1 RR |
311 | } |
312 | ||
b068c4e8 RR |
313 | void wxFileDataObject::AddFile( const wxString &filename ) |
314 | { | |
315 | m_filenames.Add( filename ); | |
316 | } | |
317 | ||
8b53e5a2 RR |
318 | // ---------------------------------------------------------------------------- |
319 | // wxBitmapDataObject | |
320 | // ---------------------------------------------------------------------------- | |
321 | ||
0d2a2b60 RR |
322 | wxBitmapDataObject::wxBitmapDataObject() |
323 | { | |
e1ee679c | 324 | Init(); |
0d2a2b60 RR |
325 | } |
326 | ||
327 | wxBitmapDataObject::wxBitmapDataObject( const wxBitmap& bitmap ) | |
e1ee679c | 328 | : wxBitmapDataObjectBase(bitmap) |
0d2a2b60 | 329 | { |
e1ee679c VZ |
330 | Init(); |
331 | ||
e2acb9ae RR |
332 | DoConvertToPng(); |
333 | } | |
334 | ||
335 | wxBitmapDataObject::~wxBitmapDataObject() | |
336 | { | |
e1ee679c | 337 | Clear(); |
0d2a2b60 RR |
338 | } |
339 | ||
340 | void 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 | 349 | bool 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 | 363 | bool 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 | ||
387 | void 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 | |
d613be55 RR |
407 | // ---------------------------------------------------------------------------- |
408 | // wxURLDataObject | |
409 | // ---------------------------------------------------------------------------- | |
410 | ||
411 | wxURLDataObject::wxURLDataObject(const wxString& url) : | |
412 | wxDataObjectSimple( wxDataFormat( gdk_atom_intern("text/x-moz-url",FALSE) ) ) | |
413 | { | |
414 | m_url = url; | |
415 | } | |
416 | ||
417 | size_t wxURLDataObject::GetDataSize() const | |
418 | { | |
419 | if (m_url.empty()) | |
420 | return 0; | |
421 | ||
422 | return 2*m_url.Len()+2; | |
423 | } | |
424 | ||
425 | bool wxURLDataObject::GetDataHere(void *buf) const | |
426 | { | |
427 | if (m_url.empty()) | |
428 | return false; | |
429 | ||
430 | wxCSConv conv( "UCS2" ); | |
431 | conv.FromWChar( (char*) buf, 2*m_url.Len()+2, m_url.wc_str() ); | |
432 | ||
433 | return true; | |
434 | } | |
435 | ||
436 | // copy data from buffer to our data | |
437 | bool wxURLDataObject::SetData(size_t len, const void *buf) | |
438 | { | |
439 | if (len == 0) | |
440 | { | |
441 | m_url = wxEmptyString; | |
442 | return false; | |
443 | } | |
444 | ||
445 | wxCSConv conv( "UCS2" ); | |
446 | wxWCharBuffer res = conv.cMB2WC( (const char*) buf ); | |
447 | m_url = res; | |
448 | int pos = m_url.Find( '\n' ); | |
449 | if (pos != wxNOT_FOUND) | |
450 | m_url.Remove( pos, m_url.Len() - pos ); | |
451 | ||
452 | return true; | |
453 | } | |
454 | ||
455 | ||
14631f7f | 456 | #endif // wxUSE_DATAOBJ |