]>
Commit | Line | Data |
---|---|---|
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" |
ab8884ac | 18 | #include "wx/app.h" |
0d2a2b60 | 19 | #include "wx/debug.h" |
e2acb9ae RR |
20 | #include "wx/mstream.h" |
21 | #include "wx/image.h" | |
1fb35ade | 22 | #include "wx/log.h" |
0d2a2b60 | 23 | |
071a2d78 | 24 | #include <gdk/gdk.h> |
0d2a2b60 | 25 | |
d6086ea6 RR |
26 | //------------------------------------------------------------------------- |
27 | // global data | |
28 | //------------------------------------------------------------------------- | |
29 | ||
30 | GdkAtom g_textAtom = 0; | |
c7d6d883 | 31 | GdkAtom g_altTextAtom = 0; |
e2acb9ae | 32 | GdkAtom g_pngAtom = 0; |
1dd989e1 | 33 | GdkAtom g_fileAtom = 0; |
d6086ea6 | 34 | |
0d2a2b60 RR |
35 | //------------------------------------------------------------------------- |
36 | // wxDataFormat | |
37 | //------------------------------------------------------------------------- | |
38 | ||
cd5bf2a6 | 39 | wxDataFormat::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 | 53 | wxDataFormat::wxDataFormat( wxDataFormatId type ) |
cd5bf2a6 | 54 | { |
e2acb9ae | 55 | PrepareFormats(); |
cd5bf2a6 | 56 | SetType( type ); |
0d2a2b60 RR |
57 | } |
58 | ||
b5be07d4 | 59 | wxDataFormat::wxDataFormat( const wxChar *id ) |
8a126fcc | 60 | { |
e2acb9ae | 61 | PrepareFormats(); |
8a126fcc RR |
62 | SetId( id ); |
63 | } | |
64 | ||
0d2a2b60 RR |
65 | wxDataFormat::wxDataFormat( const wxString &id ) |
66 | { | |
e2acb9ae | 67 | PrepareFormats(); |
cd5bf2a6 | 68 | SetId( id ); |
0d2a2b60 RR |
69 | } |
70 | ||
1dd989e1 | 71 | wxDataFormat::wxDataFormat( NativeFormat format ) |
0d2a2b60 | 72 | { |
e2acb9ae | 73 | PrepareFormats(); |
1dd989e1 | 74 | SetId( format ); |
0d2a2b60 RR |
75 | } |
76 | ||
3f480da3 | 77 | void wxDataFormat::SetType( wxDataFormatId type ) |
cd5bf2a6 | 78 | { |
4b3d29db | 79 | PrepareFormats(); |
ca11abde | 80 | |
ca11abde RR |
81 | m_type = type; |
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 | |
104 | wxDataFormatId wxDataFormat::GetType() const | |
0d2a2b60 RR |
105 | { |
106 | return m_type; | |
107 | } | |
108 | ||
109 | wxString wxDataFormat::GetId() const | |
110 | { | |
2e1d7104 | 111 | wxString ret = wxString::FromAscii( gdk_atom_name( m_format ) ); |
1dd989e1 | 112 | return ret; |
0d2a2b60 | 113 | } |
3f480da3 | 114 | |
1dd989e1 | 115 | void wxDataFormat::SetId( NativeFormat format ) |
3f480da3 | 116 | { |
4b3d29db | 117 | PrepareFormats(); |
1dd989e1 | 118 | m_format = format; |
3f480da3 | 119 | |
1dd989e1 | 120 | if (m_format == g_textAtom) |
810324c8 VS |
121 | #if wxUSE_UNICODE |
122 | m_type = wxDF_UNICODETEXT; | |
123 | #else | |
124 | m_type = wxDF_TEXT; | |
125 | #endif | |
126 | else | |
127 | if (m_format == g_altTextAtom) | |
1dd989e1 RR |
128 | m_type = wxDF_TEXT; |
129 | else | |
130 | if (m_format == g_pngAtom) | |
131 | m_type = wxDF_BITMAP; | |
132 | else | |
133 | if (m_format == g_fileAtom) | |
134 | m_type = wxDF_FILENAME; | |
135 | else | |
136 | m_type = wxDF_PRIVATE; | |
0d2a2b60 | 137 | } |
3f480da3 | 138 | |
1dd989e1 | 139 | void wxDataFormat::SetId( const wxChar *id ) |
0d2a2b60 | 140 | { |
4b3d29db | 141 | PrepareFormats(); |
1dd989e1 RR |
142 | m_type = wxDF_PRIVATE; |
143 | wxString tmp( id ); | |
2e1d7104 | 144 | m_format = gdk_atom_intern( (const char*) tmp.ToAscii(), FALSE ); |
0d2a2b60 | 145 | } |
3f480da3 | 146 | |
1dd989e1 | 147 | void wxDataFormat::PrepareFormats() |
0d2a2b60 | 148 | { |
810b5e1f | 149 | // VZ: GNOME included in RedHat 6.1 uses the MIME types below and not the |
74d38ad8 VZ |
150 | // atoms STRING and file:ALL as the old code was, but normal X apps |
151 | // use STRING for text selection when transfering the data via | |
152 | // clipboard, for example, so do use STRING for now (GNOME apps will | |
153 | // probably support STRING as well for compatibility anyhow), but use | |
154 | // text/uri-list for file dnd because compatibility is not important | |
155 | // here (with whom?) | |
e1ee679c | 156 | if (!g_textAtom) |
2e1d7104 | 157 | #if wxUSE_UNICODE |
ca11abde | 158 | g_textAtom = gdk_atom_intern( "UTF8_STRING", FALSE ); |
c7d6d883 | 159 | g_altTextAtom = gdk_atom_intern( "STRING", FALSE ); |
2e1d7104 | 160 | #else |
74d38ad8 | 161 | g_textAtom = gdk_atom_intern( "STRING" /* "text/plain" */, FALSE ); |
2e1d7104 | 162 | #endif |
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); |
f2593d0d RR |
185 | if ( nFormatCount == 1 ) |
186 | { | |
1dd989e1 RR |
187 | return format == GetPreferredFormat(); |
188 | } | |
f2593d0d RR |
189 | else |
190 | { | |
1dd989e1 | 191 | wxDataFormat *formats = new wxDataFormat[nFormatCount]; |
b068c4e8 | 192 | GetAllFormats(formats,dir); |
1dd989e1 RR |
193 | |
194 | size_t n; | |
f2593d0d RR |
195 | for ( n = 0; n < nFormatCount; n++ ) |
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 | ||
212 | #if defined(__WXGTK20__) && wxUSE_UNICODE | |
213 | void wxTextDataObject::GetAllFormats(wxDataFormat *formats, wxDataObjectBase::Direction dir) const | |
214 | { | |
215 | *formats++ = GetPreferredFormat(); | |
216 | *formats = g_altTextAtom; | |
217 | } | |
218 | #endif | |
219 | ||
8b53e5a2 RR |
220 | // ---------------------------------------------------------------------------- |
221 | // wxFileDataObject | |
222 | // ---------------------------------------------------------------------------- | |
223 | ||
e1ee679c | 224 | bool wxFileDataObject::GetDataHere(void *buf) const |
0d2a2b60 | 225 | { |
b068c4e8 | 226 | wxString filenames; |
4b3d29db | 227 | |
b068c4e8 RR |
228 | for (size_t i = 0; i < m_filenames.GetCount(); i++) |
229 | { | |
a1696b86 | 230 | filenames += wxT("file:"); |
b068c4e8 | 231 | filenames += m_filenames[i]; |
a1696b86 | 232 | filenames += wxT("\r\n"); |
b068c4e8 | 233 | } |
4b3d29db | 234 | |
e1ee679c | 235 | memcpy( buf, filenames.mbc_str(), filenames.Len() + 1 ); |
0d2a2b60 | 236 | |
e1ee679c | 237 | return TRUE; |
0d2a2b60 | 238 | } |
3f480da3 | 239 | |
e1ee679c | 240 | size_t wxFileDataObject::GetDataSize() const |
0d2a2b60 | 241 | { |
b068c4e8 | 242 | size_t res = 0; |
4b3d29db | 243 | |
b068c4e8 RR |
244 | for (size_t i = 0; i < m_filenames.GetCount(); i++) |
245 | { | |
a1696b86 | 246 | // This is junk in UTF-8 |
b068c4e8 | 247 | res += m_filenames[i].Len(); |
a1696b86 | 248 | res += 5 + 2; // "file:" (5) + "\r\n" (2) |
b068c4e8 | 249 | } |
4b3d29db | 250 | |
b068c4e8 | 251 | return res + 1; |
0d2a2b60 | 252 | } |
3f480da3 | 253 | |
7941ba11 | 254 | bool wxFileDataObject::SetData(size_t WXUNUSED(size), const void *buf) |
0d2a2b60 | 255 | { |
810b5e1f VZ |
256 | // VZ: old format |
257 | #if 0 | |
2d68e1b4 | 258 | // filenames are stores as a string with #0 as deliminators |
2d68e1b4 RR |
259 | const char *filenames = (const char*) buf; |
260 | size_t pos = 0; | |
261 | for(;;) | |
262 | { | |
263 | if (filenames[0] == 0) | |
810b5e1f VZ |
264 | break; |
265 | if (pos >= size) | |
266 | break; | |
2d68e1b4 RR |
267 | wxString file( filenames ); // this returns the first file |
268 | AddFile( file ); | |
810b5e1f VZ |
269 | pos += file.Len()+1; |
270 | filenames += file.Len()+1; | |
271 | } | |
272 | #else // 1 | |
273 | m_filenames.Empty(); | |
274 | ||
275 | // the text/uri-list format is a sequence of URIs (filenames prefixed by | |
276 | // "file:" as far as I see) delimited by "\r\n" of total length size | |
277 | // (I wonder what happens if the file has '\n' in its filename??) | |
278 | wxString filename; | |
74d38ad8 | 279 | for ( const char *p = (const char *)buf; ; p++ ) |
810b5e1f | 280 | { |
74d38ad8 VZ |
281 | // some broken programs (testdnd GTK+ sample!) omit the trailing |
282 | // "\r\n", so check for '\0' explicitly here instead of doing it in | |
283 | // the loop statement to account for it | |
284 | if ( (*p == '\r' && *(p+1) == '\n') || !*p ) | |
810b5e1f | 285 | { |
74d38ad8 | 286 | size_t lenPrefix = 5; // strlen("file:") |
810b5e1f VZ |
287 | if ( filename.Left(lenPrefix).MakeLower() == _T("file:") ) |
288 | { | |
74d38ad8 VZ |
289 | // sometimes the syntax is "file:filename", sometimes it's |
290 | // URL-like: "file://filename" - deal with both | |
291 | if ( filename[lenPrefix] == _T('/') && | |
292 | filename[lenPrefix + 1] == _T('/') ) | |
293 | { | |
294 | // skip the slashes | |
295 | lenPrefix += 2; | |
296 | } | |
297 | ||
298 | AddFile(filename.c_str() + lenPrefix); | |
299 | filename.Empty(); | |
300 | } | |
301 | else | |
302 | { | |
303 | wxLogDebug(_T("Unsupported URI '%s' in wxFileDataObject"), | |
304 | filename.c_str()); | |
810b5e1f VZ |
305 | } |
306 | ||
74d38ad8 VZ |
307 | if ( !*p ) |
308 | break; | |
810b5e1f VZ |
309 | |
310 | // skip '\r' | |
311 | p++; | |
312 | } | |
313 | else | |
314 | { | |
315 | filename += *p; | |
316 | } | |
2d68e1b4 | 317 | } |
810b5e1f | 318 | #endif // 0/1 |
3f480da3 | 319 | |
1dd989e1 RR |
320 | return TRUE; |
321 | } | |
322 | ||
b068c4e8 RR |
323 | void wxFileDataObject::AddFile( const wxString &filename ) |
324 | { | |
325 | m_filenames.Add( filename ); | |
326 | } | |
327 | ||
8b53e5a2 RR |
328 | // ---------------------------------------------------------------------------- |
329 | // wxBitmapDataObject | |
330 | // ---------------------------------------------------------------------------- | |
331 | ||
0d2a2b60 RR |
332 | wxBitmapDataObject::wxBitmapDataObject() |
333 | { | |
e1ee679c | 334 | Init(); |
0d2a2b60 RR |
335 | } |
336 | ||
337 | wxBitmapDataObject::wxBitmapDataObject( const wxBitmap& bitmap ) | |
e1ee679c | 338 | : wxBitmapDataObjectBase(bitmap) |
0d2a2b60 | 339 | { |
e1ee679c VZ |
340 | Init(); |
341 | ||
e2acb9ae RR |
342 | DoConvertToPng(); |
343 | } | |
344 | ||
345 | wxBitmapDataObject::~wxBitmapDataObject() | |
346 | { | |
e1ee679c | 347 | Clear(); |
0d2a2b60 RR |
348 | } |
349 | ||
350 | void wxBitmapDataObject::SetBitmap( const wxBitmap &bitmap ) | |
351 | { | |
e1ee679c | 352 | ClearAll(); |
0d2a2b60 | 353 | |
e1ee679c VZ |
354 | wxBitmapDataObjectBase::SetBitmap(bitmap); |
355 | ||
356 | DoConvertToPng(); | |
0d2a2b60 RR |
357 | } |
358 | ||
e1ee679c | 359 | bool wxBitmapDataObject::GetDataHere(void *buf) const |
0d2a2b60 | 360 | { |
e1ee679c | 361 | if ( !m_pngSize ) |
1dd989e1 | 362 | { |
e1ee679c VZ |
363 | wxFAIL_MSG( wxT("attempt to copy empty bitmap failed") ); |
364 | ||
365 | return FALSE; | |
1dd989e1 | 366 | } |
0d2a2b60 | 367 | |
e1ee679c VZ |
368 | memcpy(buf, m_pngData, m_pngSize); |
369 | ||
370 | return TRUE; | |
e2acb9ae RR |
371 | } |
372 | ||
e1ee679c | 373 | bool wxBitmapDataObject::SetData(size_t size, const void *buf) |
e2acb9ae | 374 | { |
e1ee679c VZ |
375 | Clear(); |
376 | ||
bd3b7e09 VS |
377 | wxCHECK_MSG( wxImage::FindHandler(wxBITMAP_TYPE_PNG) != NULL, |
378 | FALSE, wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") ); | |
379 | ||
1dd989e1 | 380 | m_pngSize = size; |
e1ee679c VZ |
381 | m_pngData = malloc(m_pngSize); |
382 | ||
bd3b7e09 | 383 | memcpy(m_pngData, buf, m_pngSize); |
e1ee679c | 384 | |
bd3b7e09 | 385 | wxMemoryInputStream mstream((char*) m_pngData, m_pngSize); |
e2acb9ae | 386 | wxImage image; |
bd3b7e09 | 387 | if ( !image.LoadFile( mstream, wxBITMAP_TYPE_PNG ) ) |
e1ee679c VZ |
388 | { |
389 | return FALSE; | |
390 | } | |
391 | ||
bd3b7e09 | 392 | m_bitmap = wxBitmap(image); |
4b3d29db | 393 | |
b068c4e8 | 394 | return m_bitmap.Ok(); |
e2acb9ae RR |
395 | } |
396 | ||
397 | void wxBitmapDataObject::DoConvertToPng() | |
398 | { | |
bd3b7e09 | 399 | if ( !m_bitmap.Ok() ) |
e1ee679c VZ |
400 | return; |
401 | ||
bd3b7e09 VS |
402 | wxCHECK_RET( wxImage::FindHandler(wxBITMAP_TYPE_PNG) != NULL, |
403 | wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") ); | |
404 | ||
368d59f0 | 405 | wxImage image = m_bitmap.ConvertToImage(); |
e1ee679c | 406 | |
e2acb9ae | 407 | wxCountingOutputStream count; |
bd3b7e09 | 408 | image.SaveFile(count, wxBITMAP_TYPE_PNG); |
e1ee679c | 409 | |
e2acb9ae | 410 | m_pngSize = count.GetSize() + 100; // sometimes the size seems to vary ??? |
e1ee679c VZ |
411 | m_pngData = malloc(m_pngSize); |
412 | ||
bd3b7e09 VS |
413 | wxMemoryOutputStream mstream((char*) m_pngData, m_pngSize); |
414 | image.SaveFile(mstream, wxBITMAP_TYPE_PNG); | |
0d2a2b60 | 415 | } |
3f480da3 | 416 | |
0d2a2b60 | 417 |