1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDataObject class
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 ///////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "dataobj.h"
14 #include "wx/dataobj.h"
17 #include "wx/mstream.h"
22 //-------------------------------------------------------------------------
24 //-------------------------------------------------------------------------
26 GdkAtom g_textAtom
= 0;
27 GdkAtom g_pngAtom
= 0;
28 GdkAtom g_fileAtom
= 0;
30 //-------------------------------------------------------------------------
32 //-------------------------------------------------------------------------
34 wxDataFormat::wxDataFormat()
36 // do *not* call PrepareFormats() from here for 2 reasons:
38 // 1. we will have time to do it later because some other Set function
39 // must be called before we really need them
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
44 m_type
= wxDF_INVALID
;
45 m_format
= (GdkAtom
) 0;
48 wxDataFormat::wxDataFormat( wxDataFormatId type
)
54 wxDataFormat::wxDataFormat( const wxChar
*id
)
60 wxDataFormat::wxDataFormat( const wxString
&id
)
66 wxDataFormat::wxDataFormat( NativeFormat format
)
72 void wxDataFormat::SetType( wxDataFormatId type
)
77 if (m_type
== wxDF_TEXT
)
78 m_format
= g_textAtom
;
80 if (m_type
== wxDF_BITMAP
)
83 if (m_type
== wxDF_FILENAME
)
84 m_format
= g_fileAtom
;
87 wxFAIL_MSG( wxT("invalid dataformat") );
91 wxDataFormatId
wxDataFormat::GetType() const
96 wxString
wxDataFormat::GetId() const
98 wxString
ret( gdk_atom_name( m_format
) ); // this will convert from ascii to Unicode
102 void wxDataFormat::SetId( NativeFormat format
)
107 if (m_format
== g_textAtom
)
110 if (m_format
== g_pngAtom
)
111 m_type
= wxDF_BITMAP
;
113 if (m_format
== g_fileAtom
)
114 m_type
= wxDF_FILENAME
;
116 m_type
= wxDF_PRIVATE
;
119 void wxDataFormat::SetId( const wxChar
*id
)
122 m_type
= wxDF_PRIVATE
;
124 m_format
= gdk_atom_intern( wxMBSTRINGCAST tmp
.mbc_str(), FALSE
); // what is the string cast for?
127 void wxDataFormat::PrepareFormats()
129 // VZ: GNOME included in RedHat 6.1 uses the MIME types below and not the
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
137 g_textAtom
= gdk_atom_intern( "STRING" /* "text/plain" */, FALSE
);
139 g_pngAtom
= gdk_atom_intern( "image/png", FALSE
);
141 g_fileAtom
= gdk_atom_intern( "text/uri-list", FALSE
);
144 //-------------------------------------------------------------------------
146 //-------------------------------------------------------------------------
148 wxDataObject::wxDataObject()
152 bool wxDataObject::IsSupportedFormat(const wxDataFormat
& format
, Direction dir
) const
154 size_t nFormatCount
= GetFormatCount(dir
);
155 if ( nFormatCount
== 1 )
157 return format
== GetPreferredFormat();
161 wxDataFormat
*formats
= new wxDataFormat
[nFormatCount
];
162 GetAllFormats(formats
,dir
);
165 for ( n
= 0; n
< nFormatCount
; n
++ )
167 if ( formats
[n
] == format
)
174 return n
< nFormatCount
;
178 // ----------------------------------------------------------------------------
180 // ----------------------------------------------------------------------------
182 bool wxFileDataObject::GetDataHere(void *buf
) const
186 for (size_t i
= 0; i
< m_filenames
.GetCount(); i
++)
188 filenames
+= m_filenames
[i
];
189 filenames
+= (wxChar
) 0;
192 memcpy( buf
, filenames
.mbc_str(), filenames
.Len() + 1 );
197 size_t wxFileDataObject::GetDataSize() const
201 for (size_t i
= 0; i
< m_filenames
.GetCount(); i
++)
203 res
+= m_filenames
[i
].Len();
210 bool wxFileDataObject::SetData(size_t WXUNUSED(size
), const void *buf
)
214 // filenames are stores as a string with #0 as deliminators
215 const char *filenames
= (const char*) buf
;
219 if (filenames
[0] == 0)
223 wxString
file( filenames
); // this returns the first file
226 filenames
+= file
.Len()+1;
231 // the text/uri-list format is a sequence of URIs (filenames prefixed by
232 // "file:" as far as I see) delimited by "\r\n" of total length size
233 // (I wonder what happens if the file has '\n' in its filename??)
235 for ( const char *p
= (const char *)buf
; ; p
++ )
237 // some broken programs (testdnd GTK+ sample!) omit the trailing
238 // "\r\n", so check for '\0' explicitly here instead of doing it in
239 // the loop statement to account for it
240 if ( (*p
== '\r' && *(p
+1) == '\n') || !*p
)
242 size_t lenPrefix
= 5; // strlen("file:")
243 if ( filename
.Left(lenPrefix
).MakeLower() == _T("file:") )
245 // sometimes the syntax is "file:filename", sometimes it's
246 // URL-like: "file://filename" - deal with both
247 if ( filename
[lenPrefix
] == _T('/') &&
248 filename
[lenPrefix
+ 1] == _T('/') )
254 AddFile(filename
.c_str() + lenPrefix
);
259 wxLogDebug(_T("Unsupported URI '%s' in wxFileDataObject"),
279 void wxFileDataObject::AddFile( const wxString
&filename
)
281 m_filenames
.Add( filename
);
284 // ----------------------------------------------------------------------------
285 // wxBitmapDataObject
286 // ----------------------------------------------------------------------------
288 wxBitmapDataObject::wxBitmapDataObject()
293 wxBitmapDataObject::wxBitmapDataObject( const wxBitmap
& bitmap
)
294 : wxBitmapDataObjectBase(bitmap
)
301 wxBitmapDataObject::~wxBitmapDataObject()
306 void wxBitmapDataObject::SetBitmap( const wxBitmap
&bitmap
)
310 wxBitmapDataObjectBase::SetBitmap(bitmap
);
315 bool wxBitmapDataObject::GetDataHere(void *buf
) const
319 wxFAIL_MSG( wxT("attempt to copy empty bitmap failed") );
324 memcpy(buf
, m_pngData
, m_pngSize
);
329 bool wxBitmapDataObject::SetData(size_t size
, const void *buf
)
335 m_pngData
= malloc(m_pngSize
);
337 memcpy( m_pngData
, buf
, m_pngSize
);
339 wxMemoryInputStream
mstream( (char*) m_pngData
, m_pngSize
);
341 wxPNGHandler handler
;
342 if ( !handler
.LoadFile( &image
, mstream
) )
347 m_bitmap
= image
.ConvertToBitmap();
349 return m_bitmap
.Ok();
355 void wxBitmapDataObject::DoConvertToPng()
361 wxImage
image( m_bitmap
);
362 wxPNGHandler handler
;
364 wxCountingOutputStream count
;
365 handler
.SaveFile( &image
, count
);
367 m_pngSize
= count
.GetSize() + 100; // sometimes the size seems to vary ???
368 m_pngData
= malloc(m_pngSize
);
370 wxMemoryOutputStream
mstream( (char*) m_pngData
, m_pngSize
);
371 handler
.SaveFile( &image
, mstream
);