]>
Commit | Line | Data |
---|---|---|
269a5a34 | 1 | /////////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: src/msw/ole/dataobj.cpp |
269a5a34 VZ |
3 | // Purpose: implementation of wx[I]DataObject class |
4 | // Author: Vadim Zeitlin | |
3f4a0c5b | 5 | // Modified by: |
269a5a34 VZ |
6 | // Created: 10.05.98 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
65571936 | 9 | // Licence: wxWindows licence |
269a5a34 VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
269a5a34 VZ |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #if defined(__BORLANDC__) | |
0d0512bd | 24 | #pragma hdrstop |
269a5a34 | 25 | #endif |
0d0512bd | 26 | |
7dee726c | 27 | #ifndef WX_PRECOMP |
0d0512bd VZ |
28 | #include "wx/intl.h" |
29 | #include "wx/log.h" | |
daac16bb | 30 | #include "wx/utils.h" |
193d0c93 | 31 | #include "wx/wxcrtvararg.h" |
7dee726c | 32 | #endif |
5260b1c5 | 33 | |
3f480da3 | 34 | #include "wx/dataobj.h" |
17b74d79 | 35 | |
21709999 JS |
36 | #if wxUSE_OLE && defined(__WIN32__) && !defined(__GNUWIN32_OLD__) |
37 | ||
0d0512bd VZ |
38 | #include "wx/msw/private.h" // includes <windows.h> |
39 | ||
4676948b JS |
40 | #ifdef __WXWINCE__ |
41 | #include <winreg.h> | |
42 | #endif | |
43 | ||
a7b4607f | 44 | // for some compilers, the entire ole2.h must be included, not only oleauto.h |
4676948b | 45 | #if wxUSE_NORLANDER_HEADERS || defined(__WATCOMC__) || defined(__WXWINCE__) |
7dee726c RS |
46 | #include <ole2.h> |
47 | #endif | |
269a5a34 | 48 | |
a7b4607f | 49 | #include <oleauto.h> |
8b85d24e VZ |
50 | #include <shlobj.h> |
51 | ||
0d0512bd VZ |
52 | #include "wx/msw/ole/oleutils.h" |
53 | ||
54 | #include "wx/msw/dib.h" | |
17b74d79 | 55 | |
dcbd7ce2 | 56 | #ifndef CFSTR_SHELLURL |
9a83f860 | 57 | #define CFSTR_SHELLURL wxT("UniformResourceLocator") |
dcbd7ce2 VS |
58 | #endif |
59 | ||
269a5a34 VZ |
60 | // ---------------------------------------------------------------------------- |
61 | // functions | |
62 | // ---------------------------------------------------------------------------- | |
63 | ||
4b6a582b | 64 | #if wxDEBUG_LEVEL |
d59ceba5 | 65 | static const wxChar *GetTymedName(DWORD tymed); |
4b6a582b | 66 | #else // !wxDEBUG_LEVEL |
fda7962d | 67 | #define GetTymedName(tymed) wxEmptyString |
4b6a582b | 68 | #endif // wxDEBUG_LEVEL/!wxDEBUG_LEVEL |
269a5a34 VZ |
69 | |
70 | // ---------------------------------------------------------------------------- | |
71 | // wxIEnumFORMATETC interface implementation | |
72 | // ---------------------------------------------------------------------------- | |
8e193f38 | 73 | |
269a5a34 VZ |
74 | class wxIEnumFORMATETC : public IEnumFORMATETC |
75 | { | |
76 | public: | |
8e193f38 | 77 | wxIEnumFORMATETC(const wxDataFormat* formats, ULONG nCount); |
33ac7e6f | 78 | virtual ~wxIEnumFORMATETC() { delete [] m_formats; } |
269a5a34 | 79 | |
8e193f38 VZ |
80 | // IEnumFORMATETC |
81 | STDMETHODIMP Next(ULONG celt, FORMATETC *rgelt, ULONG *pceltFetched); | |
82 | STDMETHODIMP Skip(ULONG celt); | |
83 | STDMETHODIMP Reset(); | |
84 | STDMETHODIMP Clone(IEnumFORMATETC **ppenum); | |
269a5a34 | 85 | |
6f02a879 VZ |
86 | DECLARE_IUNKNOWN_METHODS; |
87 | ||
269a5a34 | 88 | private: |
8e193f38 VZ |
89 | CLIPFORMAT *m_formats; // formats we can provide data in |
90 | ULONG m_nCount, // number of formats we support | |
91 | m_nCurrent; // current enum position | |
22f3361e | 92 | |
c0c133e1 | 93 | wxDECLARE_NO_COPY_CLASS(wxIEnumFORMATETC); |
269a5a34 VZ |
94 | }; |
95 | ||
96 | // ---------------------------------------------------------------------------- | |
97 | // wxIDataObject implementation of IDataObject interface | |
98 | // ---------------------------------------------------------------------------- | |
8e193f38 | 99 | |
269a5a34 VZ |
100 | class wxIDataObject : public IDataObject |
101 | { | |
102 | public: | |
8e193f38 | 103 | wxIDataObject(wxDataObject *pDataObject); |
33ac7e6f | 104 | virtual ~wxIDataObject(); |
d59ceba5 VZ |
105 | |
106 | // normally, wxDataObject controls our lifetime (i.e. we're deleted when it | |
3103e8a9 | 107 | // is), but in some cases, the situation is reversed, that is we delete it |
d59ceba5 | 108 | // when this object is deleted - setting this flag enables such logic |
17a6a2e0 | 109 | void SetDeleteFlag() { m_mustDelete = true; } |
269a5a34 | 110 | |
8e193f38 VZ |
111 | // IDataObject |
112 | STDMETHODIMP GetData(FORMATETC *pformatetcIn, STGMEDIUM *pmedium); | |
113 | STDMETHODIMP GetDataHere(FORMATETC *pformatetc, STGMEDIUM *pmedium); | |
114 | STDMETHODIMP QueryGetData(FORMATETC *pformatetc); | |
115 | STDMETHODIMP GetCanonicalFormatEtc(FORMATETC *In, FORMATETC *pOut); | |
116 | STDMETHODIMP SetData(FORMATETC *pfetc, STGMEDIUM *pmedium, BOOL fRelease); | |
117 | STDMETHODIMP EnumFormatEtc(DWORD dwDirection, IEnumFORMATETC **ppenumFEtc); | |
118 | STDMETHODIMP DAdvise(FORMATETC *pfetc, DWORD ad, IAdviseSink *p, DWORD *pdw); | |
119 | STDMETHODIMP DUnadvise(DWORD dwConnection); | |
120 | STDMETHODIMP EnumDAdvise(IEnumSTATDATA **ppenumAdvise); | |
269a5a34 | 121 | |
6f02a879 VZ |
122 | DECLARE_IUNKNOWN_METHODS; |
123 | ||
269a5a34 | 124 | private: |
8e193f38 | 125 | wxDataObject *m_pDataObject; // pointer to C++ class we belong to |
d59ceba5 VZ |
126 | |
127 | bool m_mustDelete; | |
22f3361e | 128 | |
c0c133e1 | 129 | wxDECLARE_NO_COPY_CLASS(wxIDataObject); |
d59ceba5 VZ |
130 | }; |
131 | ||
269a5a34 VZ |
132 | // ============================================================================ |
133 | // implementation | |
134 | // ============================================================================ | |
135 | ||
3f480da3 VZ |
136 | // ---------------------------------------------------------------------------- |
137 | // wxDataFormat | |
138 | // ---------------------------------------------------------------------------- | |
139 | ||
a1eb65c2 | 140 | void wxDataFormat::SetId(const wxString& format) |
3f480da3 | 141 | { |
e0a050e3 | 142 | m_format = (wxDataFormat::NativeFormat)::RegisterClipboardFormat(format.wx_str()); |
3f480da3 VZ |
143 | if ( !m_format ) |
144 | { | |
145 | wxLogError(_("Couldn't register clipboard format '%s'."), format); | |
146 | } | |
147 | } | |
148 | ||
149 | wxString wxDataFormat::GetId() const | |
150 | { | |
151 | static const int max = 256; | |
152 | ||
153 | wxString s; | |
154 | ||
155 | wxCHECK_MSG( !IsStandard(), s, | |
223d09f6 | 156 | wxT("name of predefined format cannot be retrieved") ); |
3f480da3 | 157 | |
de564874 | 158 | int len = ::GetClipboardFormatName(m_format, wxStringBuffer(s, max), max); |
3f480da3 VZ |
159 | |
160 | if ( !len ) | |
161 | { | |
162 | wxLogError(_("The clipboard format '%d' doesn't exist."), m_format); | |
5712281c | 163 | return wxEmptyString; |
3f480da3 VZ |
164 | } |
165 | ||
166 | return s; | |
167 | } | |
168 | ||
269a5a34 VZ |
169 | // ---------------------------------------------------------------------------- |
170 | // wxIEnumFORMATETC | |
171 | // ---------------------------------------------------------------------------- | |
172 | ||
173 | BEGIN_IID_TABLE(wxIEnumFORMATETC) | |
8e193f38 VZ |
174 | ADD_IID(Unknown) |
175 | ADD_IID(EnumFORMATETC) | |
269a5a34 VZ |
176 | END_IID_TABLE; |
177 | ||
178 | IMPLEMENT_IUNKNOWN_METHODS(wxIEnumFORMATETC) | |
179 | ||
8e193f38 | 180 | wxIEnumFORMATETC::wxIEnumFORMATETC(const wxDataFormat *formats, ULONG nCount) |
269a5a34 | 181 | { |
8e193f38 VZ |
182 | m_nCurrent = 0; |
183 | m_nCount = nCount; | |
184 | m_formats = new CLIPFORMAT[nCount]; | |
185 | for ( ULONG n = 0; n < nCount; n++ ) { | |
186 | m_formats[n] = formats[n].GetFormatId(); | |
187 | } | |
269a5a34 VZ |
188 | } |
189 | ||
190 | STDMETHODIMP wxIEnumFORMATETC::Next(ULONG celt, | |
191 | FORMATETC *rgelt, | |
1f1c4210 | 192 | ULONG *pceltFetched) |
269a5a34 | 193 | { |
8e193f38 | 194 | wxLogTrace(wxTRACE_OleCalls, wxT("wxIEnumFORMATETC::Next")); |
269a5a34 | 195 | |
1f1c4210 VZ |
196 | ULONG numFetched = 0; |
197 | while (m_nCurrent < m_nCount && numFetched < celt) { | |
8e193f38 VZ |
198 | FORMATETC format; |
199 | format.cfFormat = m_formats[m_nCurrent++]; | |
200 | format.ptd = NULL; | |
201 | format.dwAspect = DVASPECT_CONTENT; | |
202 | format.lindex = -1; | |
203 | format.tymed = TYMED_HGLOBAL; | |
269a5a34 | 204 | |
1f1c4210 VZ |
205 | *rgelt++ = format; |
206 | numFetched++; | |
8e193f38 | 207 | } |
1f1c4210 VZ |
208 | |
209 | if (pceltFetched) | |
210 | *pceltFetched = numFetched; | |
211 | ||
212 | return numFetched == celt ? S_OK : S_FALSE; | |
269a5a34 VZ |
213 | } |
214 | ||
215 | STDMETHODIMP wxIEnumFORMATETC::Skip(ULONG celt) | |
216 | { | |
8e193f38 VZ |
217 | wxLogTrace(wxTRACE_OleCalls, wxT("wxIEnumFORMATETC::Skip")); |
218 | ||
219 | m_nCurrent += celt; | |
220 | if ( m_nCurrent < m_nCount ) | |
221 | return S_OK; | |
269a5a34 | 222 | |
8e193f38 VZ |
223 | // no, can't skip this many elements |
224 | m_nCurrent -= celt; | |
269a5a34 | 225 | |
8e193f38 | 226 | return S_FALSE; |
269a5a34 VZ |
227 | } |
228 | ||
229 | STDMETHODIMP wxIEnumFORMATETC::Reset() | |
230 | { | |
8e193f38 | 231 | wxLogTrace(wxTRACE_OleCalls, wxT("wxIEnumFORMATETC::Reset")); |
269a5a34 | 232 | |
8e193f38 | 233 | m_nCurrent = 0; |
269a5a34 | 234 | |
8e193f38 | 235 | return S_OK; |
269a5a34 VZ |
236 | } |
237 | ||
238 | STDMETHODIMP wxIEnumFORMATETC::Clone(IEnumFORMATETC **ppenum) | |
239 | { | |
8e193f38 VZ |
240 | wxLogTrace(wxTRACE_OleCalls, wxT("wxIEnumFORMATETC::Clone")); |
241 | ||
242 | // unfortunately, we can't reuse the code in ctor - types are different | |
243 | wxIEnumFORMATETC *pNew = new wxIEnumFORMATETC(NULL, 0); | |
244 | pNew->m_nCount = m_nCount; | |
245 | pNew->m_formats = new CLIPFORMAT[m_nCount]; | |
246 | for ( ULONG n = 0; n < m_nCount; n++ ) { | |
247 | pNew->m_formats[n] = m_formats[n]; | |
248 | } | |
249 | pNew->AddRef(); | |
250 | *ppenum = pNew; | |
269a5a34 | 251 | |
8e193f38 | 252 | return S_OK; |
269a5a34 VZ |
253 | } |
254 | ||
255 | // ---------------------------------------------------------------------------- | |
256 | // wxIDataObject | |
257 | // ---------------------------------------------------------------------------- | |
258 | ||
259 | BEGIN_IID_TABLE(wxIDataObject) | |
8e193f38 VZ |
260 | ADD_IID(Unknown) |
261 | ADD_IID(DataObject) | |
269a5a34 VZ |
262 | END_IID_TABLE; |
263 | ||
264 | IMPLEMENT_IUNKNOWN_METHODS(wxIDataObject) | |
265 | ||
266 | wxIDataObject::wxIDataObject(wxDataObject *pDataObject) | |
267 | { | |
8e193f38 | 268 | m_pDataObject = pDataObject; |
17a6a2e0 | 269 | m_mustDelete = false; |
d59ceba5 VZ |
270 | } |
271 | ||
272 | wxIDataObject::~wxIDataObject() | |
273 | { | |
274 | if ( m_mustDelete ) | |
275 | { | |
276 | delete m_pDataObject; | |
277 | } | |
269a5a34 VZ |
278 | } |
279 | ||
280 | // get data functions | |
281 | STDMETHODIMP wxIDataObject::GetData(FORMATETC *pformatetcIn, STGMEDIUM *pmedium) | |
282 | { | |
8e193f38 | 283 | wxLogTrace(wxTRACE_OleCalls, wxT("wxIDataObject::GetData")); |
269a5a34 | 284 | |
8e193f38 VZ |
285 | // is data is in our format? |
286 | HRESULT hr = QueryGetData(pformatetcIn); | |
287 | if ( FAILED(hr) ) | |
288 | return hr; | |
269a5a34 | 289 | |
8e193f38 VZ |
290 | // for the bitmaps and metafiles we use the handles instead of global memory |
291 | // to pass the data | |
f4d0cce0 | 292 | wxDataFormat format = (wxDataFormat::NativeFormat)pformatetcIn->cfFormat; |
269a5a34 | 293 | |
8e193f38 VZ |
294 | switch ( format ) |
295 | { | |
296 | case wxDF_BITMAP: | |
297 | pmedium->tymed = TYMED_GDI; | |
298 | break; | |
299 | ||
d9317fd4 VZ |
300 | case wxDF_ENHMETAFILE: |
301 | pmedium->tymed = TYMED_ENHMF; | |
302 | break; | |
303 | ||
4676948b | 304 | #ifndef __WXWINCE__ |
8e193f38 | 305 | case wxDF_METAFILE: |
265b0c07 VZ |
306 | pmedium->hGlobal = GlobalAlloc(GMEM_MOVEABLE | GMEM_SHARE, |
307 | sizeof(METAFILEPICT)); | |
308 | if ( !pmedium->hGlobal ) { | |
f6bcfd97 | 309 | wxLogLastError(wxT("GlobalAlloc")); |
265b0c07 VZ |
310 | return E_OUTOFMEMORY; |
311 | } | |
8e193f38 VZ |
312 | pmedium->tymed = TYMED_MFPICT; |
313 | break; | |
4676948b | 314 | #endif |
8e193f38 VZ |
315 | default: |
316 | // alloc memory | |
317 | size_t size = m_pDataObject->GetDataSize(format); | |
318 | if ( !size ) { | |
319 | // it probably means that the method is just not implemented | |
320 | wxLogDebug(wxT("Invalid data size - can't be 0")); | |
321 | ||
322 | return DV_E_FORMATETC; | |
323 | } | |
324 | ||
a8e24848 VZ |
325 | // we may need extra space for the buffer size |
326 | size += m_pDataObject->GetBufferOffset( format ); | |
9e2896e5 | 327 | |
8e193f38 VZ |
328 | HGLOBAL hGlobal = GlobalAlloc(GMEM_MOVEABLE | GMEM_SHARE, size); |
329 | if ( hGlobal == NULL ) { | |
f6bcfd97 | 330 | wxLogLastError(wxT("GlobalAlloc")); |
8e193f38 VZ |
331 | return E_OUTOFMEMORY; |
332 | } | |
333 | ||
334 | // copy data | |
335 | pmedium->tymed = TYMED_HGLOBAL; | |
336 | pmedium->hGlobal = hGlobal; | |
337 | } | |
269a5a34 | 338 | |
8e193f38 VZ |
339 | pmedium->pUnkForRelease = NULL; |
340 | ||
341 | // do copy the data | |
342 | hr = GetDataHere(pformatetcIn, pmedium); | |
343 | if ( FAILED(hr) ) { | |
344 | // free resources we allocated | |
265b0c07 | 345 | if ( pmedium->tymed & (TYMED_HGLOBAL | TYMED_MFPICT) ) { |
8e193f38 VZ |
346 | GlobalFree(pmedium->hGlobal); |
347 | } | |
348 | ||
349 | return hr; | |
350 | } | |
269a5a34 | 351 | |
8e193f38 | 352 | return S_OK; |
269a5a34 VZ |
353 | } |
354 | ||
355 | STDMETHODIMP wxIDataObject::GetDataHere(FORMATETC *pformatetc, | |
356 | STGMEDIUM *pmedium) | |
357 | { | |
8e193f38 | 358 | wxLogTrace(wxTRACE_OleCalls, wxT("wxIDataObject::GetDataHere")); |
269a5a34 | 359 | |
8e193f38 VZ |
360 | // put data in caller provided medium |
361 | switch ( pmedium->tymed ) | |
362 | { | |
363 | case TYMED_GDI: | |
d59ceba5 VZ |
364 | if ( !m_pDataObject->GetDataHere(wxDF_BITMAP, &pmedium->hBitmap) ) |
365 | return E_UNEXPECTED; | |
8e193f38 VZ |
366 | break; |
367 | ||
d9317fd4 VZ |
368 | case TYMED_ENHMF: |
369 | if ( !m_pDataObject->GetDataHere(wxDF_ENHMETAFILE, | |
370 | &pmedium->hEnhMetaFile) ) | |
371 | return E_UNEXPECTED; | |
372 | break; | |
373 | ||
8e193f38 | 374 | case TYMED_MFPICT: |
d9317fd4 VZ |
375 | // fall through - we pass METAFILEPICT through HGLOBAL |
376 | ||
8e193f38 VZ |
377 | case TYMED_HGLOBAL: |
378 | { | |
379 | // copy data | |
9e2896e5 VZ |
380 | HGLOBAL hGlobal = pmedium->hGlobal; |
381 | void *pBuf = GlobalLock(hGlobal); | |
8e193f38 VZ |
382 | if ( pBuf == NULL ) { |
383 | wxLogLastError(wxT("GlobalLock")); | |
384 | return E_OUTOFMEMORY; | |
385 | } | |
386 | ||
e1b435af | 387 | wxDataFormat format = pformatetc->cfFormat; |
a8e24848 VZ |
388 | |
389 | // possibly put the size in the beginning of the buffer | |
390 | pBuf = m_pDataObject->SetSizeInBuffer | |
391 | ( | |
392 | pBuf, | |
393 | ::GlobalSize(hGlobal), | |
394 | format | |
395 | ); | |
9e2896e5 | 396 | |
d59ceba5 VZ |
397 | if ( !m_pDataObject->GetDataHere(format, pBuf) ) |
398 | return E_UNEXPECTED; | |
8e193f38 | 399 | |
9e2896e5 | 400 | GlobalUnlock(hGlobal); |
8e193f38 VZ |
401 | } |
402 | break; | |
403 | ||
404 | default: | |
405 | return DV_E_TYMED; | |
406 | } | |
269a5a34 | 407 | |
8e193f38 | 408 | return S_OK; |
269a5a34 VZ |
409 | } |
410 | ||
d26fad77 | 411 | |
9e2896e5 | 412 | // set data functions |
269a5a34 VZ |
413 | STDMETHODIMP wxIDataObject::SetData(FORMATETC *pformatetc, |
414 | STGMEDIUM *pmedium, | |
415 | BOOL fRelease) | |
416 | { | |
d59ceba5 | 417 | wxLogTrace(wxTRACE_OleCalls, wxT("wxIDataObject::SetData")); |
8e193f38 | 418 | |
d59ceba5 VZ |
419 | switch ( pmedium->tymed ) |
420 | { | |
421 | case TYMED_GDI: | |
9e2896e5 | 422 | m_pDataObject->SetData(wxDF_BITMAP, 0, &pmedium->hBitmap); |
d59ceba5 VZ |
423 | break; |
424 | ||
d9317fd4 VZ |
425 | case TYMED_ENHMF: |
426 | m_pDataObject->SetData(wxDF_ENHMETAFILE, 0, &pmedium->hEnhMetaFile); | |
427 | break; | |
428 | ||
d59ceba5 | 429 | case TYMED_MFPICT: |
d9317fd4 | 430 | // fall through - we pass METAFILEPICT through HGLOBAL |
d59ceba5 VZ |
431 | case TYMED_HGLOBAL: |
432 | { | |
51edda6a VZ |
433 | wxDataFormat format = pformatetc->cfFormat; |
434 | ||
435 | // this is quite weird, but for file drag and drop, explorer | |
436 | // calls our SetData() with the formats we do *not* support! | |
437 | // | |
438 | // as we can't fix this bug in explorer (it's a bug because it | |
439 | // should only use formats returned by EnumFormatEtc), do the | |
440 | // check here | |
5015e022 | 441 | if ( !m_pDataObject->IsSupported(format, wxDataObject::Set) ) { |
51edda6a VZ |
442 | // go away! |
443 | return DV_E_FORMATETC; | |
444 | } | |
445 | ||
d59ceba5 | 446 | // copy data |
e1b435af | 447 | const void *pBuf = GlobalLock(pmedium->hGlobal); |
d59ceba5 | 448 | if ( pBuf == NULL ) { |
f6bcfd97 | 449 | wxLogLastError(wxT("GlobalLock")); |
d59ceba5 VZ |
450 | |
451 | return E_OUTOFMEMORY; | |
452 | } | |
453 | ||
9e2896e5 VZ |
454 | // we've got a problem with SetData() here because the base |
455 | // class version requires the size parameter which we don't | |
456 | // have anywhere in OLE data transfer - so we need to | |
457 | // synthetise it for known formats and we suppose that all data | |
458 | // in custom formats starts with a DWORD containing the size | |
459 | size_t size; | |
51edda6a | 460 | switch ( format ) |
9e2896e5 VZ |
461 | { |
462 | case CF_TEXT: | |
463 | case CF_OEMTEXT: | |
464 | size = strlen((const char *)pBuf); | |
465 | break; | |
afd23c22 | 466 | #if !(defined(__BORLANDC__) && (__BORLANDC__ < 0x500)) |
9e2896e5 | 467 | case CF_UNICODETEXT: |
2415cf67 | 468 | #if ( defined(__BORLANDC__) && (__BORLANDC__ > 0x530) ) |
e1b435af | 469 | size = std::wcslen((const wchar_t *)pBuf) * sizeof(wchar_t); |
d834f22c | 470 | #else |
17ebae65 | 471 | size = wxWcslen((const wchar_t *)pBuf) * sizeof(wchar_t); |
d834f22c | 472 | #endif |
9e2896e5 | 473 | break; |
4d85bcd1 | 474 | #endif |
9e2896e5 | 475 | case CF_BITMAP: |
4676948b | 476 | #ifndef __WXWINCE__ |
9e2896e5 VZ |
477 | case CF_HDROP: |
478 | // these formats don't use size at all, anyhow (but | |
479 | // pass data by handle, which is always a single DWORD) | |
480 | size = 0; | |
481 | break; | |
4676948b | 482 | #endif |
9e2896e5 | 483 | |
8ee9d618 VZ |
484 | case CF_DIB: |
485 | // the handler will calculate size itself (it's too | |
486 | // complicated to do it here) | |
487 | size = 0; | |
488 | break; | |
489 | ||
4676948b | 490 | #ifndef __WXWINCE__ |
265b0c07 VZ |
491 | case CF_METAFILEPICT: |
492 | size = sizeof(METAFILEPICT); | |
493 | break; | |
4676948b | 494 | #endif |
9e2896e5 | 495 | default: |
a8e24848 VZ |
496 | pBuf = m_pDataObject-> |
497 | GetSizeFromBuffer(pBuf, &size, format); | |
498 | size -= m_pDataObject->GetBufferOffset(format); | |
9e2896e5 VZ |
499 | } |
500 | ||
9e2896e5 | 501 | bool ok = m_pDataObject->SetData(format, size, pBuf); |
d59ceba5 VZ |
502 | |
503 | GlobalUnlock(pmedium->hGlobal); | |
9e2896e5 VZ |
504 | |
505 | if ( !ok ) { | |
506 | return E_UNEXPECTED; | |
507 | } | |
d59ceba5 VZ |
508 | } |
509 | break; | |
510 | ||
511 | default: | |
512 | return DV_E_TYMED; | |
513 | } | |
514 | ||
515 | if ( fRelease ) { | |
265b0c07 VZ |
516 | // we own the medium, so we must release it - but do *not* free any |
517 | // data we pass by handle because we have copied it elsewhere | |
518 | switch ( pmedium->tymed ) | |
d59ceba5 | 519 | { |
265b0c07 VZ |
520 | case TYMED_GDI: |
521 | pmedium->hBitmap = 0; | |
522 | break; | |
523 | ||
524 | case TYMED_MFPICT: | |
525 | pmedium->hMetaFilePict = 0; | |
526 | break; | |
d9317fd4 VZ |
527 | |
528 | case TYMED_ENHMF: | |
529 | pmedium->hEnhMetaFile = 0; | |
530 | break; | |
d59ceba5 VZ |
531 | } |
532 | ||
533 | ReleaseStgMedium(pmedium); | |
534 | } | |
535 | ||
536 | return S_OK; | |
269a5a34 VZ |
537 | } |
538 | ||
539 | // information functions | |
540 | STDMETHODIMP wxIDataObject::QueryGetData(FORMATETC *pformatetc) | |
541 | { | |
d59ceba5 VZ |
542 | // do we accept data in this format? |
543 | if ( pformatetc == NULL ) { | |
544 | wxLogTrace(wxTRACE_OleCalls, | |
545 | wxT("wxIDataObject::QueryGetData: invalid ptr.")); | |
8e193f38 | 546 | |
d59ceba5 VZ |
547 | return E_INVALIDARG; |
548 | } | |
269a5a34 | 549 | |
d59ceba5 VZ |
550 | // the only one allowed by current COM implementation |
551 | if ( pformatetc->lindex != -1 ) { | |
552 | wxLogTrace(wxTRACE_OleCalls, | |
9b601c24 | 553 | wxT("wxIDataObject::QueryGetData: bad lindex %ld"), |
d59ceba5 | 554 | pformatetc->lindex); |
269a5a34 | 555 | |
d59ceba5 VZ |
556 | return DV_E_LINDEX; |
557 | } | |
269a5a34 | 558 | |
d59ceba5 VZ |
559 | // we don't support anything other (THUMBNAIL, ICON, DOCPRINT...) |
560 | if ( pformatetc->dwAspect != DVASPECT_CONTENT ) { | |
561 | wxLogTrace(wxTRACE_OleCalls, | |
9b601c24 | 562 | wxT("wxIDataObject::QueryGetData: bad dwAspect %ld"), |
d59ceba5 VZ |
563 | pformatetc->dwAspect); |
564 | ||
565 | return DV_E_DVASPECT; | |
566 | } | |
567 | ||
568 | // and now check the type of data requested | |
9e2896e5 | 569 | wxDataFormat format = pformatetc->cfFormat; |
d59ceba5 | 570 | if ( m_pDataObject->IsSupportedFormat(format) ) { |
d59ceba5 | 571 | wxLogTrace(wxTRACE_OleCalls, wxT("wxIDataObject::QueryGetData: %s ok"), |
1e8335b0 | 572 | wxGetFormatName(format)); |
d59ceba5 VZ |
573 | } |
574 | else { | |
575 | wxLogTrace(wxTRACE_OleCalls, | |
576 | wxT("wxIDataObject::QueryGetData: %s unsupported"), | |
1e8335b0 | 577 | wxGetFormatName(format)); |
9e2896e5 | 578 | |
d59ceba5 VZ |
579 | return DV_E_FORMATETC; |
580 | } | |
581 | ||
582 | // we only transfer data by global memory, except for some particular cases | |
583 | DWORD tymed = pformatetc->tymed; | |
584 | if ( (format == wxDF_BITMAP && !(tymed & TYMED_GDI)) && | |
585 | !(tymed & TYMED_HGLOBAL) ) { | |
586 | // it's not what we're waiting for | |
d59ceba5 VZ |
587 | wxLogTrace(wxTRACE_OleCalls, |
588 | wxT("wxIDataObject::QueryGetData: %s != %s"), | |
589 | GetTymedName(tymed), | |
590 | GetTymedName(format == wxDF_BITMAP ? TYMED_GDI | |
591 | : TYMED_HGLOBAL)); | |
d59ceba5 VZ |
592 | |
593 | return DV_E_TYMED; | |
594 | } | |
595 | ||
269a5a34 | 596 | return S_OK; |
269a5a34 VZ |
597 | } |
598 | ||
33ac7e6f | 599 | STDMETHODIMP wxIDataObject::GetCanonicalFormatEtc(FORMATETC *WXUNUSED(pFormatetcIn), |
269a5a34 VZ |
600 | FORMATETC *pFormatetcOut) |
601 | { | |
8e193f38 VZ |
602 | wxLogTrace(wxTRACE_OleCalls, wxT("wxIDataObject::GetCanonicalFormatEtc")); |
603 | ||
604 | // TODO we might want something better than this trivial implementation here | |
605 | if ( pFormatetcOut != NULL ) | |
606 | pFormatetcOut->ptd = NULL; | |
269a5a34 | 607 | |
8e193f38 | 608 | return DATA_S_SAMEFORMATETC; |
269a5a34 VZ |
609 | } |
610 | ||
9e2896e5 | 611 | STDMETHODIMP wxIDataObject::EnumFormatEtc(DWORD dwDir, |
269a5a34 VZ |
612 | IEnumFORMATETC **ppenumFormatEtc) |
613 | { | |
8e193f38 | 614 | wxLogTrace(wxTRACE_OleCalls, wxT("wxIDataObject::EnumFormatEtc")); |
269a5a34 | 615 | |
9e2896e5 VZ |
616 | wxDataObject::Direction dir = dwDir == DATADIR_GET ? wxDataObject::Get |
617 | : wxDataObject::Set; | |
269a5a34 | 618 | |
4a10ea8b | 619 | ULONG nFormatCount = wx_truncate_cast(ULONG, m_pDataObject->GetFormatCount(dir)); |
33ac7e6f | 620 | wxDataFormat format; |
c5639a87 | 621 | wxDataFormat *formats; |
9e2896e5 VZ |
622 | formats = nFormatCount == 1 ? &format : new wxDataFormat[nFormatCount]; |
623 | m_pDataObject->GetAllFormats(formats, dir); | |
8e193f38 VZ |
624 | |
625 | wxIEnumFORMATETC *pEnum = new wxIEnumFORMATETC(formats, nFormatCount); | |
626 | pEnum->AddRef(); | |
627 | *ppenumFormatEtc = pEnum; | |
628 | ||
629 | if ( formats != &format ) { | |
630 | delete [] formats; | |
631 | } | |
269a5a34 | 632 | |
8e193f38 | 633 | return S_OK; |
269a5a34 VZ |
634 | } |
635 | ||
9e2896e5 | 636 | // ---------------------------------------------------------------------------- |
269a5a34 | 637 | // advise sink functions (not implemented) |
9e2896e5 VZ |
638 | // ---------------------------------------------------------------------------- |
639 | ||
33ac7e6f KB |
640 | STDMETHODIMP wxIDataObject::DAdvise(FORMATETC *WXUNUSED(pformatetc), |
641 | DWORD WXUNUSED(advf), | |
642 | IAdviseSink *WXUNUSED(pAdvSink), | |
643 | DWORD *WXUNUSED(pdwConnection)) | |
269a5a34 VZ |
644 | { |
645 | return OLE_E_ADVISENOTSUPPORTED; | |
646 | } | |
647 | ||
33ac7e6f | 648 | STDMETHODIMP wxIDataObject::DUnadvise(DWORD WXUNUSED(dwConnection)) |
269a5a34 VZ |
649 | { |
650 | return OLE_E_ADVISENOTSUPPORTED; | |
651 | } | |
652 | ||
33ac7e6f | 653 | STDMETHODIMP wxIDataObject::EnumDAdvise(IEnumSTATDATA **WXUNUSED(ppenumAdvise)) |
269a5a34 VZ |
654 | { |
655 | return OLE_E_ADVISENOTSUPPORTED; | |
656 | } | |
657 | ||
658 | // ---------------------------------------------------------------------------- | |
659 | // wxDataObject | |
660 | // ---------------------------------------------------------------------------- | |
661 | ||
662 | wxDataObject::wxDataObject() | |
663 | { | |
d59ceba5 VZ |
664 | m_pIDataObject = new wxIDataObject(this); |
665 | m_pIDataObject->AddRef(); | |
269a5a34 VZ |
666 | } |
667 | ||
668 | wxDataObject::~wxDataObject() | |
669 | { | |
d59ceba5 VZ |
670 | ReleaseInterface(m_pIDataObject); |
671 | } | |
672 | ||
673 | void wxDataObject::SetAutoDelete() | |
674 | { | |
675 | ((wxIDataObject *)m_pIDataObject)->SetDeleteFlag(); | |
676 | m_pIDataObject->Release(); | |
677 | ||
678 | // so that the dtor doesnt' crash | |
679 | m_pIDataObject = NULL; | |
269a5a34 VZ |
680 | } |
681 | ||
a8e24848 | 682 | size_t wxDataObject::GetBufferOffset(const wxDataFormat& format ) |
e1b435af | 683 | { |
a8e24848 VZ |
684 | // if we prepend the size of the data to the buffer itself, account for it |
685 | return NeedsVerbatimData(format) ? 0 : sizeof(size_t); | |
e1b435af MB |
686 | } |
687 | ||
abb88ef3 VZ |
688 | const void *wxDataObject::GetSizeFromBuffer(const void *buffer, |
689 | size_t *size, | |
cb626df2 | 690 | const wxDataFormat& WXUNUSED(format)) |
e1b435af | 691 | { |
24aab8e8 MW |
692 | // hack: the third parameter is declared non-const in Wine's headers so |
693 | // cast away the const | |
abb88ef3 | 694 | const size_t realsz = ::HeapSize(::GetProcessHeap(), 0, |
5c33522f | 695 | const_cast<void*>(buffer)); |
51d05226 | 696 | if ( realsz == (size_t)-1 ) |
a8e24848 VZ |
697 | { |
698 | // note that HeapSize() does not set last error | |
699 | wxLogApiError(wxT("HeapSize"), 0); | |
700 | return NULL; | |
701 | } | |
702 | ||
703 | *size = realsz; | |
e1b435af | 704 | |
abb88ef3 | 705 | return buffer; |
e1b435af MB |
706 | } |
707 | ||
708 | void* wxDataObject::SetSizeInBuffer( void* buffer, size_t size, | |
a8e24848 | 709 | const wxDataFormat& format ) |
e1b435af | 710 | { |
a8e24848 VZ |
711 | size_t* p = (size_t *)buffer; |
712 | if ( !NeedsVerbatimData(format) ) | |
713 | { | |
714 | // prepend the size to the data and skip it | |
715 | *p++ = size; | |
716 | } | |
e1b435af | 717 | |
a8e24848 | 718 | return p; |
e1b435af MB |
719 | } |
720 | ||
4b6a582b | 721 | #if wxDEBUG_LEVEL |
8e193f38 | 722 | |
f6bcfd97 | 723 | const wxChar *wxDataObject::GetFormatName(wxDataFormat format) |
d9317fd4 VZ |
724 | { |
725 | // case 'xxx' is not a valid value for switch of enum 'wxDataFormat' | |
726 | #ifdef __VISUALC__ | |
727 | #pragma warning(disable:4063) | |
728 | #endif // VC++ | |
729 | ||
f6bcfd97 | 730 | static wxChar s_szBuf[256]; |
d9317fd4 | 731 | switch ( format ) { |
f6bcfd97 BP |
732 | case CF_TEXT: return wxT("CF_TEXT"); |
733 | case CF_BITMAP: return wxT("CF_BITMAP"); | |
f6bcfd97 BP |
734 | case CF_SYLK: return wxT("CF_SYLK"); |
735 | case CF_DIF: return wxT("CF_DIF"); | |
736 | case CF_TIFF: return wxT("CF_TIFF"); | |
737 | case CF_OEMTEXT: return wxT("CF_OEMTEXT"); | |
738 | case CF_DIB: return wxT("CF_DIB"); | |
739 | case CF_PALETTE: return wxT("CF_PALETTE"); | |
740 | case CF_PENDATA: return wxT("CF_PENDATA"); | |
741 | case CF_RIFF: return wxT("CF_RIFF"); | |
742 | case CF_WAVE: return wxT("CF_WAVE"); | |
743 | case CF_UNICODETEXT: return wxT("CF_UNICODETEXT"); | |
569f027b VS |
744 | #ifndef __WXWINCE__ |
745 | case CF_METAFILEPICT: return wxT("CF_METAFILEPICT"); | |
f6bcfd97 | 746 | case CF_ENHMETAFILE: return wxT("CF_ENHMETAFILE"); |
f6bcfd97 | 747 | case CF_LOCALE: return wxT("CF_LOCALE"); |
569f027b VS |
748 | case CF_HDROP: return wxT("CF_HDROP"); |
749 | #endif | |
8e193f38 | 750 | |
d9317fd4 | 751 | default: |
c77ae1d9 | 752 | if ( !::GetClipboardFormatName(format, s_szBuf, WXSIZEOF(s_szBuf)) ) |
d9317fd4 VZ |
753 | { |
754 | // it must be a new predefined format we don't know the name of | |
f6bcfd97 | 755 | wxSprintf(s_szBuf, wxT("unknown CF (0x%04x)"), format.GetFormatId()); |
d9317fd4 | 756 | } |
8e193f38 | 757 | |
d9317fd4 | 758 | return s_szBuf; |
8e193f38 | 759 | } |
1e8335b0 | 760 | |
d9317fd4 VZ |
761 | #ifdef __VISUALC__ |
762 | #pragma warning(default:4063) | |
763 | #endif // VC++ | |
269a5a34 VZ |
764 | } |
765 | ||
4b6a582b | 766 | #endif // wxDEBUG_LEVEL |
1e8335b0 | 767 | |
3f480da3 | 768 | // ---------------------------------------------------------------------------- |
9e2896e5 | 769 | // wxBitmapDataObject supports CF_DIB format |
3f480da3 VZ |
770 | // ---------------------------------------------------------------------------- |
771 | ||
be69f971 VZ |
772 | // TODO: support CF_DIB under Windows CE as well |
773 | ||
9e2896e5 | 774 | size_t wxBitmapDataObject::GetDataSize() const |
3f480da3 | 775 | { |
be69f971 | 776 | #if wxUSE_WXDIB && !defined(__WXWINCE__) |
22be0335 | 777 | return wxDIB::ConvertFromBitmap(NULL, GetHbitmapOf(GetBitmap())); |
4cb88a72 JS |
778 | #else |
779 | return 0; | |
780 | #endif | |
3f480da3 VZ |
781 | } |
782 | ||
9e2896e5 | 783 | bool wxBitmapDataObject::GetDataHere(void *buf) const |
3f480da3 | 784 | { |
be69f971 | 785 | #if wxUSE_WXDIB && !defined(__WXWINCE__) |
22be0335 VZ |
786 | BITMAPINFO * const pbi = (BITMAPINFO *)buf; |
787 | ||
788 | return wxDIB::ConvertFromBitmap(pbi, GetHbitmapOf(GetBitmap())) != 0; | |
4cb88a72 | 789 | #else |
17a6a2e0 WS |
790 | wxUnusedVar(buf); |
791 | return false; | |
4cb88a72 | 792 | #endif |
3f480da3 VZ |
793 | } |
794 | ||
33ac7e6f | 795 | bool wxBitmapDataObject::SetData(size_t WXUNUSED(len), const void *buf) |
3f480da3 | 796 | { |
be69f971 | 797 | #if wxUSE_WXDIB && !defined(__WXWINCE__) |
22be0335 | 798 | const BITMAPINFO * const pbmi = (const BITMAPINFO *)buf; |
9e2896e5 | 799 | |
22be0335 | 800 | HBITMAP hbmp = wxDIB::ConvertToBitmap(pbmi); |
3f480da3 | 801 | |
22be0335 VZ |
802 | wxCHECK_MSG( hbmp, FALSE, wxT("pasting/dropping invalid bitmap") ); |
803 | ||
804 | const BITMAPINFOHEADER * const pbmih = &pbmi->bmiHeader; | |
805 | wxBitmap bitmap(pbmih->biWidth, pbmih->biHeight, pbmih->biBitCount); | |
806 | bitmap.SetHBITMAP((WXHBITMAP)hbmp); | |
807 | ||
808 | // TODO: create wxPalette if the bitmap has any | |
9e2896e5 VZ |
809 | |
810 | SetBitmap(bitmap); | |
3f480da3 | 811 | |
17a6a2e0 | 812 | return true; |
4cb88a72 | 813 | #else |
17a6a2e0 WS |
814 | wxUnusedVar(buf); |
815 | return false; | |
4cb88a72 | 816 | #endif |
3f480da3 VZ |
817 | } |
818 | ||
9e2896e5 VZ |
819 | // ---------------------------------------------------------------------------- |
820 | // wxBitmapDataObject2 supports CF_BITMAP format | |
821 | // ---------------------------------------------------------------------------- | |
822 | ||
823 | // the bitmaps aren't passed by value as other types of data (i.e. by copying | |
824 | // the data into a global memory chunk and passing it to the clipboard or | |
825 | // another application or whatever), but by handle, so these generic functions | |
826 | // don't make much sense to them. | |
827 | ||
828 | size_t wxBitmapDataObject2::GetDataSize() const | |
3f480da3 | 829 | { |
9e2896e5 | 830 | return 0; |
3f480da3 VZ |
831 | } |
832 | ||
9e2896e5 | 833 | bool wxBitmapDataObject2::GetDataHere(void *pBuf) const |
3f480da3 | 834 | { |
9e2896e5 VZ |
835 | // we put a bitmap handle into pBuf |
836 | *(WXHBITMAP *)pBuf = GetBitmap().GetHBITMAP(); | |
837 | ||
17a6a2e0 | 838 | return true; |
3f480da3 VZ |
839 | } |
840 | ||
265b0c07 | 841 | bool wxBitmapDataObject2::SetData(size_t WXUNUSED(len), const void *pBuf) |
3f480da3 | 842 | { |
9e2896e5 | 843 | HBITMAP hbmp = *(HBITMAP *)pBuf; |
3f480da3 | 844 | |
9e2896e5 VZ |
845 | BITMAP bmp; |
846 | if ( !GetObject(hbmp, sizeof(BITMAP), &bmp) ) | |
847 | { | |
f6bcfd97 | 848 | wxLogLastError(wxT("GetObject(HBITMAP)")); |
9e2896e5 | 849 | } |
8e193f38 | 850 | |
9e2896e5 VZ |
851 | wxBitmap bitmap(bmp.bmWidth, bmp.bmHeight, bmp.bmPlanes); |
852 | bitmap.SetHBITMAP((WXHBITMAP)hbmp); | |
d59ceba5 | 853 | |
a1b806b9 | 854 | if ( !bitmap.IsOk() ) { |
9e2896e5 VZ |
855 | wxFAIL_MSG(wxT("pasting/dropping invalid bitmap")); |
856 | ||
17a6a2e0 | 857 | return false; |
9e2896e5 VZ |
858 | } |
859 | ||
860 | SetBitmap(bitmap); | |
861 | ||
17a6a2e0 | 862 | return true; |
d59ceba5 VZ |
863 | } |
864 | ||
9e2896e5 | 865 | #if 0 |
8e193f38 VZ |
866 | |
867 | size_t wxBitmapDataObject::GetDataSize(const wxDataFormat& format) const | |
868 | { | |
d59ceba5 VZ |
869 | if ( format.GetFormatId() == CF_DIB ) |
870 | { | |
871 | // create the DIB | |
872 | ScreenHDC hdc; | |
873 | ||
874 | // shouldn't be selected into a DC or GetDIBits() would fail | |
875 | wxASSERT_MSG( !m_bitmap.GetSelectedInto(), | |
876 | wxT("can't copy bitmap selected into wxMemoryDC") ); | |
877 | ||
878 | // first get the info | |
879 | BITMAPINFO bi; | |
880 | if ( !GetDIBits(hdc, (HBITMAP)m_bitmap.GetHBITMAP(), 0, 0, | |
881 | NULL, &bi, DIB_RGB_COLORS) ) | |
882 | { | |
f6bcfd97 | 883 | wxLogLastError(wxT("GetDIBits(NULL)")); |
d59ceba5 VZ |
884 | |
885 | return 0; | |
886 | } | |
887 | ||
888 | return sizeof(BITMAPINFO) + bi.bmiHeader.biSizeImage; | |
889 | } | |
890 | else // CF_BITMAP | |
891 | { | |
892 | // no data to copy - we don't pass HBITMAP via global memory | |
893 | return 0; | |
894 | } | |
8e193f38 VZ |
895 | } |
896 | ||
d59ceba5 | 897 | bool wxBitmapDataObject::GetDataHere(const wxDataFormat& format, |
8e193f38 VZ |
898 | void *pBuf) const |
899 | { | |
a1b806b9 | 900 | wxASSERT_MSG( m_bitmap.IsOk(), wxT("copying invalid bitmap") ); |
d59ceba5 VZ |
901 | |
902 | HBITMAP hbmp = (HBITMAP)m_bitmap.GetHBITMAP(); | |
903 | if ( format.GetFormatId() == CF_DIB ) | |
904 | { | |
905 | // create the DIB | |
906 | ScreenHDC hdc; | |
907 | ||
908 | // shouldn't be selected into a DC or GetDIBits() would fail | |
909 | wxASSERT_MSG( !m_bitmap.GetSelectedInto(), | |
910 | wxT("can't copy bitmap selected into wxMemoryDC") ); | |
911 | ||
912 | // first get the info | |
913 | BITMAPINFO *pbi = (BITMAPINFO *)pBuf; | |
914 | if ( !GetDIBits(hdc, hbmp, 0, 0, NULL, pbi, DIB_RGB_COLORS) ) | |
915 | { | |
f6bcfd97 | 916 | wxLogLastError(wxT("GetDIBits(NULL)")); |
d59ceba5 VZ |
917 | |
918 | return 0; | |
919 | } | |
920 | ||
921 | // and now copy the bits | |
922 | if ( !GetDIBits(hdc, hbmp, 0, pbi->bmiHeader.biHeight, pbi + 1, | |
923 | pbi, DIB_RGB_COLORS) ) | |
924 | { | |
f6bcfd97 | 925 | wxLogLastError(wxT("GetDIBits")); |
d59ceba5 | 926 | |
17a6a2e0 | 927 | return false; |
d59ceba5 VZ |
928 | } |
929 | } | |
930 | else // CF_BITMAP | |
931 | { | |
932 | // we put a bitmap handle into pBuf | |
933 | *(HBITMAP *)pBuf = hbmp; | |
934 | } | |
935 | ||
17a6a2e0 | 936 | return true; |
d59ceba5 VZ |
937 | } |
938 | ||
9e2896e5 VZ |
939 | bool wxBitmapDataObject::SetData(const wxDataFormat& format, |
940 | size_t size, const void *pBuf) | |
d59ceba5 VZ |
941 | { |
942 | HBITMAP hbmp; | |
943 | if ( format.GetFormatId() == CF_DIB ) | |
944 | { | |
945 | // here we get BITMAPINFO struct followed by the actual bitmap bits and | |
946 | // BITMAPINFO starts with BITMAPINFOHEADER followed by colour info | |
947 | ScreenHDC hdc; | |
948 | ||
949 | BITMAPINFO *pbmi = (BITMAPINFO *)pBuf; | |
950 | BITMAPINFOHEADER *pbmih = &pbmi->bmiHeader; | |
951 | hbmp = CreateDIBitmap(hdc, pbmih, CBM_INIT, | |
952 | pbmi + 1, pbmi, DIB_RGB_COLORS); | |
953 | if ( !hbmp ) | |
954 | { | |
f6bcfd97 | 955 | wxLogLastError(wxT("CreateDIBitmap")); |
d59ceba5 VZ |
956 | } |
957 | ||
958 | m_bitmap.SetWidth(pbmih->biWidth); | |
959 | m_bitmap.SetHeight(pbmih->biHeight); | |
960 | } | |
961 | else // CF_BITMAP | |
962 | { | |
963 | // it's easy with bitmaps: we pass them by handle | |
964 | hbmp = *(HBITMAP *)pBuf; | |
965 | ||
966 | BITMAP bmp; | |
967 | if ( !GetObject(hbmp, sizeof(BITMAP), &bmp) ) | |
968 | { | |
f6bcfd97 | 969 | wxLogLastError(wxT("GetObject(HBITMAP)")); |
d59ceba5 VZ |
970 | } |
971 | ||
972 | m_bitmap.SetWidth(bmp.bmWidth); | |
973 | m_bitmap.SetHeight(bmp.bmHeight); | |
974 | m_bitmap.SetDepth(bmp.bmPlanes); | |
975 | } | |
976 | ||
977 | m_bitmap.SetHBITMAP((WXHBITMAP)hbmp); | |
978 | ||
a1b806b9 | 979 | wxASSERT_MSG( m_bitmap.IsOk(), wxT("pasting invalid bitmap") ); |
d59ceba5 | 980 | |
17a6a2e0 | 981 | return true; |
8e193f38 VZ |
982 | } |
983 | ||
9e2896e5 VZ |
984 | #endif // 0 |
985 | ||
986 | // ---------------------------------------------------------------------------- | |
987 | // wxFileDataObject | |
988 | // ---------------------------------------------------------------------------- | |
989 | ||
0c0d1521 WS |
990 | bool wxFileDataObject::SetData(size_t WXUNUSED(size), |
991 | const void *WXUNUSED_IN_WINCE(pData)) | |
9e2896e5 | 992 | { |
4676948b | 993 | #ifndef __WXWINCE__ |
9e2896e5 VZ |
994 | m_filenames.Empty(); |
995 | ||
996 | // the documentation states that the first member of DROPFILES structure is | |
997 | // a "DWORD offset of double NUL terminated file list". What they mean by | |
998 | // this (I wonder if you see it immediately) is that the list starts at | |
999 | // ((char *)&(pDropFiles.pFiles)) + pDropFiles.pFiles. We're also advised | |
1000 | // to use DragQueryFile to work with this structure, but not told where and | |
1001 | // how to get HDROP. | |
1002 | HDROP hdrop = (HDROP)pData; // NB: it works, but I'm not sure about it | |
1003 | ||
1004 | // get number of files (magic value -1) | |
1005 | UINT nFiles = ::DragQueryFile(hdrop, (unsigned)-1, NULL, 0u); | |
1006 | ||
51edda6a VZ |
1007 | wxCHECK_MSG ( nFiles != (UINT)-1, FALSE, wxT("wrong HDROP handle") ); |
1008 | ||
9e2896e5 VZ |
1009 | // for each file get the length, allocate memory and then get the name |
1010 | wxString str; | |
1011 | UINT len, n; | |
1012 | for ( n = 0; n < nFiles; n++ ) { | |
1013 | // +1 for terminating NUL | |
1014 | len = ::DragQueryFile(hdrop, n, NULL, 0) + 1; | |
1015 | ||
de564874 | 1016 | UINT len2 = ::DragQueryFile(hdrop, n, wxStringBuffer(str, len), len); |
9e2896e5 VZ |
1017 | m_filenames.Add(str); |
1018 | ||
1019 | if ( len2 != len - 1 ) { | |
f6bcfd97 BP |
1020 | wxLogDebug(wxT("In wxFileDropTarget::OnDrop DragQueryFile returned\ |
1021 | %d characters, %d expected."), len2, len - 1); | |
9e2896e5 VZ |
1022 | } |
1023 | } | |
1024 | ||
17a6a2e0 | 1025 | return true; |
4676948b | 1026 | #else |
17a6a2e0 | 1027 | return false; |
4676948b | 1028 | #endif |
9e2896e5 VZ |
1029 | } |
1030 | ||
8b85d24e VZ |
1031 | void wxFileDataObject::AddFile(const wxString& file) |
1032 | { | |
1033 | // just add file to filenames array | |
1034 | // all useful data (such as DROPFILES struct) will be | |
1035 | // created later as necessary | |
1036 | m_filenames.Add(file); | |
1037 | } | |
1038 | ||
1039 | size_t wxFileDataObject::GetDataSize() const | |
1040 | { | |
4676948b | 1041 | #ifndef __WXWINCE__ |
150194b9 VZ |
1042 | // size returned will be the size of the DROPFILES structure, plus the list |
1043 | // of filesnames (null byte separated), plus a double null at the end | |
8b85d24e VZ |
1044 | |
1045 | // if no filenames in list, size is 0 | |
150194b9 | 1046 | if ( m_filenames.empty() ) |
dd10a646 | 1047 | return 0; |
8b85d24e | 1048 | |
150194b9 VZ |
1049 | #if wxUSE_UNICODE_MSLU |
1050 | size_t sizeOfChar; | |
dddf9e14 | 1051 | if ( wxGetOsVersion() == wxOS_WINDOWS_9X ) |
150194b9 VZ |
1052 | { |
1053 | // Win9x always uses ANSI file names and MSLU doesn't help with this | |
1054 | sizeOfChar = sizeof(char); | |
1055 | } | |
1056 | else | |
1057 | { | |
1058 | sizeOfChar = sizeof(wxChar); | |
1059 | } | |
1060 | #else // !wxUSE_UNICODE_MSLU | |
1061 | static const size_t sizeOfChar = sizeof(wxChar); | |
1062 | #endif // wxUSE_UNICODE_MSLU/!wxUSE_UNICODE_MSLU | |
1063 | ||
8b85d24e | 1064 | // inital size of DROPFILES struct + null byte |
150194b9 | 1065 | size_t sz = sizeof(DROPFILES) + sizeOfChar; |
8b85d24e | 1066 | |
150194b9 | 1067 | const size_t count = m_filenames.size(); |
dd10a646 | 1068 | for ( size_t i = 0; i < count; i++ ) |
8b85d24e VZ |
1069 | { |
1070 | // add filename length plus null byte | |
150194b9 VZ |
1071 | size_t len; |
1072 | #if wxUSE_UNICODE_MSLU | |
1073 | if ( sizeOfChar == sizeof(char) ) | |
e0a050e3 | 1074 | len = strlen(m_filenames[i].mb_str(*wxConvFileName)); |
150194b9 VZ |
1075 | else |
1076 | #endif // wxUSE_UNICODE_MSLU | |
1077 | len = m_filenames[i].length(); | |
1078 | ||
1079 | sz += (len + 1) * sizeOfChar; | |
8b85d24e | 1080 | } |
dd10a646 | 1081 | |
8b85d24e | 1082 | return sz; |
4676948b JS |
1083 | #else |
1084 | return 0; | |
1085 | #endif | |
8b85d24e VZ |
1086 | } |
1087 | ||
0c0d1521 | 1088 | bool wxFileDataObject::GetDataHere(void *WXUNUSED_IN_WINCE(pData)) const |
8b85d24e | 1089 | { |
4676948b | 1090 | #ifndef __WXWINCE__ |
8b85d24e VZ |
1091 | // pData points to an externally allocated memory block |
1092 | // created using the size returned by GetDataSize() | |
1093 | ||
1094 | // if pData is NULL, or there are no files, return | |
150194b9 | 1095 | if ( !pData || m_filenames.empty() ) |
17a6a2e0 | 1096 | return false; |
8b85d24e VZ |
1097 | |
1098 | // convert data pointer to a DROPFILES struct pointer | |
1099 | LPDROPFILES pDrop = (LPDROPFILES) pData; | |
1100 | ||
1101 | // initialize DROPFILES struct | |
1102 | pDrop->pFiles = sizeof(DROPFILES); | |
dd10a646 | 1103 | pDrop->fNC = FALSE; // not non-client coords |
150194b9 | 1104 | #if wxUSE_UNICODE_MSLU |
dddf9e14 | 1105 | pDrop->fWide = wxGetOsVersion() != wxOS_WINDOWS_9X ? TRUE : FALSE; |
150194b9 VZ |
1106 | #else |
1107 | pDrop->fWide = wxUSE_UNICODE; | |
1108 | #endif | |
1109 | ||
1110 | const size_t sizeOfChar = pDrop->fWide ? sizeof(wchar_t) : sizeof(char); | |
8b85d24e VZ |
1111 | |
1112 | // set start of filenames list (null separated) | |
150194b9 | 1113 | BYTE *pbuf = (BYTE *)(pDrop + 1); |
8b85d24e | 1114 | |
150194b9 VZ |
1115 | const size_t count = m_filenames.size(); |
1116 | for ( size_t i = 0; i < count; i++ ) | |
8b85d24e VZ |
1117 | { |
1118 | // copy filename to pbuf and add null terminator | |
150194b9 VZ |
1119 | size_t len; |
1120 | #if wxUSE_UNICODE_MSLU | |
1121 | if ( sizeOfChar == sizeof(char) ) | |
1122 | { | |
e0a050e3 | 1123 | wxCharBuffer buf(m_filenames[i].mb_str(*wxConvFileName)); |
150194b9 VZ |
1124 | len = strlen(buf); |
1125 | memcpy(pbuf, buf, len*sizeOfChar); | |
1126 | } | |
1127 | else | |
1128 | #endif // wxUSE_UNICODE_MSLU | |
1129 | { | |
1130 | len = m_filenames[i].length(); | |
07662700 | 1131 | memcpy(pbuf, m_filenames[i].wx_str(), len*sizeOfChar); |
150194b9 VZ |
1132 | } |
1133 | ||
1134 | pbuf += len*sizeOfChar; | |
1135 | ||
1136 | memset(pbuf, 0, sizeOfChar); | |
1137 | pbuf += sizeOfChar; | |
8b85d24e | 1138 | } |
dd10a646 | 1139 | |
c5639a87 | 1140 | // add final null terminator |
150194b9 | 1141 | memset(pbuf, 0, sizeOfChar); |
8b85d24e | 1142 | |
17a6a2e0 | 1143 | return true; |
4676948b | 1144 | #else |
17a6a2e0 | 1145 | return false; |
4676948b | 1146 | #endif |
8b85d24e VZ |
1147 | } |
1148 | ||
444ad3a7 VZ |
1149 | // ---------------------------------------------------------------------------- |
1150 | // wxURLDataObject | |
1151 | // ---------------------------------------------------------------------------- | |
1152 | ||
219b657f JS |
1153 | // Work around bug in Wine headers |
1154 | #if defined(__WINE__) && defined(CFSTR_SHELLURL) && wxUSE_UNICODE | |
1155 | #undef CFSTR_SHELLURL | |
9a83f860 | 1156 | #define CFSTR_SHELLURL wxT("CFSTR_SHELLURL") |
219b657f JS |
1157 | #endif |
1158 | ||
4a09bc4e | 1159 | class CFSTR_SHELLURLDataObject : public wxCustomDataObject |
e1b435af MB |
1160 | { |
1161 | public: | |
1162 | CFSTR_SHELLURLDataObject() : wxCustomDataObject(CFSTR_SHELLURL) {} | |
6f02a879 | 1163 | |
574c939e | 1164 | virtual size_t GetBufferOffset( const wxDataFormat& WXUNUSED(format) ) |
e1b435af MB |
1165 | { |
1166 | return 0; | |
1167 | } | |
1168 | ||
1169 | virtual const void* GetSizeFromBuffer( const void* buffer, size_t* size, | |
574c939e | 1170 | const wxDataFormat& WXUNUSED(format) ) |
e1b435af MB |
1171 | { |
1172 | // CFSTR_SHELLURL is _always_ ANSI text | |
1173 | *size = strlen( (const char*)buffer ); | |
1174 | ||
1175 | return buffer; | |
1176 | } | |
1177 | ||
574c939e KB |
1178 | virtual void* SetSizeInBuffer( void* buffer, size_t WXUNUSED(size), |
1179 | const wxDataFormat& WXUNUSED(format) ) | |
e1b435af MB |
1180 | { |
1181 | return buffer; | |
1182 | } | |
4a09bc4e | 1183 | |
c0c133e1 | 1184 | wxDECLARE_NO_COPY_CLASS(CFSTR_SHELLURLDataObject); |
e1b435af MB |
1185 | }; |
1186 | ||
4a09bc4e RD |
1187 | |
1188 | ||
0463eea9 | 1189 | wxURLDataObject::wxURLDataObject(const wxString& url) |
444ad3a7 | 1190 | { |
ab250e5c VZ |
1191 | // we support CF_TEXT and CFSTR_SHELLURL formats which are basically the |
1192 | // same but it seems that some browsers only provide one of them so we have | |
1193 | // to support both | |
444ad3a7 | 1194 | Add(new wxTextDataObject); |
e6d318c2 | 1195 | Add(new CFSTR_SHELLURLDataObject()); |
444ad3a7 VZ |
1196 | |
1197 | // we don't have any data yet | |
1198 | m_dataObjectLast = NULL; | |
0463eea9 VZ |
1199 | |
1200 | if ( !url.empty() ) | |
1201 | SetURL(url); | |
444ad3a7 VZ |
1202 | } |
1203 | ||
1204 | bool wxURLDataObject::SetData(const wxDataFormat& format, | |
1205 | size_t len, | |
1206 | const void *buf) | |
1207 | { | |
1208 | m_dataObjectLast = GetObject(format); | |
1209 | ||
1210 | wxCHECK_MSG( m_dataObjectLast, FALSE, | |
1211 | wxT("unsupported format in wxURLDataObject")); | |
1212 | ||
1213 | return m_dataObjectLast->SetData(len, buf); | |
1214 | } | |
1215 | ||
1216 | wxString wxURLDataObject::GetURL() const | |
1217 | { | |
1218 | wxString url; | |
9a83f860 | 1219 | wxCHECK_MSG( m_dataObjectLast, url, wxT("no data in wxURLDataObject") ); |
444ad3a7 | 1220 | |
791f7574 VZ |
1221 | if ( m_dataObjectLast->GetPreferredFormat() == CFSTR_SHELLURL ) |
1222 | { | |
1223 | const size_t len = m_dataObjectLast->GetDataSize(); | |
1224 | if ( !len ) | |
1225 | return wxString(); | |
444ad3a7 | 1226 | |
791f7574 VZ |
1227 | // CFSTR_SHELLURL is always ANSI so we need to convert it from it in |
1228 | // Unicode build | |
1229 | #if wxUSE_UNICODE | |
1230 | wxCharBuffer buf(len); | |
1231 | ||
1232 | if ( m_dataObjectLast->GetDataHere(buf.data()) ) | |
1233 | url = buf; | |
1234 | #else // !wxUSE_UNICODE | |
1235 | // in ANSI build no conversion is necessary | |
1236 | m_dataObjectLast->GetDataHere(wxStringBuffer(url, len)); | |
1237 | #endif // wxUSE_UNICODE/!wxUSE_UNICODE | |
1238 | } | |
1239 | else // must be wxTextDataObject | |
1240 | { | |
1241 | url = static_cast<wxTextDataObject *>(m_dataObjectLast)->GetText(); | |
1242 | } | |
444ad3a7 VZ |
1243 | |
1244 | return url; | |
1245 | } | |
1246 | ||
e6d318c2 RD |
1247 | void wxURLDataObject::SetURL(const wxString& url) |
1248 | { | |
ab250e5c VZ |
1249 | wxCharBuffer urlMB(url.mb_str()); |
1250 | if ( urlMB ) | |
1251 | { | |
cd67a80a VZ |
1252 | const size_t len = strlen(urlMB); |
1253 | ||
b9a5faed | 1254 | #if !wxUSE_UNICODE |
cd67a80a VZ |
1255 | // wxTextDataObject takes the number of characters in the string, not |
1256 | // the size of the buffer (which would be len+1) | |
ab250e5c | 1257 | SetData(wxDF_TEXT, len, urlMB); |
cd67a80a VZ |
1258 | #endif // !wxUSE_UNICODE |
1259 | ||
1260 | // however CFSTR_SHELLURLDataObject doesn't append NUL automatically | |
1261 | // but we probably still want to have it on the clipboard (just to be | |
1262 | // safe), so do append it | |
1263 | SetData(wxDataFormat(CFSTR_SHELLURL), len + 1, urlMB); | |
ab250e5c | 1264 | } |
4a09bc4e | 1265 | |
b9a5faed | 1266 | #if wxUSE_UNICODE |
cd67a80a | 1267 | SetData(wxDF_UNICODETEXT, url.length()*sizeof(wxChar), url.wc_str()); |
b9a5faed | 1268 | #endif |
e6d318c2 RD |
1269 | } |
1270 | ||
269a5a34 VZ |
1271 | // ---------------------------------------------------------------------------- |
1272 | // private functions | |
1273 | // ---------------------------------------------------------------------------- | |
8e193f38 | 1274 | |
4b6a582b | 1275 | #if wxDEBUG_LEVEL |
8e193f38 | 1276 | |
d59ceba5 VZ |
1277 | static const wxChar *GetTymedName(DWORD tymed) |
1278 | { | |
1279 | static wxChar s_szBuf[128]; | |
1280 | switch ( tymed ) { | |
1281 | case TYMED_HGLOBAL: return wxT("TYMED_HGLOBAL"); | |
1282 | case TYMED_FILE: return wxT("TYMED_FILE"); | |
1283 | case TYMED_ISTREAM: return wxT("TYMED_ISTREAM"); | |
1284 | case TYMED_ISTORAGE: return wxT("TYMED_ISTORAGE"); | |
1285 | case TYMED_GDI: return wxT("TYMED_GDI"); | |
1286 | case TYMED_MFPICT: return wxT("TYMED_MFPICT"); | |
1287 | case TYMED_ENHMF: return wxT("TYMED_ENHMF"); | |
1288 | default: | |
dfd2e675 | 1289 | wxSprintf(s_szBuf, wxT("type of media format %ld (unknown)"), tymed); |
d59ceba5 VZ |
1290 | return s_szBuf; |
1291 | } | |
269a5a34 | 1292 | } |
5260b1c5 | 1293 | |
8e193f38 | 1294 | #endif // Debug |
2845ddc2 | 1295 | |
21709999 | 1296 | #else // not using OLE at all |
9205cb3f | 1297 | |
21709999 JS |
1298 | // ---------------------------------------------------------------------------- |
1299 | // wxDataObject | |
1300 | // ---------------------------------------------------------------------------- | |
1301 | ||
461dae94 VZ |
1302 | #if wxUSE_DATAOBJ |
1303 | ||
21709999 JS |
1304 | wxDataObject::wxDataObject() |
1305 | { | |
1306 | } | |
1307 | ||
1308 | wxDataObject::~wxDataObject() | |
1309 | { | |
1310 | } | |
1311 | ||
1312 | void wxDataObject::SetAutoDelete() | |
1313 | { | |
1314 | } | |
1315 | ||
9205cb3f | 1316 | const wxChar *wxDataObject::GetFormatName(wxDataFormat WXUNUSED(format)) |
21709999 JS |
1317 | { |
1318 | return NULL; | |
1319 | } | |
1320 | ||
9205cb3f VZ |
1321 | #endif // wxUSE_DATAOBJ |
1322 | ||
1323 | #endif // wxUSE_OLE/!wxUSE_OLE | |
5260b1c5 | 1324 | |
461dae94 | 1325 |