]>
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) |
2e1d7104 | 152 | #if wxUSE_UNICODE |
ca11abde | 153 | g_textAtom = gdk_atom_intern( "UTF8_STRING", FALSE ); |
c7d6d883 | 154 | g_altTextAtom = gdk_atom_intern( "STRING", FALSE ); |
2e1d7104 | 155 | #else |
74d38ad8 | 156 | g_textAtom = gdk_atom_intern( "STRING" /* "text/plain" */, FALSE ); |
2e1d7104 | 157 | #endif |
e1ee679c | 158 | if (!g_pngAtom) |
1dd989e1 | 159 | g_pngAtom = gdk_atom_intern( "image/png", FALSE ); |
e1ee679c | 160 | if (!g_fileAtom) |
810b5e1f | 161 | g_fileAtom = gdk_atom_intern( "text/uri-list", FALSE ); |
0d2a2b60 | 162 | } |
8b53e5a2 RR |
163 | |
164 | //------------------------------------------------------------------------- | |
165 | // wxDataObject | |
166 | //------------------------------------------------------------------------- | |
167 | ||
0d2a2b60 RR |
168 | wxDataObject::wxDataObject() |
169 | { | |
0d2a2b60 | 170 | } |
3f480da3 | 171 | |
2b5f62a0 VZ |
172 | wxDataObject::~wxDataObject() |
173 | { | |
174 | // dtor is empty but needed for Darwin and AIX -- otherwise it doesn't link | |
175 | } | |
176 | ||
b068c4e8 | 177 | bool wxDataObject::IsSupportedFormat(const wxDataFormat& format, Direction dir) const |
0d2a2b60 | 178 | { |
b068c4e8 | 179 | size_t nFormatCount = GetFormatCount(dir); |
3d257b8d | 180 | if ( nFormatCount == 1 ) |
f2593d0d | 181 | { |
1dd989e1 RR |
182 | return format == GetPreferredFormat(); |
183 | } | |
3d257b8d | 184 | else |
f2593d0d | 185 | { |
1dd989e1 | 186 | wxDataFormat *formats = new wxDataFormat[nFormatCount]; |
b068c4e8 | 187 | GetAllFormats(formats,dir); |
1dd989e1 RR |
188 | |
189 | size_t n; | |
3d257b8d | 190 | for ( n = 0; n < nFormatCount; n++ ) |
f2593d0d | 191 | { |
1dd989e1 RR |
192 | if ( formats[n] == format ) |
193 | break; | |
194 | } | |
0d2a2b60 | 195 | |
1dd989e1 | 196 | delete [] formats; |
cd5bf2a6 | 197 | |
1dd989e1 RR |
198 | // found? |
199 | return n < nFormatCount; | |
200 | } | |
0d2a2b60 RR |
201 | } |
202 | ||
c7d6d883 RR |
203 | // ---------------------------------------------------------------------------- |
204 | // wxTextDataObject | |
205 | // ---------------------------------------------------------------------------- | |
206 | ||
207 | #if defined(__WXGTK20__) && wxUSE_UNICODE | |
208 | void wxTextDataObject::GetAllFormats(wxDataFormat *formats, wxDataObjectBase::Direction dir) const | |
209 | { | |
210 | *formats++ = GetPreferredFormat(); | |
211 | *formats = g_altTextAtom; | |
212 | } | |
213 | #endif | |
214 | ||
8b53e5a2 RR |
215 | // ---------------------------------------------------------------------------- |
216 | // wxFileDataObject | |
217 | // ---------------------------------------------------------------------------- | |
218 | ||
e1ee679c | 219 | bool wxFileDataObject::GetDataHere(void *buf) const |
0d2a2b60 | 220 | { |
b068c4e8 | 221 | wxString filenames; |
4b3d29db | 222 | |
b068c4e8 RR |
223 | for (size_t i = 0; i < m_filenames.GetCount(); i++) |
224 | { | |
a1696b86 | 225 | filenames += wxT("file:"); |
b068c4e8 | 226 | filenames += m_filenames[i]; |
a1696b86 | 227 | filenames += wxT("\r\n"); |
b068c4e8 | 228 | } |
4b3d29db | 229 | |
155ecd4c | 230 | memcpy( buf, filenames.mbc_str(), filenames.length() + 1 ); |
0d2a2b60 | 231 | |
670f9935 | 232 | return true; |
0d2a2b60 | 233 | } |
3f480da3 | 234 | |
e1ee679c | 235 | size_t wxFileDataObject::GetDataSize() const |
0d2a2b60 | 236 | { |
b068c4e8 | 237 | size_t res = 0; |
4b3d29db | 238 | |
b068c4e8 RR |
239 | for (size_t i = 0; i < m_filenames.GetCount(); i++) |
240 | { | |
a1696b86 | 241 | // This is junk in UTF-8 |
155ecd4c | 242 | res += m_filenames[i].length(); |
a1696b86 | 243 | res += 5 + 2; // "file:" (5) + "\r\n" (2) |
b068c4e8 | 244 | } |
4b3d29db | 245 | |
b068c4e8 | 246 | return res + 1; |
0d2a2b60 | 247 | } |
3f480da3 | 248 | |
7941ba11 | 249 | bool wxFileDataObject::SetData(size_t WXUNUSED(size), const void *buf) |
0d2a2b60 | 250 | { |
810b5e1f VZ |
251 | m_filenames.Empty(); |
252 | ||
e188df5d VZ |
253 | // we get data in the text/uri-list format, i.e. as a sequence of URIs |
254 | // (filenames prefixed by "file:") delimited by "\r\n" | |
810b5e1f | 255 | wxString filename; |
74d38ad8 | 256 | for ( const char *p = (const char *)buf; ; p++ ) |
810b5e1f | 257 | { |
74d38ad8 VZ |
258 | // some broken programs (testdnd GTK+ sample!) omit the trailing |
259 | // "\r\n", so check for '\0' explicitly here instead of doing it in | |
260 | // the loop statement to account for it | |
261 | if ( (*p == '\r' && *(p+1) == '\n') || !*p ) | |
810b5e1f | 262 | { |
74d38ad8 | 263 | size_t lenPrefix = 5; // strlen("file:") |
810b5e1f VZ |
264 | if ( filename.Left(lenPrefix).MakeLower() == _T("file:") ) |
265 | { | |
74d38ad8 VZ |
266 | // sometimes the syntax is "file:filename", sometimes it's |
267 | // URL-like: "file://filename" - deal with both | |
268 | if ( filename[lenPrefix] == _T('/') && | |
269 | filename[lenPrefix + 1] == _T('/') ) | |
270 | { | |
271 | // skip the slashes | |
272 | lenPrefix += 2; | |
273 | } | |
f4322df6 | 274 | |
bb5b7285 RR |
275 | // It would probably be nicer to use a GTK or Glib |
276 | // function to unescape the 8-bit strings pointed to | |
277 | // by buf, but this does the same in wx code. | |
278 | wxString filename_unicode = wxURI::Unescape(filename.c_str() + lenPrefix); | |
ab6ef7e6 VS |
279 | wxCharBuffer filename_8bit = filename_unicode.mb_str(wxConvISO8859_1); |
280 | AddFile(wxString(filename_8bit, *wxConvFileName)); | |
74d38ad8 VZ |
281 | filename.Empty(); |
282 | } | |
1906f9df | 283 | else if ( !filename.empty() ) |
74d38ad8 | 284 | { |
1906f9df | 285 | wxLogDebug(_T("Unsupported URI \"%s\" in wxFileDataObject"), |
74d38ad8 | 286 | filename.c_str()); |
810b5e1f VZ |
287 | } |
288 | ||
74d38ad8 VZ |
289 | if ( !*p ) |
290 | break; | |
810b5e1f VZ |
291 | |
292 | // skip '\r' | |
293 | p++; | |
294 | } | |
295 | else | |
296 | { | |
bb5b7285 | 297 | // The string is in ISO-8859-1 according to XDND spec |
810b5e1f VZ |
298 | filename += *p; |
299 | } | |
2d68e1b4 | 300 | } |
3f480da3 | 301 | |
670f9935 | 302 | return true; |
1dd989e1 RR |
303 | } |
304 | ||
b068c4e8 RR |
305 | void wxFileDataObject::AddFile( const wxString &filename ) |
306 | { | |
307 | m_filenames.Add( filename ); | |
308 | } | |
309 | ||
8b53e5a2 RR |
310 | // ---------------------------------------------------------------------------- |
311 | // wxBitmapDataObject | |
312 | // ---------------------------------------------------------------------------- | |
313 | ||
0d2a2b60 RR |
314 | wxBitmapDataObject::wxBitmapDataObject() |
315 | { | |
e1ee679c | 316 | Init(); |
0d2a2b60 RR |
317 | } |
318 | ||
319 | wxBitmapDataObject::wxBitmapDataObject( const wxBitmap& bitmap ) | |
e1ee679c | 320 | : wxBitmapDataObjectBase(bitmap) |
0d2a2b60 | 321 | { |
e1ee679c VZ |
322 | Init(); |
323 | ||
e2acb9ae RR |
324 | DoConvertToPng(); |
325 | } | |
326 | ||
327 | wxBitmapDataObject::~wxBitmapDataObject() | |
328 | { | |
e1ee679c | 329 | Clear(); |
0d2a2b60 RR |
330 | } |
331 | ||
332 | void wxBitmapDataObject::SetBitmap( const wxBitmap &bitmap ) | |
333 | { | |
e1ee679c | 334 | ClearAll(); |
0d2a2b60 | 335 | |
e1ee679c VZ |
336 | wxBitmapDataObjectBase::SetBitmap(bitmap); |
337 | ||
338 | DoConvertToPng(); | |
0d2a2b60 RR |
339 | } |
340 | ||
e1ee679c | 341 | bool wxBitmapDataObject::GetDataHere(void *buf) const |
0d2a2b60 | 342 | { |
e1ee679c | 343 | if ( !m_pngSize ) |
1dd989e1 | 344 | { |
e1ee679c VZ |
345 | wxFAIL_MSG( wxT("attempt to copy empty bitmap failed") ); |
346 | ||
670f9935 | 347 | return false; |
1dd989e1 | 348 | } |
0d2a2b60 | 349 | |
e1ee679c VZ |
350 | memcpy(buf, m_pngData, m_pngSize); |
351 | ||
670f9935 | 352 | return true; |
e2acb9ae RR |
353 | } |
354 | ||
e1ee679c | 355 | bool wxBitmapDataObject::SetData(size_t size, const void *buf) |
e2acb9ae | 356 | { |
e1ee679c VZ |
357 | Clear(); |
358 | ||
bd3b7e09 | 359 | wxCHECK_MSG( wxImage::FindHandler(wxBITMAP_TYPE_PNG) != NULL, |
670f9935 | 360 | false, wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") ); |
bd3b7e09 | 361 | |
1dd989e1 | 362 | m_pngSize = size; |
e1ee679c VZ |
363 | m_pngData = malloc(m_pngSize); |
364 | ||
bd3b7e09 | 365 | memcpy(m_pngData, buf, m_pngSize); |
e1ee679c | 366 | |
bd3b7e09 | 367 | wxMemoryInputStream mstream((char*) m_pngData, m_pngSize); |
e2acb9ae | 368 | wxImage image; |
bd3b7e09 | 369 | if ( !image.LoadFile( mstream, wxBITMAP_TYPE_PNG ) ) |
e1ee679c | 370 | { |
670f9935 | 371 | return false; |
e1ee679c VZ |
372 | } |
373 | ||
bd3b7e09 | 374 | m_bitmap = wxBitmap(image); |
4b3d29db | 375 | |
b068c4e8 | 376 | return m_bitmap.Ok(); |
e2acb9ae RR |
377 | } |
378 | ||
379 | void wxBitmapDataObject::DoConvertToPng() | |
380 | { | |
bd3b7e09 | 381 | if ( !m_bitmap.Ok() ) |
e1ee679c VZ |
382 | return; |
383 | ||
bd3b7e09 VS |
384 | wxCHECK_RET( wxImage::FindHandler(wxBITMAP_TYPE_PNG) != NULL, |
385 | wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") ); | |
386 | ||
368d59f0 | 387 | wxImage image = m_bitmap.ConvertToImage(); |
e1ee679c | 388 | |
e2acb9ae | 389 | wxCountingOutputStream count; |
bd3b7e09 | 390 | image.SaveFile(count, wxBITMAP_TYPE_PNG); |
e1ee679c | 391 | |
e2acb9ae | 392 | m_pngSize = count.GetSize() + 100; // sometimes the size seems to vary ??? |
e1ee679c VZ |
393 | m_pngData = malloc(m_pngSize); |
394 | ||
bd3b7e09 VS |
395 | wxMemoryOutputStream mstream((char*) m_pngData, m_pngSize); |
396 | image.SaveFile(mstream, wxBITMAP_TYPE_PNG); | |
0d2a2b60 | 397 | } |
3f480da3 | 398 | |
14631f7f | 399 | #endif // wxUSE_DATAOBJ |