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"
26 #include "wx/gtk/private.h"
28 //-------------------------------------------------------------------------
30 //-------------------------------------------------------------------------
32 GdkAtom g_textAtom
= 0;
33 GdkAtom g_altTextAtom
= 0;
34 GdkAtom g_pngAtom
= 0;
35 GdkAtom g_fileAtom
= 0;
37 //-------------------------------------------------------------------------
39 //-------------------------------------------------------------------------
41 wxDataFormat::wxDataFormat()
43 // do *not* call PrepareFormats() from here for 2 reasons:
45 // 1. we will have time to do it later because some other Set function
46 // must be called before we really need them
48 // 2. doing so prevents us from declaring global wxDataFormats because
49 // calling PrepareFormats (and thus gdk_atom_intern) before GDK is
50 // initialised will result in a crash
51 m_type
= wxDF_INVALID
;
52 m_format
= (GdkAtom
) 0;
55 wxDataFormat::wxDataFormat( wxDataFormatId type
)
61 void wxDataFormat::InitFromString( const wxString
&id
)
67 wxDataFormat::wxDataFormat( NativeFormat format
)
73 void wxDataFormat::SetType( wxDataFormatId type
)
80 if (m_type
== wxDF_UNICODETEXT
)
81 m_format
= g_textAtom
;
82 else if (m_type
== wxDF_TEXT
)
83 m_format
= g_altTextAtom
;
85 if (m_type
== wxDF_TEXT
|| m_type
== wxDF_UNICODETEXT
)
86 m_format
= g_textAtom
;
89 if (m_type
== wxDF_BITMAP
)
92 if (m_type
== wxDF_FILENAME
)
93 m_format
= g_fileAtom
;
96 wxFAIL_MSG( wxT("invalid dataformat") );
100 wxDataFormatId
wxDataFormat::GetType() const
105 wxString
wxDataFormat::GetId() const
107 wxGtkString
atom_name(gdk_atom_name(m_format
));
108 return wxString::FromAscii(atom_name
);
111 void wxDataFormat::SetId( NativeFormat format
)
116 if (m_format
== g_textAtom
)
118 m_type
= wxDF_UNICODETEXT
;
123 if (m_format
== g_altTextAtom
)
126 if (m_format
== g_pngAtom
)
127 m_type
= wxDF_BITMAP
;
129 if (m_format
== g_fileAtom
)
130 m_type
= wxDF_FILENAME
;
132 m_type
= wxDF_PRIVATE
;
135 void wxDataFormat::SetId( const wxString
& id
)
138 m_type
= wxDF_PRIVATE
;
139 m_format
= gdk_atom_intern( id
.ToAscii(), FALSE
);
142 void wxDataFormat::PrepareFormats()
144 // VZ: GNOME included in RedHat 6.1 uses the MIME types below and not the
145 // atoms STRING and file:ALL as the old code was, but normal X apps
146 // use STRING for text selection when transfering the data via
147 // clipboard, for example, so do use STRING for now (GNOME apps will
148 // probably support STRING as well for compatibility anyhow), but use
149 // text/uri-list for file dnd because compatibility is not important
153 g_textAtom
= gdk_atom_intern( "UTF8_STRING", FALSE
);
154 g_altTextAtom
= gdk_atom_intern( "STRING", FALSE
);
156 g_textAtom
= gdk_atom_intern( "STRING" /* "text/plain" */, FALSE
);
159 g_pngAtom
= gdk_atom_intern( "image/png", FALSE
);
161 g_fileAtom
= gdk_atom_intern( "text/uri-list", FALSE
);
164 //-------------------------------------------------------------------------
166 //-------------------------------------------------------------------------
168 wxDataObject::wxDataObject()
172 wxDataObject::~wxDataObject()
174 // dtor is empty but needed for Darwin and AIX -- otherwise it doesn't link
177 bool wxDataObject::IsSupportedFormat(const wxDataFormat
& format
, Direction dir
) const
179 size_t nFormatCount
= GetFormatCount(dir
);
180 if ( nFormatCount
== 1 )
182 return format
== GetPreferredFormat();
186 wxDataFormat
*formats
= new wxDataFormat
[nFormatCount
];
187 GetAllFormats(formats
,dir
);
190 for ( n
= 0; n
< nFormatCount
; n
++ )
192 if ( formats
[n
] == format
)
199 return n
< nFormatCount
;
203 // ----------------------------------------------------------------------------
205 // ----------------------------------------------------------------------------
210 wxTextDataObject::GetAllFormats(wxDataFormat
*formats
,
211 wxDataObjectBase::Direction
WXUNUSED(dir
)) const
213 *formats
++ = GetPreferredFormat();
214 *formats
= g_altTextAtom
;
217 #endif // wxUSE_UNICODE
219 // ----------------------------------------------------------------------------
221 // ----------------------------------------------------------------------------
223 bool wxFileDataObject::GetDataHere(void *buf
) const
227 for (size_t i
= 0; i
< m_filenames
.GetCount(); i
++)
229 filenames
+= wxT("file:");
230 filenames
+= m_filenames
[i
];
231 filenames
+= wxT("\r\n");
234 memcpy( buf
, filenames
.mbc_str(), filenames
.length() + 1 );
239 size_t wxFileDataObject::GetDataSize() const
243 for (size_t i
= 0; i
< m_filenames
.GetCount(); i
++)
245 // This is junk in UTF-8
246 res
+= m_filenames
[i
].length();
247 res
+= 5 + 2; // "file:" (5) + "\r\n" (2)
253 bool wxFileDataObject::SetData(size_t WXUNUSED(size
), const void *buf
)
255 // we get data in the text/uri-list format, i.e. as a sequence of URIs
256 // (filenames prefixed by "file:") delimited by "\r\n". size includes
257 // the trailing zero (in theory, not for Nautilus in early GNOME
262 const gchar
*nexttemp
= (const gchar
*) buf
;
266 const gchar
*temp
= nexttemp
;
273 // if an app omits '\r''\n'
280 if (temp
[len
] == '\r')
282 if (temp
[len
+1] == '\n')
283 nexttemp
= temp
+len
+2;
285 nexttemp
= temp
+len
+1;
294 // required to give it a trailing zero
295 gchar
*uri
= g_strndup( temp
, len
);
297 gchar
*fn
= g_filename_from_uri( uri
, NULL
, NULL
);
303 AddFile( wxConvFileName
->cMB2WX( fn
) );
311 void wxFileDataObject::AddFile( const wxString
&filename
)
313 m_filenames
.Add( filename
);
316 // ----------------------------------------------------------------------------
317 // wxBitmapDataObject
318 // ----------------------------------------------------------------------------
320 wxBitmapDataObject::wxBitmapDataObject()
325 wxBitmapDataObject::wxBitmapDataObject( const wxBitmap
& bitmap
)
326 : wxBitmapDataObjectBase(bitmap
)
333 wxBitmapDataObject::~wxBitmapDataObject()
338 void wxBitmapDataObject::SetBitmap( const wxBitmap
&bitmap
)
342 wxBitmapDataObjectBase::SetBitmap(bitmap
);
347 bool wxBitmapDataObject::GetDataHere(void *buf
) const
351 wxFAIL_MSG( wxT("attempt to copy empty bitmap failed") );
356 memcpy(buf
, m_pngData
, m_pngSize
);
361 bool wxBitmapDataObject::SetData(size_t size
, const void *buf
)
365 wxCHECK_MSG( wxImage::FindHandler(wxBITMAP_TYPE_PNG
) != NULL
,
366 false, wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") );
369 m_pngData
= malloc(m_pngSize
);
371 memcpy(m_pngData
, buf
, m_pngSize
);
373 wxMemoryInputStream
mstream((char*) m_pngData
, m_pngSize
);
375 if ( !image
.LoadFile( mstream
, wxBITMAP_TYPE_PNG
) )
380 m_bitmap
= wxBitmap(image
);
382 return m_bitmap
.Ok();
385 void wxBitmapDataObject::DoConvertToPng()
387 if ( !m_bitmap
.Ok() )
390 wxCHECK_RET( wxImage::FindHandler(wxBITMAP_TYPE_PNG
) != NULL
,
391 wxT("You must call wxImage::AddHandler(new wxPNGHandler); to be able to use clipboard with bitmaps!") );
393 wxImage image
= m_bitmap
.ConvertToImage();
395 wxCountingOutputStream count
;
396 image
.SaveFile(count
, wxBITMAP_TYPE_PNG
);
398 m_pngSize
= count
.GetSize() + 100; // sometimes the size seems to vary ???
399 m_pngData
= malloc(m_pngSize
);
401 wxMemoryOutputStream
mstream((char*) m_pngData
, m_pngSize
);
402 image
.SaveFile(mstream
, wxBITMAP_TYPE_PNG
);
405 #endif // wxUSE_DATAOBJ