1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk1/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 bool wxFileDataObject::GetDataHere(void *buf
) const
221 for (size_t i
= 0; i
< m_filenames
.GetCount(); i
++)
223 filenames
+= wxT("file:");
224 filenames
+= m_filenames
[i
];
225 filenames
+= wxT("\r\n");
228 memcpy( buf
, filenames
.mbc_str(), filenames
.Len() + 1 );
233 size_t wxFileDataObject::GetDataSize() const
237 for (size_t i
= 0; i
< m_filenames
.GetCount(); i
++)
239 // This is junk in UTF-8
240 res
+= m_filenames
[i
].Len();
241 res
+= 5 + 2; // "file:" (5) + "\r\n" (2)
247 bool wxFileDataObject::SetData(size_t WXUNUSED(size
), const void *buf
)
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"
254 for ( const char *p
= (const char *)buf
; ; p
++ )
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
)
261 size_t lenPrefix
= 5; // strlen("file:")
262 if ( filename
.Left(lenPrefix
).MakeLower() == _T("file:") )
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('/') )
273 AddFile(wxURI::Unescape(filename
.c_str() + lenPrefix
));
278 wxLogDebug(_T("Unsupported URI '%s' in wxFileDataObject"),
297 void wxFileDataObject::AddFile( const wxString
&filename
)
299 m_filenames
.Add( filename
);
302 // ----------------------------------------------------------------------------
303 // wxBitmapDataObject
304 // ----------------------------------------------------------------------------
306 wxBitmapDataObject::wxBitmapDataObject()
311 wxBitmapDataObject::wxBitmapDataObject( const wxBitmap
& bitmap
)
312 : wxBitmapDataObjectBase(bitmap
)
319 wxBitmapDataObject::~wxBitmapDataObject()
324 void wxBitmapDataObject::SetBitmap( const wxBitmap
&bitmap
)
328 wxBitmapDataObjectBase::SetBitmap(bitmap
);
333 bool wxBitmapDataObject::GetDataHere(void *buf
) const
337 wxFAIL_MSG( wxT("attempt to copy empty bitmap failed") );
342 memcpy(buf
, m_pngData
, m_pngSize
);
347 bool wxBitmapDataObject::SetData(size_t size
, const void *buf
)
351 wxCHECK_MSG( wxImage::FindHandler(wxBITMAP_TYPE_PNG
) != NULL
,
352 false, wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") );
355 m_pngData
= malloc(m_pngSize
);
357 memcpy(m_pngData
, buf
, m_pngSize
);
359 wxMemoryInputStream
mstream((char*) m_pngData
, m_pngSize
);
361 if ( !image
.LoadFile( mstream
, wxBITMAP_TYPE_PNG
) )
366 m_bitmap
= wxBitmap(image
);
368 return m_bitmap
.Ok();
371 void wxBitmapDataObject::DoConvertToPng()
373 if ( !m_bitmap
.Ok() )
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!") );
379 wxImage image
= m_bitmap
.ConvertToImage();
381 wxCountingOutputStream count
;
382 image
.SaveFile(count
, wxBITMAP_TYPE_PNG
);
384 m_pngSize
= count
.GetSize() + 100; // sometimes the size seems to vary ???
385 m_pngData
= malloc(m_pngSize
);
387 wxMemoryOutputStream
mstream((char*) m_pngData
, m_pngSize
);
388 image
.SaveFile(mstream
, wxBITMAP_TYPE_PNG
);
391 #endif // wxUSE_DATAOBJ