]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/dataobj.cpp
include <wx/...> => include "wx/..."
[wxWidgets.git] / src / gtk1 / dataobj.cpp
CommitLineData
8b53e5a2
RR
1///////////////////////////////////////////////////////////////////////////////
2// Name: dataobj.cpp
3// Purpose: wxDataObject class
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
3f480da3 7// Licence: wxWindows licence
8b53e5a2
RR
8///////////////////////////////////////////////////////////////////////////////
9
10#ifdef __GNUG__
3f480da3 11 #pragma implementation "dataobj.h"
8b53e5a2
RR
12#endif
13
14#include "wx/dataobj.h"
ab8884ac 15#include "wx/app.h"
0d2a2b60 16#include "wx/debug.h"
e2acb9ae
RR
17#include "wx/mstream.h"
18#include "wx/image.h"
0d2a2b60
RR
19
20#include "gdk/gdk.h"
21
d6086ea6
RR
22//-------------------------------------------------------------------------
23// global data
24//-------------------------------------------------------------------------
25
26GdkAtom g_textAtom = 0;
e2acb9ae 27GdkAtom g_pngAtom = 0;
1dd989e1 28GdkAtom g_fileAtom = 0;
d6086ea6 29
0d2a2b60
RR
30//-------------------------------------------------------------------------
31// wxDataFormat
32//-------------------------------------------------------------------------
33
cd5bf2a6 34wxDataFormat::wxDataFormat()
0d2a2b60 35{
4b3d29db
VZ
36 // do *not* call PrepareFormats() from here for 2 reasons:
37 //
38 // 1. we will have time to do it later because some other Set function
39 // must be called before we really need them
40 //
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
cd5bf2a6 44 m_type = wxDF_INVALID;
1dd989e1 45 m_format = (GdkAtom) 0;
cd5bf2a6
RR
46}
47
3f480da3 48wxDataFormat::wxDataFormat( wxDataFormatId type )
cd5bf2a6 49{
e2acb9ae 50 PrepareFormats();
cd5bf2a6 51 SetType( type );
0d2a2b60
RR
52}
53
b5be07d4 54wxDataFormat::wxDataFormat( const wxChar *id )
8a126fcc 55{
e2acb9ae 56 PrepareFormats();
8a126fcc
RR
57 SetId( id );
58}
59
0d2a2b60
RR
60wxDataFormat::wxDataFormat( const wxString &id )
61{
e2acb9ae 62 PrepareFormats();
cd5bf2a6 63 SetId( id );
0d2a2b60
RR
64}
65
1dd989e1 66wxDataFormat::wxDataFormat( NativeFormat format )
0d2a2b60 67{
e2acb9ae 68 PrepareFormats();
1dd989e1 69 SetId( format );
0d2a2b60
RR
70}
71
3f480da3 72void wxDataFormat::SetType( wxDataFormatId type )
cd5bf2a6 73{
4b3d29db 74 PrepareFormats();
cd5bf2a6 75 m_type = type;
3f480da3 76
cd5bf2a6 77 if (m_type == wxDF_TEXT)
1dd989e1 78 m_format = g_textAtom;
cd5bf2a6
RR
79 else
80 if (m_type == wxDF_BITMAP)
1dd989e1 81 m_format = g_pngAtom;
cd5bf2a6
RR
82 else
83 if (m_type == wxDF_FILENAME)
1dd989e1 84 m_format = g_fileAtom;
cd5bf2a6
RR
85 else
86 {
223d09f6 87 wxFAIL_MSG( wxT("invalid dataformat") );
cd5bf2a6 88 }
cd5bf2a6 89}
3f480da3
VZ
90
91wxDataFormatId wxDataFormat::GetType() const
0d2a2b60
RR
92{
93 return m_type;
94}
95
96wxString wxDataFormat::GetId() const
97{
1dd989e1
RR
98 wxString ret( gdk_atom_name( m_format ) ); // this will convert from ascii to Unicode
99 return ret;
0d2a2b60 100}
3f480da3 101
1dd989e1 102void wxDataFormat::SetId( NativeFormat format )
3f480da3 103{
4b3d29db 104 PrepareFormats();
1dd989e1 105 m_format = format;
3f480da3 106
1dd989e1
RR
107 if (m_format == g_textAtom)
108 m_type = wxDF_TEXT;
109 else
110 if (m_format == g_pngAtom)
111 m_type = wxDF_BITMAP;
112 else
113 if (m_format == g_fileAtom)
114 m_type = wxDF_FILENAME;
115 else
116 m_type = wxDF_PRIVATE;
0d2a2b60 117}
3f480da3 118
1dd989e1 119void wxDataFormat::SetId( const wxChar *id )
0d2a2b60 120{
4b3d29db 121 PrepareFormats();
1dd989e1
RR
122 m_type = wxDF_PRIVATE;
123 wxString tmp( id );
124 m_format = gdk_atom_intern( wxMBSTRINGCAST tmp.mbc_str(), FALSE ); // what is the string cast for?
0d2a2b60 125}
3f480da3 126
1dd989e1 127void wxDataFormat::PrepareFormats()
0d2a2b60 128{
e1ee679c 129 if (!g_textAtom)
1dd989e1 130 g_textAtom = gdk_atom_intern( "STRING", FALSE );
e1ee679c 131 if (!g_pngAtom)
1dd989e1 132 g_pngAtom = gdk_atom_intern( "image/png", FALSE );
e1ee679c 133 if (!g_fileAtom)
1dd989e1 134 g_fileAtom = gdk_atom_intern( "file:ALL", FALSE );
0d2a2b60 135}
8b53e5a2
RR
136
137//-------------------------------------------------------------------------
138// wxDataObject
139//-------------------------------------------------------------------------
140
0d2a2b60
RR
141wxDataObject::wxDataObject()
142{
0d2a2b60 143}
3f480da3 144
b068c4e8 145bool wxDataObject::IsSupportedFormat(const wxDataFormat& format, Direction dir) const
0d2a2b60 146{
b068c4e8 147 size_t nFormatCount = GetFormatCount(dir);
1dd989e1
RR
148 if ( nFormatCount == 1 ) {
149 return format == GetPreferredFormat();
150 }
151 else {
152 wxDataFormat *formats = new wxDataFormat[nFormatCount];
b068c4e8 153 GetAllFormats(formats,dir);
1dd989e1
RR
154
155 size_t n;
156 for ( n = 0; n < nFormatCount; n++ ) {
157 if ( formats[n] == format )
158 break;
159 }
0d2a2b60 160
1dd989e1 161 delete [] formats;
cd5bf2a6 162
1dd989e1
RR
163 // found?
164 return n < nFormatCount;
165 }
0d2a2b60
RR
166}
167
8b53e5a2
RR
168// ----------------------------------------------------------------------------
169// wxFileDataObject
170// ----------------------------------------------------------------------------
171
e1ee679c 172bool wxFileDataObject::GetDataHere(void *buf) const
0d2a2b60 173{
b068c4e8 174 wxString filenames;
4b3d29db 175
b068c4e8
RR
176 for (size_t i = 0; i < m_filenames.GetCount(); i++)
177 {
178 filenames += m_filenames[i];
4b3d29db 179 filenames += (wxChar) 0;
b068c4e8 180 }
4b3d29db 181
e1ee679c 182 memcpy( buf, filenames.mbc_str(), filenames.Len() + 1 );
0d2a2b60 183
e1ee679c 184 return TRUE;
0d2a2b60 185}
3f480da3 186
e1ee679c 187size_t wxFileDataObject::GetDataSize() const
0d2a2b60 188{
b068c4e8 189 size_t res = 0;
4b3d29db 190
b068c4e8
RR
191 for (size_t i = 0; i < m_filenames.GetCount(); i++)
192 {
193 res += m_filenames[i].Len();
4b3d29db 194 res += 1;
b068c4e8 195 }
4b3d29db 196
b068c4e8 197 return res + 1;
0d2a2b60 198}
3f480da3 199
b068c4e8 200bool wxFileDataObject::SetData(size_t WXUNUSED(size), const void *buf)
0d2a2b60 201{
b068c4e8 202 /* TODO */
4b3d29db 203
b068c4e8
RR
204 wxString file( (const char *)buf ); /* char, not wxChar */
205
206 AddFile( file );
3f480da3 207
1dd989e1
RR
208 return TRUE;
209}
210
b068c4e8
RR
211void wxFileDataObject::AddFile( const wxString &filename )
212{
213 m_filenames.Add( filename );
214}
215
8b53e5a2
RR
216// ----------------------------------------------------------------------------
217// wxBitmapDataObject
218// ----------------------------------------------------------------------------
219
0d2a2b60
RR
220wxBitmapDataObject::wxBitmapDataObject()
221{
e1ee679c 222 Init();
0d2a2b60
RR
223}
224
225wxBitmapDataObject::wxBitmapDataObject( const wxBitmap& bitmap )
e1ee679c 226 : wxBitmapDataObjectBase(bitmap)
0d2a2b60 227{
e1ee679c
VZ
228 Init();
229
e2acb9ae
RR
230 DoConvertToPng();
231}
232
233wxBitmapDataObject::~wxBitmapDataObject()
234{
e1ee679c 235 Clear();
0d2a2b60
RR
236}
237
238void wxBitmapDataObject::SetBitmap( const wxBitmap &bitmap )
239{
e1ee679c 240 ClearAll();
0d2a2b60 241
e1ee679c
VZ
242 wxBitmapDataObjectBase::SetBitmap(bitmap);
243
244 DoConvertToPng();
0d2a2b60
RR
245}
246
e1ee679c 247bool wxBitmapDataObject::GetDataHere(void *buf) const
0d2a2b60 248{
e1ee679c 249 if ( !m_pngSize )
1dd989e1 250 {
e1ee679c
VZ
251 wxFAIL_MSG( wxT("attempt to copy empty bitmap failed") );
252
253 return FALSE;
1dd989e1 254 }
0d2a2b60 255
e1ee679c
VZ
256 memcpy(buf, m_pngData, m_pngSize);
257
258 return TRUE;
e2acb9ae
RR
259}
260
e1ee679c 261bool wxBitmapDataObject::SetData(size_t size, const void *buf)
e2acb9ae 262{
e1ee679c
VZ
263 Clear();
264
1dd989e1 265 m_pngSize = size;
e1ee679c
VZ
266 m_pngData = malloc(m_pngSize);
267
1dd989e1 268 memcpy( m_pngData, buf, m_pngSize );
e1ee679c 269
1dd989e1 270 wxMemoryInputStream mstream( (char*) m_pngData, m_pngSize );
e2acb9ae
RR
271 wxImage image;
272 wxPNGHandler handler;
e1ee679c
VZ
273 if ( !handler.LoadFile( &image, mstream ) )
274 {
275 return FALSE;
276 }
277
e2acb9ae 278 m_bitmap = image.ConvertToBitmap();
4b3d29db 279
b068c4e8 280 return m_bitmap.Ok();
e2acb9ae
RR
281}
282
283void wxBitmapDataObject::DoConvertToPng()
284{
e1ee679c
VZ
285 if (!m_bitmap.Ok())
286 return;
287
e2acb9ae
RR
288 wxImage image( m_bitmap );
289 wxPNGHandler handler;
e1ee679c 290
e2acb9ae
RR
291 wxCountingOutputStream count;
292 handler.SaveFile( &image, count );
e1ee679c 293
e2acb9ae 294 m_pngSize = count.GetSize() + 100; // sometimes the size seems to vary ???
e1ee679c
VZ
295 m_pngData = malloc(m_pngSize);
296
1dd989e1 297 wxMemoryOutputStream mstream( (char*) m_pngData, m_pngSize );
e2acb9ae 298 handler.SaveFile( &image, mstream );
0d2a2b60 299}
3f480da3 300
0d2a2b60 301