1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDataObject class
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 ///////////////////////////////////////////////////////////////////////////////
10 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
11 #pragma implementation "dataobj.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
17 #include "wx/dataobj.h"
20 #include "wx/mstream.h"
26 //-------------------------------------------------------------------------
28 //-------------------------------------------------------------------------
30 GdkAtom g_textAtom
= 0;
31 GdkAtom g_altTextAtom
= 0;
32 GdkAtom g_pngAtom
= 0;
33 GdkAtom g_fileAtom
= 0;
35 //-------------------------------------------------------------------------
37 //-------------------------------------------------------------------------
39 wxDataFormat::wxDataFormat()
41 // do *not* call PrepareFormats() from here for 2 reasons:
43 // 1. we will have time to do it later because some other Set function
44 // must be called before we really need them
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
49 m_type
= wxDF_INVALID
;
50 m_format
= (GdkAtom
) 0;
53 wxDataFormat::wxDataFormat( wxDataFormatId type
)
59 wxDataFormat::wxDataFormat( const wxChar
*id
)
65 wxDataFormat::wxDataFormat( const wxString
&id
)
71 wxDataFormat::wxDataFormat( NativeFormat format
)
77 void wxDataFormat::SetType( wxDataFormatId type
)
83 if (m_type
== wxDF_TEXT
|| m_type
== wxDF_UNICODETEXT
)
84 m_format
= g_textAtom
;
86 if (m_type
== wxDF_BITMAP
)
89 if (m_type
== wxDF_FILENAME
)
90 m_format
= g_fileAtom
;
93 wxFAIL_MSG( wxT("invalid dataformat") );
97 wxDataFormatId
wxDataFormat::GetType() const
102 wxString
wxDataFormat::GetId() const
104 wxString ret
= wxString::FromAscii( gdk_atom_name( m_format
) );
108 void wxDataFormat::SetId( NativeFormat format
)
113 if (m_format
== g_textAtom
)
116 if (m_format
== g_pngAtom
)
117 m_type
= wxDF_BITMAP
;
119 if (m_format
== g_fileAtom
)
120 m_type
= wxDF_FILENAME
;
122 m_type
= wxDF_PRIVATE
;
125 void wxDataFormat::SetId( const wxChar
*id
)
128 m_type
= wxDF_PRIVATE
;
130 m_format
= gdk_atom_intern( (const char*) tmp
.ToAscii(), FALSE
);
133 void wxDataFormat::PrepareFormats()
135 // VZ: GNOME included in RedHat 6.1 uses the MIME types below and not the
136 // atoms STRING and file:ALL as the old code was, but normal X apps
137 // use STRING for text selection when transfering the data via
138 // clipboard, for example, so do use STRING for now (GNOME apps will
139 // probably support STRING as well for compatibility anyhow), but use
140 // text/uri-list for file dnd because compatibility is not important
144 g_textAtom
= gdk_atom_intern( "UTF8_STRING", FALSE
);
145 g_altTextAtom
= gdk_atom_intern( "STRING", FALSE
);
147 g_textAtom
= gdk_atom_intern( "STRING" /* "text/plain" */, FALSE
);
150 g_pngAtom
= gdk_atom_intern( "image/png", FALSE
);
152 g_fileAtom
= gdk_atom_intern( "text/uri-list", FALSE
);
155 //-------------------------------------------------------------------------
157 //-------------------------------------------------------------------------
159 wxDataObject::wxDataObject()
163 wxDataObject::~wxDataObject()
165 // dtor is empty but needed for Darwin and AIX -- otherwise it doesn't link
168 bool wxDataObject::IsSupportedFormat(const wxDataFormat
& format
, Direction dir
) const
170 size_t nFormatCount
= GetFormatCount(dir
);
171 if ( nFormatCount
== 1 )
173 return format
== GetPreferredFormat();
177 wxDataFormat
*formats
= new wxDataFormat
[nFormatCount
];
178 GetAllFormats(formats
,dir
);
181 for ( n
= 0; n
< nFormatCount
; n
++ )
183 if ( formats
[n
] == format
)
190 return n
< nFormatCount
;
194 // ----------------------------------------------------------------------------
196 // ----------------------------------------------------------------------------
198 #if defined(__WXGTK20__) && wxUSE_UNICODE
199 void wxTextDataObject::GetAllFormats(wxDataFormat
*formats
, wxDataObjectBase::Direction dir
) const
201 *formats
++ = GetPreferredFormat();
202 *formats
= g_altTextAtom
;
206 // ----------------------------------------------------------------------------
208 // ----------------------------------------------------------------------------
210 bool wxFileDataObject::GetDataHere(void *buf
) const
214 for (size_t i
= 0; i
< m_filenames
.GetCount(); i
++)
216 filenames
+= wxT("file:");
217 filenames
+= m_filenames
[i
];
218 filenames
+= wxT("\r\n");
221 memcpy( buf
, filenames
.mbc_str(), filenames
.Len() + 1 );
226 size_t wxFileDataObject::GetDataSize() const
230 for (size_t i
= 0; i
< m_filenames
.GetCount(); i
++)
232 // This is junk in UTF-8
233 res
+= m_filenames
[i
].Len();
234 res
+= 5 + 2; // "file:" (5) + "\r\n" (2)
240 bool wxFileDataObject::SetData(size_t WXUNUSED(size
), const void *buf
)
244 // filenames are stores as a string with #0 as deliminators
245 const char *filenames
= (const char*) buf
;
249 if (filenames
[0] == 0)
253 wxString
file( filenames
); // this returns the first file
256 filenames
+= file
.Len()+1;
261 // the text/uri-list format is a sequence of URIs (filenames prefixed by
262 // "file:" as far as I see) delimited by "\r\n" of total length size
263 // (I wonder what happens if the file has '\n' in its filename??)
265 for ( const char *p
= (const char *)buf
; ; p
++ )
267 // some broken programs (testdnd GTK+ sample!) omit the trailing
268 // "\r\n", so check for '\0' explicitly here instead of doing it in
269 // the loop statement to account for it
270 if ( (*p
== '\r' && *(p
+1) == '\n') || !*p
)
272 size_t lenPrefix
= 5; // strlen("file:")
273 if ( filename
.Left(lenPrefix
).MakeLower() == _T("file:") )
275 // sometimes the syntax is "file:filename", sometimes it's
276 // URL-like: "file://filename" - deal with both
277 if ( filename
[lenPrefix
] == _T('/') &&
278 filename
[lenPrefix
+ 1] == _T('/') )
284 AddFile(filename
.c_str() + lenPrefix
);
289 wxLogDebug(_T("Unsupported URI '%s' in wxFileDataObject"),
309 void wxFileDataObject::AddFile( const wxString
&filename
)
311 m_filenames
.Add( filename
);
314 // ----------------------------------------------------------------------------
315 // wxBitmapDataObject
316 // ----------------------------------------------------------------------------
318 wxBitmapDataObject::wxBitmapDataObject()
323 wxBitmapDataObject::wxBitmapDataObject( const wxBitmap
& bitmap
)
324 : wxBitmapDataObjectBase(bitmap
)
331 wxBitmapDataObject::~wxBitmapDataObject()
336 void wxBitmapDataObject::SetBitmap( const wxBitmap
&bitmap
)
340 wxBitmapDataObjectBase::SetBitmap(bitmap
);
345 bool wxBitmapDataObject::GetDataHere(void *buf
) const
349 wxFAIL_MSG( wxT("attempt to copy empty bitmap failed") );
354 memcpy(buf
, m_pngData
, m_pngSize
);
359 bool wxBitmapDataObject::SetData(size_t size
, const void *buf
)
363 wxCHECK_MSG( wxImage::FindHandler(wxBITMAP_TYPE_PNG
) != NULL
,
364 FALSE
, wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") );
367 m_pngData
= malloc(m_pngSize
);
369 memcpy(m_pngData
, buf
, m_pngSize
);
371 wxMemoryInputStream
mstream((char*) m_pngData
, m_pngSize
);
373 if ( !image
.LoadFile( mstream
, wxBITMAP_TYPE_PNG
) )
378 m_bitmap
= wxBitmap(image
);
380 return m_bitmap
.Ok();
383 void wxBitmapDataObject::DoConvertToPng()
385 if ( !m_bitmap
.Ok() )
388 wxCHECK_RET( wxImage::FindHandler(wxBITMAP_TYPE_PNG
) != NULL
,
389 wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") );
391 wxImage image
= m_bitmap
.ConvertToImage();
393 wxCountingOutputStream count
;
394 image
.SaveFile(count
, wxBITMAP_TYPE_PNG
);
396 m_pngSize
= count
.GetSize() + 100; // sometimes the size seems to vary ???
397 m_pngData
= malloc(m_pngSize
);
399 wxMemoryOutputStream
mstream((char*) m_pngData
, m_pngSize
);
400 image
.SaveFile(mstream
, wxBITMAP_TYPE_PNG
);