]>
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; | |
73597f8a VZ |
84 | #else // !wxUSE_UNICODE |
85 | // notice that we don't map wxDF_UNICODETEXT to g_textAtom here, this | |
86 | // would lead the code elsewhere to treat data objects with this format as | |
87 | // containing UTF-8 data which is not true | |
88 | if (m_type == wxDF_TEXT) | |
1dd989e1 | 89 | m_format = g_textAtom; |
73597f8a | 90 | #endif // wxUSE_UNICODE/!wxUSE_UNICODE |
cd5bf2a6 RR |
91 | else |
92 | if (m_type == wxDF_BITMAP) | |
1dd989e1 | 93 | m_format = g_pngAtom; |
cd5bf2a6 RR |
94 | else |
95 | if (m_type == wxDF_FILENAME) | |
1dd989e1 | 96 | m_format = g_fileAtom; |
cd5bf2a6 RR |
97 | else |
98 | { | |
223d09f6 | 99 | wxFAIL_MSG( wxT("invalid dataformat") ); |
cd5bf2a6 | 100 | } |
cd5bf2a6 | 101 | } |
3f480da3 VZ |
102 | |
103 | wxDataFormatId wxDataFormat::GetType() const | |
0d2a2b60 RR |
104 | { |
105 | return m_type; | |
106 | } | |
107 | ||
108 | wxString wxDataFormat::GetId() const | |
109 | { | |
e808cf8a PC |
110 | wxGtkString atom_name(gdk_atom_name(m_format)); |
111 | return wxString::FromAscii(atom_name); | |
0d2a2b60 | 112 | } |
3f480da3 | 113 | |
1dd989e1 | 114 | void wxDataFormat::SetId( NativeFormat format ) |
3f480da3 | 115 | { |
4b3d29db | 116 | PrepareFormats(); |
1dd989e1 | 117 | m_format = format; |
3f480da3 | 118 | |
1dd989e1 | 119 | if (m_format == g_textAtom) |
810324c8 VS |
120 | #if wxUSE_UNICODE |
121 | m_type = wxDF_UNICODETEXT; | |
122 | #else | |
123 | m_type = wxDF_TEXT; | |
124 | #endif | |
125 | else | |
126 | if (m_format == g_altTextAtom) | |
1dd989e1 RR |
127 | m_type = wxDF_TEXT; |
128 | else | |
129 | if (m_format == g_pngAtom) | |
130 | m_type = wxDF_BITMAP; | |
131 | else | |
132 | if (m_format == g_fileAtom) | |
133 | m_type = wxDF_FILENAME; | |
134 | else | |
135 | m_type = wxDF_PRIVATE; | |
0d2a2b60 | 136 | } |
3f480da3 | 137 | |
a1eb65c2 | 138 | void wxDataFormat::SetId( const wxString& id ) |
0d2a2b60 | 139 | { |
4b3d29db | 140 | PrepareFormats(); |
1dd989e1 | 141 | m_type = wxDF_PRIVATE; |
a1eb65c2 | 142 | m_format = gdk_atom_intern( id.ToAscii(), FALSE ); |
0d2a2b60 | 143 | } |
3f480da3 | 144 | |
1dd989e1 | 145 | void wxDataFormat::PrepareFormats() |
0d2a2b60 | 146 | { |
810b5e1f | 147 | // VZ: GNOME included in RedHat 6.1 uses the MIME types below and not the |
74d38ad8 | 148 | // atoms STRING and file:ALL as the old code was, but normal X apps |
27781f63 | 149 | // use STRING for text selection when transferring the data via |
74d38ad8 VZ |
150 | // clipboard, for example, so do use STRING for now (GNOME apps will |
151 | // probably support STRING as well for compatibility anyhow), but use | |
152 | // text/uri-list for file dnd because compatibility is not important | |
153 | // here (with whom?) | |
e1ee679c | 154 | if (!g_textAtom) |
782158c2 | 155 | { |
2e1d7104 | 156 | #if wxUSE_UNICODE |
ca11abde | 157 | g_textAtom = gdk_atom_intern( "UTF8_STRING", FALSE ); |
c7d6d883 | 158 | g_altTextAtom = gdk_atom_intern( "STRING", FALSE ); |
2e1d7104 | 159 | #else |
74d38ad8 | 160 | g_textAtom = gdk_atom_intern( "STRING" /* "text/plain" */, FALSE ); |
2e1d7104 | 161 | #endif |
782158c2 | 162 | } |
e1ee679c | 163 | if (!g_pngAtom) |
1dd989e1 | 164 | g_pngAtom = gdk_atom_intern( "image/png", FALSE ); |
e1ee679c | 165 | if (!g_fileAtom) |
810b5e1f | 166 | g_fileAtom = gdk_atom_intern( "text/uri-list", FALSE ); |
0d2a2b60 | 167 | } |
8b53e5a2 RR |
168 | |
169 | //------------------------------------------------------------------------- | |
170 | // wxDataObject | |
171 | //------------------------------------------------------------------------- | |
172 | ||
0d2a2b60 RR |
173 | wxDataObject::wxDataObject() |
174 | { | |
0d2a2b60 | 175 | } |
3f480da3 | 176 | |
2b5f62a0 VZ |
177 | wxDataObject::~wxDataObject() |
178 | { | |
179 | // dtor is empty but needed for Darwin and AIX -- otherwise it doesn't link | |
180 | } | |
181 | ||
b068c4e8 | 182 | bool wxDataObject::IsSupportedFormat(const wxDataFormat& format, Direction dir) const |
0d2a2b60 | 183 | { |
b068c4e8 | 184 | size_t nFormatCount = GetFormatCount(dir); |
3d257b8d | 185 | if ( nFormatCount == 1 ) |
f2593d0d | 186 | { |
1dd989e1 RR |
187 | return format == GetPreferredFormat(); |
188 | } | |
3d257b8d | 189 | else |
f2593d0d | 190 | { |
1dd989e1 | 191 | wxDataFormat *formats = new wxDataFormat[nFormatCount]; |
b068c4e8 | 192 | GetAllFormats(formats,dir); |
1dd989e1 RR |
193 | |
194 | size_t n; | |
3d257b8d | 195 | for ( n = 0; n < nFormatCount; n++ ) |
f2593d0d | 196 | { |
1dd989e1 RR |
197 | if ( formats[n] == format ) |
198 | break; | |
199 | } | |
0d2a2b60 | 200 | |
1dd989e1 | 201 | delete [] formats; |
cd5bf2a6 | 202 | |
1dd989e1 RR |
203 | // found? |
204 | return n < nFormatCount; | |
205 | } | |
0d2a2b60 RR |
206 | } |
207 | ||
c7d6d883 RR |
208 | // ---------------------------------------------------------------------------- |
209 | // wxTextDataObject | |
210 | // ---------------------------------------------------------------------------- | |
211 | ||
ff654490 VZ |
212 | #if wxUSE_UNICODE |
213 | ||
e4161a2a VZ |
214 | void |
215 | wxTextDataObject::GetAllFormats(wxDataFormat *formats, | |
216 | wxDataObjectBase::Direction WXUNUSED(dir)) const | |
c7d6d883 RR |
217 | { |
218 | *formats++ = GetPreferredFormat(); | |
219 | *formats = g_altTextAtom; | |
220 | } | |
ff654490 VZ |
221 | |
222 | #endif // wxUSE_UNICODE | |
c7d6d883 | 223 | |
8b53e5a2 RR |
224 | // ---------------------------------------------------------------------------- |
225 | // wxFileDataObject | |
226 | // ---------------------------------------------------------------------------- | |
227 | ||
e1ee679c | 228 | bool 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 | |
155ecd4c | 239 | memcpy( buf, filenames.mbc_str(), filenames.length() + 1 ); |
0d2a2b60 | 240 | |
670f9935 | 241 | return true; |
0d2a2b60 | 242 | } |
3f480da3 | 243 | |
e1ee679c | 244 | size_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 |
155ecd4c | 251 | res += m_filenames[i].length(); |
a1696b86 | 252 | res += 5 + 2; // "file:" (5) + "\r\n" (2) |
b068c4e8 | 253 | } |
4b3d29db | 254 | |
b068c4e8 | 255 | return res + 1; |
0d2a2b60 | 256 | } |
3f480da3 | 257 | |
7941ba11 | 258 | bool wxFileDataObject::SetData(size_t WXUNUSED(size), const void *buf) |
0d2a2b60 | 259 | { |
ead90b5f RR |
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". size includes | |
262 | // the trailing zero (in theory, not for Nautilus in early GNOME | |
263 | // versions). | |
27781f63 | 264 | |
810b5e1f VZ |
265 | m_filenames.Empty(); |
266 | ||
ead90b5f RR |
267 | const gchar *nexttemp = (const gchar*) buf; |
268 | for ( ; ; ) | |
810b5e1f | 269 | { |
ead90b5f RR |
270 | int len = 0; |
271 | const gchar *temp = nexttemp; | |
272 | for (;;) | |
810b5e1f | 273 | { |
ead90b5f | 274 | if (temp[len] == 0) |
810b5e1f | 275 | { |
ead90b5f | 276 | if (len > 0) |
74d38ad8 | 277 | { |
ead90b5f RR |
278 | // if an app omits '\r''\n' |
279 | nexttemp = temp+len; | |
280 | break; | |
74d38ad8 | 281 | } |
27781f63 | 282 | |
ead90b5f | 283 | return true; |
74d38ad8 | 284 | } |
ead90b5f | 285 | if (temp[len] == '\r') |
74d38ad8 | 286 | { |
ead90b5f RR |
287 | if (temp[len+1] == '\n') |
288 | nexttemp = temp+len+2; | |
289 | else | |
290 | nexttemp = temp+len+1; | |
74d38ad8 | 291 | break; |
ead90b5f RR |
292 | } |
293 | len++; | |
810b5e1f | 294 | } |
27781f63 | 295 | |
ead90b5f RR |
296 | if (len == 0) |
297 | break; | |
27781f63 | 298 | |
ead90b5f RR |
299 | // required to give it a trailing zero |
300 | gchar *uri = g_strndup( temp, len ); | |
27781f63 | 301 | |
ead90b5f | 302 | gchar *fn = g_filename_from_uri( uri, NULL, NULL ); |
27781f63 | 303 | |
ead90b5f | 304 | g_free( uri ); |
27781f63 | 305 | |
ead90b5f | 306 | if (fn) |
810b5e1f | 307 | { |
ead90b5f RR |
308 | AddFile( wxConvFileName->cMB2WX( fn ) ); |
309 | g_free( fn ); | |
810b5e1f | 310 | } |
2d68e1b4 | 311 | } |
3f480da3 | 312 | |
670f9935 | 313 | return true; |
1dd989e1 RR |
314 | } |
315 | ||
b068c4e8 RR |
316 | void wxFileDataObject::AddFile( const wxString &filename ) |
317 | { | |
318 | m_filenames.Add( filename ); | |
319 | } | |
320 | ||
8b53e5a2 RR |
321 | // ---------------------------------------------------------------------------- |
322 | // wxBitmapDataObject | |
323 | // ---------------------------------------------------------------------------- | |
324 | ||
0d2a2b60 RR |
325 | wxBitmapDataObject::wxBitmapDataObject() |
326 | { | |
e1ee679c | 327 | Init(); |
0d2a2b60 RR |
328 | } |
329 | ||
330 | wxBitmapDataObject::wxBitmapDataObject( const wxBitmap& bitmap ) | |
e1ee679c | 331 | : wxBitmapDataObjectBase(bitmap) |
0d2a2b60 | 332 | { |
e1ee679c VZ |
333 | Init(); |
334 | ||
e2acb9ae RR |
335 | DoConvertToPng(); |
336 | } | |
337 | ||
338 | wxBitmapDataObject::~wxBitmapDataObject() | |
339 | { | |
e1ee679c | 340 | Clear(); |
0d2a2b60 RR |
341 | } |
342 | ||
343 | void wxBitmapDataObject::SetBitmap( const wxBitmap &bitmap ) | |
344 | { | |
e1ee679c | 345 | ClearAll(); |
0d2a2b60 | 346 | |
e1ee679c VZ |
347 | wxBitmapDataObjectBase::SetBitmap(bitmap); |
348 | ||
349 | DoConvertToPng(); | |
0d2a2b60 RR |
350 | } |
351 | ||
e1ee679c | 352 | bool wxBitmapDataObject::GetDataHere(void *buf) const |
0d2a2b60 | 353 | { |
e1ee679c | 354 | if ( !m_pngSize ) |
1dd989e1 | 355 | { |
e1ee679c VZ |
356 | wxFAIL_MSG( wxT("attempt to copy empty bitmap failed") ); |
357 | ||
670f9935 | 358 | return false; |
1dd989e1 | 359 | } |
0d2a2b60 | 360 | |
e1ee679c VZ |
361 | memcpy(buf, m_pngData, m_pngSize); |
362 | ||
670f9935 | 363 | return true; |
e2acb9ae RR |
364 | } |
365 | ||
e1ee679c | 366 | bool wxBitmapDataObject::SetData(size_t size, const void *buf) |
e2acb9ae | 367 | { |
e1ee679c VZ |
368 | Clear(); |
369 | ||
bd3b7e09 | 370 | wxCHECK_MSG( wxImage::FindHandler(wxBITMAP_TYPE_PNG) != NULL, |
670f9935 | 371 | false, wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") ); |
bd3b7e09 | 372 | |
1dd989e1 | 373 | m_pngSize = size; |
e1ee679c VZ |
374 | m_pngData = malloc(m_pngSize); |
375 | ||
bd3b7e09 | 376 | memcpy(m_pngData, buf, m_pngSize); |
e1ee679c | 377 | |
bd3b7e09 | 378 | wxMemoryInputStream mstream((char*) m_pngData, m_pngSize); |
e2acb9ae | 379 | wxImage image; |
bd3b7e09 | 380 | if ( !image.LoadFile( mstream, wxBITMAP_TYPE_PNG ) ) |
e1ee679c | 381 | { |
670f9935 | 382 | return false; |
e1ee679c VZ |
383 | } |
384 | ||
bd3b7e09 | 385 | m_bitmap = wxBitmap(image); |
4b3d29db | 386 | |
a1b806b9 | 387 | return m_bitmap.IsOk(); |
e2acb9ae RR |
388 | } |
389 | ||
390 | void wxBitmapDataObject::DoConvertToPng() | |
391 | { | |
a1b806b9 | 392 | if ( !m_bitmap.IsOk() ) |
e1ee679c VZ |
393 | return; |
394 | ||
bd3b7e09 VS |
395 | wxCHECK_RET( wxImage::FindHandler(wxBITMAP_TYPE_PNG) != NULL, |
396 | wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") ); | |
397 | ||
368d59f0 | 398 | wxImage image = m_bitmap.ConvertToImage(); |
e1ee679c | 399 | |
e2acb9ae | 400 | wxCountingOutputStream count; |
bd3b7e09 | 401 | image.SaveFile(count, wxBITMAP_TYPE_PNG); |
e1ee679c | 402 | |
e2acb9ae | 403 | m_pngSize = count.GetSize() + 100; // sometimes the size seems to vary ??? |
e1ee679c VZ |
404 | m_pngData = malloc(m_pngSize); |
405 | ||
bd3b7e09 VS |
406 | wxMemoryOutputStream mstream((char*) m_pngData, m_pngSize); |
407 | image.SaveFile(mstream, wxBITMAP_TYPE_PNG); | |
0d2a2b60 | 408 | } |
3f480da3 | 409 | |
d613be55 RR |
410 | // ---------------------------------------------------------------------------- |
411 | // wxURLDataObject | |
412 | // ---------------------------------------------------------------------------- | |
413 | ||
414 | wxURLDataObject::wxURLDataObject(const wxString& url) : | |
415 | wxDataObjectSimple( wxDataFormat( gdk_atom_intern("text/x-moz-url",FALSE) ) ) | |
416 | { | |
417 | m_url = url; | |
418 | } | |
419 | ||
420 | size_t wxURLDataObject::GetDataSize() const | |
27781f63 | 421 | { |
d613be55 RR |
422 | if (m_url.empty()) |
423 | return 0; | |
27781f63 | 424 | |
d613be55 RR |
425 | return 2*m_url.Len()+2; |
426 | } | |
427 | ||
428 | bool wxURLDataObject::GetDataHere(void *buf) const | |
27781f63 | 429 | { |
d613be55 RR |
430 | if (m_url.empty()) |
431 | return false; | |
27781f63 | 432 | |
d613be55 RR |
433 | wxCSConv conv( "UCS2" ); |
434 | conv.FromWChar( (char*) buf, 2*m_url.Len()+2, m_url.wc_str() ); | |
27781f63 | 435 | |
d613be55 RR |
436 | return true; |
437 | } | |
438 | ||
439 | // copy data from buffer to our data | |
440 | bool wxURLDataObject::SetData(size_t len, const void *buf) | |
27781f63 | 441 | { |
d613be55 RR |
442 | if (len == 0) |
443 | { | |
444 | m_url = wxEmptyString; | |
445 | return false; | |
446 | } | |
27781f63 | 447 | |
d613be55 RR |
448 | wxCSConv conv( "UCS2" ); |
449 | wxWCharBuffer res = conv.cMB2WC( (const char*) buf ); | |
450 | m_url = res; | |
451 | int pos = m_url.Find( '\n' ); | |
452 | if (pos != wxNOT_FOUND) | |
453 | m_url.Remove( pos, m_url.Len() - pos ); | |
27781f63 | 454 | |
d613be55 RR |
455 | return true; |
456 | } | |
457 | ||
458 | ||
14631f7f | 459 | #endif // wxUSE_DATAOBJ |