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