1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/dataobj.cpp
3 // Purpose: wxDataObject class
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 ///////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
15 #include "wx/dataobj.h"
23 #include "wx/mstream.h"
29 //-------------------------------------------------------------------------
31 //-------------------------------------------------------------------------
33 GdkAtom g_textAtom
= 0;
34 GdkAtom g_altTextAtom
= 0;
35 GdkAtom g_pngAtom
= 0;
36 GdkAtom g_fileAtom
= 0;
38 //-------------------------------------------------------------------------
40 //-------------------------------------------------------------------------
42 wxDataFormat::wxDataFormat()
44 // do *not* call PrepareFormats() from here for 2 reasons:
46 // 1. we will have time to do it later because some other Set function
47 // must be called before we really need them
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
52 m_type
= wxDF_INVALID
;
53 m_format
= (GdkAtom
) 0;
56 wxDataFormat::wxDataFormat( wxDataFormatId type
)
62 wxDataFormat::wxDataFormat( const wxChar
*id
)
68 wxDataFormat::wxDataFormat( const wxString
&id
)
74 wxDataFormat::wxDataFormat( NativeFormat format
)
80 void wxDataFormat::SetType( wxDataFormatId type
)
87 if (m_type
== wxDF_UNICODETEXT
)
88 m_format
= g_textAtom
;
89 else if (m_type
== wxDF_TEXT
)
90 m_format
= g_altTextAtom
;
92 if (m_type
== wxDF_TEXT
|| m_type
== wxDF_UNICODETEXT
)
93 m_format
= g_textAtom
;
96 if (m_type
== wxDF_BITMAP
)
99 if (m_type
== wxDF_FILENAME
)
100 m_format
= g_fileAtom
;
103 wxFAIL_MSG( wxT("invalid dataformat") );
107 wxDataFormatId
wxDataFormat::GetType() const
112 wxString
wxDataFormat::GetId() const
114 gchar
* atom_name
= gdk_atom_name( m_format
);
115 wxString ret
= wxString::FromAscii( atom_name
);
120 void wxDataFormat::SetId( NativeFormat format
)
125 if (m_format
== g_textAtom
)
127 m_type
= wxDF_UNICODETEXT
;
132 if (m_format
== g_altTextAtom
)
135 if (m_format
== g_pngAtom
)
136 m_type
= wxDF_BITMAP
;
138 if (m_format
== g_fileAtom
)
139 m_type
= wxDF_FILENAME
;
141 m_type
= wxDF_PRIVATE
;
144 void wxDataFormat::SetId( const wxChar
*id
)
147 m_type
= wxDF_PRIVATE
;
149 m_format
= gdk_atom_intern( (const char*) tmp
.ToAscii(), FALSE
);
152 void wxDataFormat::PrepareFormats()
154 // VZ: GNOME included in RedHat 6.1 uses the MIME types below and not the
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
163 g_textAtom
= gdk_atom_intern( "UTF8_STRING", FALSE
);
164 g_altTextAtom
= gdk_atom_intern( "STRING", FALSE
);
166 g_textAtom
= gdk_atom_intern( "STRING" /* "text/plain" */, FALSE
);
169 g_pngAtom
= gdk_atom_intern( "image/png", FALSE
);
171 g_fileAtom
= gdk_atom_intern( "text/uri-list", FALSE
);
174 //-------------------------------------------------------------------------
176 //-------------------------------------------------------------------------
178 wxDataObject::wxDataObject()
182 wxDataObject::~wxDataObject()
184 // dtor is empty but needed for Darwin and AIX -- otherwise it doesn't link
187 bool wxDataObject::IsSupportedFormat(const wxDataFormat
& format
, Direction dir
) const
189 size_t nFormatCount
= GetFormatCount(dir
);
190 if ( nFormatCount
== 1 )
192 return format
== GetPreferredFormat();
196 wxDataFormat
*formats
= new wxDataFormat
[nFormatCount
];
197 GetAllFormats(formats
,dir
);
200 for ( n
= 0; n
< nFormatCount
; n
++ )
202 if ( formats
[n
] == format
)
209 return n
< nFormatCount
;
213 // ----------------------------------------------------------------------------
215 // ----------------------------------------------------------------------------
217 #if defined(__WXGTK20__) && wxUSE_UNICODE
218 void wxTextDataObject::GetAllFormats(wxDataFormat
*formats
, wxDataObjectBase::Direction dir
) const
220 *formats
++ = GetPreferredFormat();
221 *formats
= g_altTextAtom
;
225 // ----------------------------------------------------------------------------
227 // ----------------------------------------------------------------------------
229 bool wxFileDataObject::GetDataHere(void *buf
) const
233 for (size_t i
= 0; i
< m_filenames
.GetCount(); i
++)
235 filenames
+= wxT("file:");
236 filenames
+= m_filenames
[i
];
237 filenames
+= wxT("\r\n");
240 memcpy( buf
, filenames
.mbc_str(), filenames
.Len() + 1 );
245 size_t wxFileDataObject::GetDataSize() const
249 for (size_t i
= 0; i
< m_filenames
.GetCount(); i
++)
251 // This is junk in UTF-8
252 res
+= m_filenames
[i
].Len();
253 res
+= 5 + 2; // "file:" (5) + "\r\n" (2)
259 bool wxFileDataObject::SetData(size_t WXUNUSED(size
), const void *buf
)
263 // we get data in the text/uri-list format, i.e. as a sequence of URIs
264 // (filenames prefixed by "file:") delimited by "\r\n"
266 for ( const char *p
= (const char *)buf
; ; p
++ )
268 // some broken programs (testdnd GTK+ sample!) omit the trailing
269 // "\r\n", so check for '\0' explicitly here instead of doing it in
270 // the loop statement to account for it
271 if ( (*p
== '\r' && *(p
+1) == '\n') || !*p
)
273 size_t lenPrefix
= 5; // strlen("file:")
274 if ( filename
.Left(lenPrefix
).MakeLower() == _T("file:") )
276 // sometimes the syntax is "file:filename", sometimes it's
277 // URL-like: "file://filename" - deal with both
278 if ( filename
[lenPrefix
] == _T('/') &&
279 filename
[lenPrefix
+ 1] == _T('/') )
285 AddFile(wxURI::Unescape(filename
.c_str() + lenPrefix
));
288 else if ( !filename
.empty() )
290 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
);
403 #endif // wxUSE_DATAOBJ