]>
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 | |
3f480da3 | 7 | // Licence: wxWindows licence |
8b53e5a2 RR |
8 | /////////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifdef __GNUG__ | |
3f480da3 | 11 | #pragma implementation "dataobj.h" |
8b53e5a2 RR |
12 | #endif |
13 | ||
14 | #include "wx/dataobj.h" | |
ab8884ac | 15 | #include "wx/app.h" |
0d2a2b60 | 16 | #include "wx/debug.h" |
e2acb9ae RR |
17 | #include "wx/mstream.h" |
18 | #include "wx/image.h" | |
0d2a2b60 | 19 | |
071a2d78 | 20 | #include <gdk/gdk.h> |
0d2a2b60 | 21 | |
d6086ea6 RR |
22 | //------------------------------------------------------------------------- |
23 | // global data | |
24 | //------------------------------------------------------------------------- | |
25 | ||
26 | GdkAtom g_textAtom = 0; | |
e2acb9ae | 27 | GdkAtom g_pngAtom = 0; |
1dd989e1 | 28 | GdkAtom g_fileAtom = 0; |
d6086ea6 | 29 | |
0d2a2b60 RR |
30 | //------------------------------------------------------------------------- |
31 | // wxDataFormat | |
32 | //------------------------------------------------------------------------- | |
33 | ||
cd5bf2a6 | 34 | wxDataFormat::wxDataFormat() |
0d2a2b60 | 35 | { |
4b3d29db VZ |
36 | // do *not* call PrepareFormats() from here for 2 reasons: |
37 | // | |
38 | // 1. we will have time to do it later because some other Set function | |
39 | // must be called before we really need them | |
40 | // | |
41 | // 2. doing so prevents us from declaring global wxDataFormats because | |
42 | // calling PrepareFormats (and thus gdk_atom_intern) before GDK is | |
43 | // initialised will result in a crash | |
cd5bf2a6 | 44 | m_type = wxDF_INVALID; |
1dd989e1 | 45 | m_format = (GdkAtom) 0; |
cd5bf2a6 RR |
46 | } |
47 | ||
3f480da3 | 48 | wxDataFormat::wxDataFormat( wxDataFormatId type ) |
cd5bf2a6 | 49 | { |
e2acb9ae | 50 | PrepareFormats(); |
cd5bf2a6 | 51 | SetType( type ); |
0d2a2b60 RR |
52 | } |
53 | ||
b5be07d4 | 54 | wxDataFormat::wxDataFormat( const wxChar *id ) |
8a126fcc | 55 | { |
e2acb9ae | 56 | PrepareFormats(); |
8a126fcc RR |
57 | SetId( id ); |
58 | } | |
59 | ||
0d2a2b60 RR |
60 | wxDataFormat::wxDataFormat( const wxString &id ) |
61 | { | |
e2acb9ae | 62 | PrepareFormats(); |
cd5bf2a6 | 63 | SetId( id ); |
0d2a2b60 RR |
64 | } |
65 | ||
1dd989e1 | 66 | wxDataFormat::wxDataFormat( NativeFormat format ) |
0d2a2b60 | 67 | { |
e2acb9ae | 68 | PrepareFormats(); |
1dd989e1 | 69 | SetId( format ); |
0d2a2b60 RR |
70 | } |
71 | ||
3f480da3 | 72 | void wxDataFormat::SetType( wxDataFormatId type ) |
cd5bf2a6 | 73 | { |
4b3d29db | 74 | PrepareFormats(); |
cd5bf2a6 | 75 | m_type = type; |
3f480da3 | 76 | |
cd5bf2a6 | 77 | if (m_type == wxDF_TEXT) |
1dd989e1 | 78 | m_format = g_textAtom; |
cd5bf2a6 RR |
79 | else |
80 | if (m_type == wxDF_BITMAP) | |
1dd989e1 | 81 | m_format = g_pngAtom; |
cd5bf2a6 RR |
82 | else |
83 | if (m_type == wxDF_FILENAME) | |
1dd989e1 | 84 | m_format = g_fileAtom; |
cd5bf2a6 RR |
85 | else |
86 | { | |
223d09f6 | 87 | wxFAIL_MSG( wxT("invalid dataformat") ); |
cd5bf2a6 | 88 | } |
cd5bf2a6 | 89 | } |
3f480da3 VZ |
90 | |
91 | wxDataFormatId wxDataFormat::GetType() const | |
0d2a2b60 RR |
92 | { |
93 | return m_type; | |
94 | } | |
95 | ||
96 | wxString wxDataFormat::GetId() const | |
97 | { | |
2e1d7104 | 98 | wxString ret = wxString::FromAscii( gdk_atom_name( m_format ) ); |
1dd989e1 | 99 | return ret; |
0d2a2b60 | 100 | } |
3f480da3 | 101 | |
1dd989e1 | 102 | void wxDataFormat::SetId( NativeFormat format ) |
3f480da3 | 103 | { |
4b3d29db | 104 | PrepareFormats(); |
1dd989e1 | 105 | m_format = format; |
3f480da3 | 106 | |
1dd989e1 RR |
107 | if (m_format == g_textAtom) |
108 | m_type = wxDF_TEXT; | |
109 | else | |
110 | if (m_format == g_pngAtom) | |
111 | m_type = wxDF_BITMAP; | |
112 | else | |
113 | if (m_format == g_fileAtom) | |
114 | m_type = wxDF_FILENAME; | |
115 | else | |
116 | m_type = wxDF_PRIVATE; | |
0d2a2b60 | 117 | } |
3f480da3 | 118 | |
1dd989e1 | 119 | void wxDataFormat::SetId( const wxChar *id ) |
0d2a2b60 | 120 | { |
4b3d29db | 121 | PrepareFormats(); |
1dd989e1 RR |
122 | m_type = wxDF_PRIVATE; |
123 | wxString tmp( id ); | |
2e1d7104 | 124 | m_format = gdk_atom_intern( (const char*) tmp.ToAscii(), FALSE ); |
0d2a2b60 | 125 | } |
3f480da3 | 126 | |
1dd989e1 | 127 | void wxDataFormat::PrepareFormats() |
0d2a2b60 | 128 | { |
810b5e1f | 129 | // VZ: GNOME included in RedHat 6.1 uses the MIME types below and not the |
74d38ad8 VZ |
130 | // atoms STRING and file:ALL as the old code was, but normal X apps |
131 | // use STRING for text selection when transfering the data via | |
132 | // clipboard, for example, so do use STRING for now (GNOME apps will | |
133 | // probably support STRING as well for compatibility anyhow), but use | |
134 | // text/uri-list for file dnd because compatibility is not important | |
135 | // here (with whom?) | |
e1ee679c | 136 | if (!g_textAtom) |
2e1d7104 RR |
137 | #if wxUSE_UNICODE |
138 | g_textAtom = gdk_atom_intern( "text/utf8", FALSE ); | |
139 | #else | |
74d38ad8 | 140 | g_textAtom = gdk_atom_intern( "STRING" /* "text/plain" */, FALSE ); |
2e1d7104 | 141 | #endif |
e1ee679c | 142 | if (!g_pngAtom) |
1dd989e1 | 143 | g_pngAtom = gdk_atom_intern( "image/png", FALSE ); |
e1ee679c | 144 | if (!g_fileAtom) |
810b5e1f | 145 | g_fileAtom = gdk_atom_intern( "text/uri-list", FALSE ); |
0d2a2b60 | 146 | } |
8b53e5a2 RR |
147 | |
148 | //------------------------------------------------------------------------- | |
149 | // wxDataObject | |
150 | //------------------------------------------------------------------------- | |
151 | ||
0d2a2b60 RR |
152 | wxDataObject::wxDataObject() |
153 | { | |
0d2a2b60 | 154 | } |
3f480da3 | 155 | |
b068c4e8 | 156 | bool wxDataObject::IsSupportedFormat(const wxDataFormat& format, Direction dir) const |
0d2a2b60 | 157 | { |
b068c4e8 | 158 | size_t nFormatCount = GetFormatCount(dir); |
f2593d0d RR |
159 | if ( nFormatCount == 1 ) |
160 | { | |
1dd989e1 RR |
161 | return format == GetPreferredFormat(); |
162 | } | |
f2593d0d RR |
163 | else |
164 | { | |
1dd989e1 | 165 | wxDataFormat *formats = new wxDataFormat[nFormatCount]; |
b068c4e8 | 166 | GetAllFormats(formats,dir); |
1dd989e1 RR |
167 | |
168 | size_t n; | |
f2593d0d RR |
169 | for ( n = 0; n < nFormatCount; n++ ) |
170 | { | |
1dd989e1 RR |
171 | if ( formats[n] == format ) |
172 | break; | |
173 | } | |
0d2a2b60 | 174 | |
1dd989e1 | 175 | delete [] formats; |
cd5bf2a6 | 176 | |
1dd989e1 RR |
177 | // found? |
178 | return n < nFormatCount; | |
179 | } | |
0d2a2b60 RR |
180 | } |
181 | ||
8b53e5a2 RR |
182 | // ---------------------------------------------------------------------------- |
183 | // wxFileDataObject | |
184 | // ---------------------------------------------------------------------------- | |
185 | ||
e1ee679c | 186 | bool wxFileDataObject::GetDataHere(void *buf) const |
0d2a2b60 | 187 | { |
b068c4e8 | 188 | wxString filenames; |
4b3d29db | 189 | |
b068c4e8 RR |
190 | for (size_t i = 0; i < m_filenames.GetCount(); i++) |
191 | { | |
192 | filenames += m_filenames[i]; | |
4b3d29db | 193 | filenames += (wxChar) 0; |
b068c4e8 | 194 | } |
4b3d29db | 195 | |
e1ee679c | 196 | memcpy( buf, filenames.mbc_str(), filenames.Len() + 1 ); |
0d2a2b60 | 197 | |
e1ee679c | 198 | return TRUE; |
0d2a2b60 | 199 | } |
3f480da3 | 200 | |
e1ee679c | 201 | size_t wxFileDataObject::GetDataSize() const |
0d2a2b60 | 202 | { |
b068c4e8 | 203 | size_t res = 0; |
4b3d29db | 204 | |
b068c4e8 RR |
205 | for (size_t i = 0; i < m_filenames.GetCount(); i++) |
206 | { | |
207 | res += m_filenames[i].Len(); | |
4b3d29db | 208 | res += 1; |
b068c4e8 | 209 | } |
4b3d29db | 210 | |
b068c4e8 | 211 | return res + 1; |
0d2a2b60 | 212 | } |
3f480da3 | 213 | |
7941ba11 | 214 | bool wxFileDataObject::SetData(size_t WXUNUSED(size), const void *buf) |
0d2a2b60 | 215 | { |
810b5e1f VZ |
216 | // VZ: old format |
217 | #if 0 | |
2d68e1b4 | 218 | // filenames are stores as a string with #0 as deliminators |
2d68e1b4 RR |
219 | const char *filenames = (const char*) buf; |
220 | size_t pos = 0; | |
221 | for(;;) | |
222 | { | |
223 | if (filenames[0] == 0) | |
810b5e1f VZ |
224 | break; |
225 | if (pos >= size) | |
226 | break; | |
2d68e1b4 RR |
227 | wxString file( filenames ); // this returns the first file |
228 | AddFile( file ); | |
810b5e1f VZ |
229 | pos += file.Len()+1; |
230 | filenames += file.Len()+1; | |
231 | } | |
232 | #else // 1 | |
233 | m_filenames.Empty(); | |
234 | ||
235 | // the text/uri-list format is a sequence of URIs (filenames prefixed by | |
236 | // "file:" as far as I see) delimited by "\r\n" of total length size | |
237 | // (I wonder what happens if the file has '\n' in its filename??) | |
238 | wxString filename; | |
74d38ad8 | 239 | for ( const char *p = (const char *)buf; ; p++ ) |
810b5e1f | 240 | { |
74d38ad8 VZ |
241 | // some broken programs (testdnd GTK+ sample!) omit the trailing |
242 | // "\r\n", so check for '\0' explicitly here instead of doing it in | |
243 | // the loop statement to account for it | |
244 | if ( (*p == '\r' && *(p+1) == '\n') || !*p ) | |
810b5e1f | 245 | { |
74d38ad8 | 246 | size_t lenPrefix = 5; // strlen("file:") |
810b5e1f VZ |
247 | if ( filename.Left(lenPrefix).MakeLower() == _T("file:") ) |
248 | { | |
74d38ad8 VZ |
249 | // sometimes the syntax is "file:filename", sometimes it's |
250 | // URL-like: "file://filename" - deal with both | |
251 | if ( filename[lenPrefix] == _T('/') && | |
252 | filename[lenPrefix + 1] == _T('/') ) | |
253 | { | |
254 | // skip the slashes | |
255 | lenPrefix += 2; | |
256 | } | |
257 | ||
258 | AddFile(filename.c_str() + lenPrefix); | |
259 | filename.Empty(); | |
260 | } | |
261 | else | |
262 | { | |
263 | wxLogDebug(_T("Unsupported URI '%s' in wxFileDataObject"), | |
264 | filename.c_str()); | |
810b5e1f VZ |
265 | } |
266 | ||
74d38ad8 VZ |
267 | if ( !*p ) |
268 | break; | |
810b5e1f VZ |
269 | |
270 | // skip '\r' | |
271 | p++; | |
272 | } | |
273 | else | |
274 | { | |
275 | filename += *p; | |
276 | } | |
2d68e1b4 | 277 | } |
810b5e1f | 278 | #endif // 0/1 |
3f480da3 | 279 | |
1dd989e1 RR |
280 | return TRUE; |
281 | } | |
282 | ||
b068c4e8 RR |
283 | void wxFileDataObject::AddFile( const wxString &filename ) |
284 | { | |
285 | m_filenames.Add( filename ); | |
286 | } | |
287 | ||
8b53e5a2 RR |
288 | // ---------------------------------------------------------------------------- |
289 | // wxBitmapDataObject | |
290 | // ---------------------------------------------------------------------------- | |
291 | ||
0d2a2b60 RR |
292 | wxBitmapDataObject::wxBitmapDataObject() |
293 | { | |
e1ee679c | 294 | Init(); |
0d2a2b60 RR |
295 | } |
296 | ||
297 | wxBitmapDataObject::wxBitmapDataObject( const wxBitmap& bitmap ) | |
e1ee679c | 298 | : wxBitmapDataObjectBase(bitmap) |
0d2a2b60 | 299 | { |
e1ee679c VZ |
300 | Init(); |
301 | ||
e2acb9ae RR |
302 | DoConvertToPng(); |
303 | } | |
304 | ||
305 | wxBitmapDataObject::~wxBitmapDataObject() | |
306 | { | |
e1ee679c | 307 | Clear(); |
0d2a2b60 RR |
308 | } |
309 | ||
310 | void wxBitmapDataObject::SetBitmap( const wxBitmap &bitmap ) | |
311 | { | |
e1ee679c | 312 | ClearAll(); |
0d2a2b60 | 313 | |
e1ee679c VZ |
314 | wxBitmapDataObjectBase::SetBitmap(bitmap); |
315 | ||
316 | DoConvertToPng(); | |
0d2a2b60 RR |
317 | } |
318 | ||
e1ee679c | 319 | bool wxBitmapDataObject::GetDataHere(void *buf) const |
0d2a2b60 | 320 | { |
e1ee679c | 321 | if ( !m_pngSize ) |
1dd989e1 | 322 | { |
e1ee679c VZ |
323 | wxFAIL_MSG( wxT("attempt to copy empty bitmap failed") ); |
324 | ||
325 | return FALSE; | |
1dd989e1 | 326 | } |
0d2a2b60 | 327 | |
e1ee679c VZ |
328 | memcpy(buf, m_pngData, m_pngSize); |
329 | ||
330 | return TRUE; | |
e2acb9ae RR |
331 | } |
332 | ||
e1ee679c | 333 | bool wxBitmapDataObject::SetData(size_t size, const void *buf) |
e2acb9ae | 334 | { |
e1ee679c VZ |
335 | Clear(); |
336 | ||
bd3b7e09 VS |
337 | wxCHECK_MSG( wxImage::FindHandler(wxBITMAP_TYPE_PNG) != NULL, |
338 | FALSE, wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") ); | |
339 | ||
1dd989e1 | 340 | m_pngSize = size; |
e1ee679c VZ |
341 | m_pngData = malloc(m_pngSize); |
342 | ||
bd3b7e09 | 343 | memcpy(m_pngData, buf, m_pngSize); |
e1ee679c | 344 | |
bd3b7e09 | 345 | wxMemoryInputStream mstream((char*) m_pngData, m_pngSize); |
e2acb9ae | 346 | wxImage image; |
bd3b7e09 | 347 | if ( !image.LoadFile( mstream, wxBITMAP_TYPE_PNG ) ) |
e1ee679c VZ |
348 | { |
349 | return FALSE; | |
350 | } | |
351 | ||
bd3b7e09 | 352 | m_bitmap = wxBitmap(image); |
4b3d29db | 353 | |
b068c4e8 | 354 | return m_bitmap.Ok(); |
e2acb9ae RR |
355 | } |
356 | ||
357 | void wxBitmapDataObject::DoConvertToPng() | |
358 | { | |
bd3b7e09 | 359 | if ( !m_bitmap.Ok() ) |
e1ee679c VZ |
360 | return; |
361 | ||
bd3b7e09 VS |
362 | wxCHECK_RET( wxImage::FindHandler(wxBITMAP_TYPE_PNG) != NULL, |
363 | wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") ); | |
364 | ||
368d59f0 | 365 | wxImage image = m_bitmap.ConvertToImage(); |
e1ee679c | 366 | |
e2acb9ae | 367 | wxCountingOutputStream count; |
bd3b7e09 | 368 | image.SaveFile(count, wxBITMAP_TYPE_PNG); |
e1ee679c | 369 | |
e2acb9ae | 370 | m_pngSize = count.GetSize() + 100; // sometimes the size seems to vary ??? |
e1ee679c VZ |
371 | m_pngData = malloc(m_pngSize); |
372 | ||
bd3b7e09 VS |
373 | wxMemoryOutputStream mstream((char*) m_pngData, m_pngSize); |
374 | image.SaveFile(mstream, wxBITMAP_TYPE_PNG); | |
0d2a2b60 | 375 | } |
3f480da3 | 376 | |
0d2a2b60 | 377 |