]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: clipbrd.cpp | |
3 | // Purpose: Clipboard functionality | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // =========================================================================== | |
13 | // declarations | |
14 | // =========================================================================== | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
20 | #ifdef __GNUG__ | |
21 | #pragma implementation "clipbrd.h" | |
22 | #endif | |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
28 | #pragma hdrstop | |
29 | #endif | |
30 | ||
31 | #ifndef WX_PRECOMP | |
32 | #include "wx/setup.h" | |
33 | #endif | |
34 | ||
35 | #if wxUSE_CLIPBOARD | |
36 | ||
37 | #ifndef WX_PRECOMP | |
38 | #include "wx/object.h" | |
39 | #include "wx/event.h" | |
40 | #include "wx/app.h" | |
41 | #include "wx/frame.h" | |
42 | #include "wx/bitmap.h" | |
43 | #include "wx/utils.h" | |
44 | #include "wx/intl.h" | |
45 | #endif | |
46 | ||
47 | #if wxUSE_METAFILE | |
48 | #include "wx/metafile.h" | |
49 | #endif | |
50 | ||
51 | #include "wx/log.h" | |
52 | #include "wx/clipbrd.h" | |
53 | ||
54 | #include <string.h> | |
55 | #include <windows.h> | |
56 | ||
57 | #include "wx/msw/private.h" | |
58 | #include "wx/msw/dib.h" | |
59 | ||
60 | // wxDataObject is tied to OLE/drag and drop implementation, therefore so are | |
61 | // the functions using wxDataObject in wxClipboard | |
62 | #define wxUSE_DATAOBJ wxUSE_DRAG_AND_DROP | |
63 | ||
64 | #if wxUSE_DATAOBJ | |
65 | #include "wx/dataobj.h" | |
66 | ||
67 | // use OLE clipboard | |
68 | #define wxUSE_OLE_CLIPBOARD 1 | |
69 | #else // !wxUSE_DATAOBJ | |
70 | // use Win clipboard API | |
71 | #define wxUSE_OLE_CLIPBOARD 0 | |
72 | #endif | |
73 | ||
74 | #if wxUSE_OLE_CLIPBOARD | |
75 | #include <ole2.h> | |
76 | #endif // wxUSE_OLE_CLIPBOARD | |
77 | ||
78 | #ifdef __WIN16__ | |
79 | #define memcpy hmemcpy | |
80 | #endif | |
81 | ||
82 | // =========================================================================== | |
83 | // implementation | |
84 | // =========================================================================== | |
85 | ||
86 | // --------------------------------------------------------------------------- | |
87 | // old-style clipboard functions using Windows API | |
88 | // --------------------------------------------------------------------------- | |
89 | ||
90 | static bool gs_wxClipboardIsOpen = FALSE; | |
91 | ||
92 | bool wxOpenClipboard() | |
93 | { | |
94 | wxCHECK_MSG( !gs_wxClipboardIsOpen, TRUE, wxT("clipboard already opened.") ); | |
95 | ||
96 | wxWindow *win = wxTheApp->GetTopWindow(); | |
97 | if ( win ) | |
98 | { | |
99 | gs_wxClipboardIsOpen = ::OpenClipboard((HWND)win->GetHWND()) != 0; | |
100 | ||
101 | if ( !gs_wxClipboardIsOpen ) | |
102 | wxLogSysError(_("Failed to open the clipboard.")); | |
103 | ||
104 | return gs_wxClipboardIsOpen; | |
105 | } | |
106 | else | |
107 | { | |
108 | wxLogDebug(wxT("Can not open clipboard without a main window.")); | |
109 | ||
110 | return FALSE; | |
111 | } | |
112 | } | |
113 | ||
114 | bool wxCloseClipboard() | |
115 | { | |
116 | wxCHECK_MSG( gs_wxClipboardIsOpen, FALSE, wxT("clipboard is not opened") ); | |
117 | ||
118 | gs_wxClipboardIsOpen = FALSE; | |
119 | ||
120 | if ( ::CloseClipboard() == 0 ) | |
121 | { | |
122 | wxLogSysError(_("Failed to close the clipboard.")); | |
123 | ||
124 | return FALSE; | |
125 | } | |
126 | ||
127 | return TRUE; | |
128 | } | |
129 | ||
130 | bool wxEmptyClipboard() | |
131 | { | |
132 | if ( ::EmptyClipboard() == 0 ) | |
133 | { | |
134 | wxLogSysError(_("Failed to empty the clipboard.")); | |
135 | ||
136 | return FALSE; | |
137 | } | |
138 | ||
139 | return TRUE; | |
140 | } | |
141 | ||
142 | bool wxIsClipboardOpened() | |
143 | { | |
144 | return gs_wxClipboardIsOpen; | |
145 | } | |
146 | ||
147 | bool wxIsClipboardFormatAvailable(wxDataFormat dataFormat) | |
148 | { | |
149 | // for bitmaps, DIBs will also do | |
150 | return (::IsClipboardFormatAvailable(dataFormat) != 0) || | |
151 | (dataFormat.GetFormatId() == CF_BITMAP && | |
152 | ::IsClipboardFormatAvailable(CF_DIB)); | |
153 | } | |
154 | ||
155 | bool wxSetClipboardData(wxDataFormat dataFormat, | |
156 | const void *data, | |
157 | int width, int height) | |
158 | { | |
159 | HANDLE handle = 0; // return value of SetClipboardData | |
160 | ||
161 | switch (dataFormat) | |
162 | { | |
163 | case wxDF_BITMAP: | |
164 | { | |
165 | wxBitmap *bitmap = (wxBitmap *)data; | |
166 | ||
167 | HDC hdcMem = CreateCompatibleDC((HDC) NULL); | |
168 | HDC hdcSrc = CreateCompatibleDC((HDC) NULL); | |
169 | HBITMAP old = (HBITMAP) | |
170 | ::SelectObject(hdcSrc, (HBITMAP)bitmap->GetHBITMAP()); | |
171 | HBITMAP hBitmap = CreateCompatibleBitmap(hdcSrc, | |
172 | bitmap->GetWidth(), | |
173 | bitmap->GetHeight()); | |
174 | if (!hBitmap) | |
175 | { | |
176 | SelectObject(hdcSrc, old); | |
177 | DeleteDC(hdcMem); | |
178 | DeleteDC(hdcSrc); | |
179 | return FALSE; | |
180 | } | |
181 | ||
182 | HBITMAP old1 = (HBITMAP) SelectObject(hdcMem, hBitmap); | |
183 | BitBlt(hdcMem, 0, 0, bitmap->GetWidth(), bitmap->GetHeight(), | |
184 | hdcSrc, 0, 0, SRCCOPY); | |
185 | ||
186 | // Select new bitmap out of memory DC | |
187 | SelectObject(hdcMem, old1); | |
188 | ||
189 | // Set the data | |
190 | handle = ::SetClipboardData(CF_BITMAP, hBitmap); | |
191 | ||
192 | // Clean up | |
193 | SelectObject(hdcSrc, old); | |
194 | DeleteDC(hdcSrc); | |
195 | DeleteDC(hdcMem); | |
196 | break; | |
197 | } | |
198 | ||
199 | case wxDF_DIB: | |
200 | { | |
201 | #if wxUSE_IMAGE_LOADING_IN_MSW | |
202 | wxBitmap *bitmap = (wxBitmap *)data; | |
203 | HBITMAP hBitmap = (HBITMAP)bitmap->GetHBITMAP(); | |
204 | // NULL palette means to use the system one | |
205 | HANDLE hDIB = wxBitmapToDIB(hBitmap, (HPALETTE)NULL); | |
206 | handle = SetClipboardData(CF_DIB, hDIB); | |
207 | #endif // wxUSE_IMAGE_LOADING_IN_MSW | |
208 | break; | |
209 | } | |
210 | ||
211 | #if wxUSE_METAFILE | |
212 | case wxDF_METAFILE: | |
213 | { | |
214 | wxMetafile *wxMF = (wxMetafile *)data; | |
215 | HANDLE data = GlobalAlloc(GHND, sizeof(METAFILEPICT) + 1); | |
216 | METAFILEPICT *mf = (METAFILEPICT *)GlobalLock(data); | |
217 | ||
218 | mf->mm = wxMF->GetWindowsMappingMode(); | |
219 | mf->xExt = width; | |
220 | mf->yExt = height; | |
221 | mf->hMF = (HMETAFILE) wxMF->GetHMETAFILE(); | |
222 | GlobalUnlock(data); | |
223 | wxMF->SetHMETAFILE((WXHANDLE) NULL); | |
224 | ||
225 | handle = SetClipboardData(CF_METAFILEPICT, data); | |
226 | break; | |
227 | } | |
228 | #endif | |
229 | case CF_SYLK: | |
230 | case CF_DIF: | |
231 | case CF_TIFF: | |
232 | case CF_PALETTE: | |
233 | default: | |
234 | { | |
235 | wxLogError(_("Unsupported clipboard format.")); | |
236 | return FALSE; | |
237 | } | |
238 | ||
239 | case wxDF_OEMTEXT: | |
240 | dataFormat = wxDF_TEXT; | |
241 | // fall through | |
242 | ||
243 | case wxDF_TEXT: | |
244 | { | |
245 | char *s = (char *)data; | |
246 | ||
247 | width = strlen(s) + 1; | |
248 | height = 1; | |
249 | DWORD l = (width * height); | |
250 | HANDLE hGlobalMemory = GlobalAlloc(GHND, l); | |
251 | if ( hGlobalMemory ) | |
252 | { | |
253 | LPSTR lpGlobalMemory = (LPSTR)GlobalLock(hGlobalMemory); | |
254 | ||
255 | memcpy(lpGlobalMemory, s, l); | |
256 | ||
257 | GlobalUnlock(hGlobalMemory); | |
258 | } | |
259 | ||
260 | handle = SetClipboardData(dataFormat, hGlobalMemory); | |
261 | break; | |
262 | } | |
263 | } | |
264 | ||
265 | if ( handle == 0 ) | |
266 | { | |
267 | wxLogSysError(_("Failed to set clipboard data.")); | |
268 | ||
269 | return FALSE; | |
270 | } | |
271 | ||
272 | return TRUE; | |
273 | } | |
274 | ||
275 | void *wxGetClipboardData(wxDataFormat dataFormat, long *len) | |
276 | { | |
277 | void *retval = NULL; | |
278 | ||
279 | switch ( dataFormat ) | |
280 | { | |
281 | case wxDF_BITMAP: | |
282 | { | |
283 | BITMAP bm; | |
284 | HBITMAP hBitmap = (HBITMAP) GetClipboardData(CF_BITMAP); | |
285 | if (!hBitmap) | |
286 | break; | |
287 | ||
288 | HDC hdcMem = CreateCompatibleDC((HDC) NULL); | |
289 | HDC hdcSrc = CreateCompatibleDC((HDC) NULL); | |
290 | ||
291 | HBITMAP old = (HBITMAP) ::SelectObject(hdcSrc, hBitmap); | |
292 | GetObject(hBitmap, sizeof(BITMAP), (LPSTR)&bm); | |
293 | ||
294 | HBITMAP hNewBitmap = CreateBitmapIndirect(&bm); | |
295 | ||
296 | if (!hNewBitmap) | |
297 | { | |
298 | SelectObject(hdcSrc, old); | |
299 | DeleteDC(hdcMem); | |
300 | DeleteDC(hdcSrc); | |
301 | break; | |
302 | } | |
303 | ||
304 | HBITMAP old1 = (HBITMAP) SelectObject(hdcMem, hNewBitmap); | |
305 | BitBlt(hdcMem, 0, 0, bm.bmWidth, bm.bmHeight, | |
306 | hdcSrc, 0, 0, SRCCOPY); | |
307 | ||
308 | // Select new bitmap out of memory DC | |
309 | SelectObject(hdcMem, old1); | |
310 | ||
311 | // Clean up | |
312 | SelectObject(hdcSrc, old); | |
313 | DeleteDC(hdcSrc); | |
314 | DeleteDC(hdcMem); | |
315 | ||
316 | // Create and return a new wxBitmap | |
317 | wxBitmap *wxBM = new wxBitmap; | |
318 | wxBM->SetHBITMAP((WXHBITMAP) hNewBitmap); | |
319 | wxBM->SetWidth(bm.bmWidth); | |
320 | wxBM->SetHeight(bm.bmHeight); | |
321 | wxBM->SetDepth(bm.bmPlanes); | |
322 | wxBM->SetOk(TRUE); | |
323 | retval = wxBM; | |
324 | break; | |
325 | } | |
326 | ||
327 | case wxDF_METAFILE: | |
328 | case CF_SYLK: | |
329 | case CF_DIF: | |
330 | case CF_TIFF: | |
331 | case CF_PALETTE: | |
332 | case wxDF_DIB: | |
333 | { | |
334 | wxLogError(_("Unsupported clipboard format.")); | |
335 | return FALSE; | |
336 | } | |
337 | ||
338 | case wxDF_OEMTEXT: | |
339 | dataFormat = wxDF_TEXT; | |
340 | // fall through | |
341 | ||
342 | case wxDF_TEXT: | |
343 | { | |
344 | HANDLE hGlobalMemory = ::GetClipboardData(dataFormat); | |
345 | if (!hGlobalMemory) | |
346 | break; | |
347 | ||
348 | DWORD hsize = ::GlobalSize(hGlobalMemory); | |
349 | if (len) | |
350 | *len = hsize; | |
351 | ||
352 | char *s = new char[hsize]; | |
353 | if (!s) | |
354 | break; | |
355 | ||
356 | LPSTR lpGlobalMemory = (LPSTR)::GlobalLock(hGlobalMemory); | |
357 | ||
358 | memcpy(s, lpGlobalMemory, hsize); | |
359 | ||
360 | ::GlobalUnlock(hGlobalMemory); | |
361 | ||
362 | retval = s; | |
363 | break; | |
364 | } | |
365 | ||
366 | default: | |
367 | { | |
368 | HANDLE hGlobalMemory = ::GetClipboardData(dataFormat); | |
369 | if ( !hGlobalMemory ) | |
370 | break; | |
371 | ||
372 | DWORD size = ::GlobalSize(hGlobalMemory); | |
373 | if ( len ) | |
374 | *len = size; | |
375 | ||
376 | void *buf = malloc(size); | |
377 | if ( !buf ) | |
378 | break; | |
379 | ||
380 | LPSTR lpGlobalMemory = (LPSTR)::GlobalLock(hGlobalMemory); | |
381 | ||
382 | memcpy(buf, lpGlobalMemory, size); | |
383 | ||
384 | ::GlobalUnlock(hGlobalMemory); | |
385 | ||
386 | retval = buf; | |
387 | break; | |
388 | } | |
389 | } | |
390 | ||
391 | if ( !retval ) | |
392 | { | |
393 | wxLogSysError(_("Failed to retrieve data from the clipboard.")); | |
394 | } | |
395 | ||
396 | return retval; | |
397 | } | |
398 | ||
399 | wxDataFormat wxEnumClipboardFormats(wxDataFormat dataFormat) | |
400 | { | |
401 | return ::EnumClipboardFormats(dataFormat); | |
402 | } | |
403 | ||
404 | int wxRegisterClipboardFormat(wxChar *formatName) | |
405 | { | |
406 | return ::RegisterClipboardFormat(formatName); | |
407 | } | |
408 | ||
409 | bool wxGetClipboardFormatName(wxDataFormat dataFormat, | |
410 | wxChar *formatName, | |
411 | int maxCount) | |
412 | { | |
413 | return ::GetClipboardFormatName((int)dataFormat, formatName, maxCount) > 0; | |
414 | } | |
415 | ||
416 | // --------------------------------------------------------------------------- | |
417 | // wxClipboard | |
418 | // --------------------------------------------------------------------------- | |
419 | ||
420 | IMPLEMENT_DYNAMIC_CLASS(wxClipboard, wxObject) | |
421 | ||
422 | wxClipboard::wxClipboard() | |
423 | { | |
424 | m_clearOnExit = FALSE; | |
425 | } | |
426 | ||
427 | wxClipboard::~wxClipboard() | |
428 | { | |
429 | if ( m_clearOnExit ) | |
430 | { | |
431 | Clear(); | |
432 | } | |
433 | } | |
434 | ||
435 | void wxClipboard::Clear() | |
436 | { | |
437 | #if wxUSE_OLE_CLIPBOARD | |
438 | if ( FAILED(OleSetClipboard(NULL)) ) | |
439 | { | |
440 | wxLogLastError("OleSetClipboard(NULL)"); | |
441 | } | |
442 | #endif | |
443 | } | |
444 | ||
445 | bool wxClipboard::Flush() | |
446 | { | |
447 | #if wxUSE_OLE_CLIPBOARD | |
448 | if ( FAILED(OleFlushClipboard()) ) | |
449 | { | |
450 | wxLogLastError("OleFlushClipboard"); | |
451 | ||
452 | return FALSE; | |
453 | } | |
454 | else | |
455 | { | |
456 | m_clearOnExit = FALSE; | |
457 | ||
458 | return TRUE; | |
459 | } | |
460 | #else // !wxUSE_OLE_CLIPBOARD | |
461 | return FALSE; | |
462 | #endif // wxUSE_OLE_CLIPBOARD/!wxUSE_OLE_CLIPBOARD | |
463 | } | |
464 | ||
465 | bool wxClipboard::Open() | |
466 | { | |
467 | // OLE opens clipboard for us | |
468 | #if wxUSE_OLE_CLIPBOARD | |
469 | return TRUE; | |
470 | #else | |
471 | return wxOpenClipboard(); | |
472 | #endif | |
473 | } | |
474 | ||
475 | bool wxClipboard::IsOpened() const | |
476 | { | |
477 | #if wxUSE_OLE_CLIPBOARD | |
478 | return TRUE; | |
479 | #else | |
480 | return wxIsClipboardOpened(); | |
481 | #endif | |
482 | } | |
483 | ||
484 | bool wxClipboard::SetData( wxDataObject *data ) | |
485 | { | |
486 | #if !wxUSE_OLE_CLIPBOARD | |
487 | (void)wxEmptyClipboard(); | |
488 | #endif // wxUSE_OLE_CLIPBOARD | |
489 | ||
490 | if ( data ) | |
491 | return AddData(data); | |
492 | else | |
493 | return TRUE; | |
494 | } | |
495 | ||
496 | bool wxClipboard::AddData( wxDataObject *data ) | |
497 | { | |
498 | wxCHECK_MSG( data, FALSE, wxT("data is invalid") ); | |
499 | ||
500 | #if wxUSE_OLE_CLIPBOARD | |
501 | HRESULT hr = OleSetClipboard(data->GetInterface()); | |
502 | if ( FAILED(hr) ) | |
503 | { | |
504 | wxLogSysError(hr, _("Failed to put data on the clipboard")); | |
505 | ||
506 | // don't free anything in this case | |
507 | ||
508 | return FALSE; | |
509 | } | |
510 | ||
511 | // we have a problem here because we should delete wxDataObject, but we | |
512 | // can't do it because IDataObject which we just gave to the clipboard | |
513 | // would try to use it when it will need the data. IDataObject is ref | |
514 | // counted and so doesn't suffer from such problem, so we release it now | |
515 | // and tell it to delete wxDataObject when it is deleted itself. | |
516 | data->SetAutoDelete(); | |
517 | ||
518 | // we have to call either OleSetClipboard(NULL) or OleFlushClipboard() when | |
519 | // using OLE clipboard when the app terminates - by default, we call | |
520 | // OleSetClipboard(NULL) which won't waste RAM, but the app can call | |
521 | // wxClipboard::Flush() to chaneg this | |
522 | m_clearOnExit = TRUE; | |
523 | ||
524 | return TRUE; | |
525 | #elif wxUSE_DATAOBJ | |
526 | wxCHECK_MSG( wxIsClipboardOpened(), FALSE, wxT("clipboard not open") ); | |
527 | ||
528 | wxDataFormat format = data->GetFormat(); | |
529 | ||
530 | switch ( format ) | |
531 | { | |
532 | case wxDF_TEXT: | |
533 | case wxDF_OEMTEXT: | |
534 | { | |
535 | wxTextDataObject* textDataObject = (wxTextDataObject*) data; | |
536 | wxString str(textDataObject->GetText()); | |
537 | return wxSetClipboardData(format, str.c_str()); | |
538 | } | |
539 | ||
540 | case wxDF_BITMAP: | |
541 | case wxDF_DIB: | |
542 | { | |
543 | wxBitmapDataObject* bitmapDataObject = (wxBitmapDataObject*) data; | |
544 | wxBitmap bitmap(bitmapDataObject->GetBitmap()); | |
545 | return wxSetClipboardData(data->GetFormat(), &bitmap); | |
546 | } | |
547 | ||
548 | #if wxUSE_METAFILE | |
549 | case wxDF_METAFILE: | |
550 | { | |
551 | wxMetafileDataObject* metaFileDataObject = | |
552 | (wxMetafileDataObject*) data; | |
553 | wxMetafile metaFile = metaFileDataObject->GetMetafile(); | |
554 | return wxSetClipboardData(wxDF_METAFILE, &metaFile, | |
555 | metaFileDataObject->GetWidth(), | |
556 | metaFileDataObject->GetHeight()); | |
557 | } | |
558 | #endif // wxUSE_METAFILE | |
559 | ||
560 | default: | |
561 | return wxSetClipboardData(data); | |
562 | } | |
563 | #else // !wxUSE_DATAOBJ | |
564 | return FALSE; | |
565 | #endif // wxUSE_DATAOBJ/!wxUSE_DATAOBJ | |
566 | } | |
567 | ||
568 | void wxClipboard::Close() | |
569 | { | |
570 | // OLE closes clipboard for us | |
571 | #if !wxUSE_OLE_CLIPBOARD | |
572 | wxCloseClipboard(); | |
573 | #endif | |
574 | } | |
575 | ||
576 | bool wxClipboard::IsSupported( wxDataFormat format ) | |
577 | { | |
578 | return wxIsClipboardFormatAvailable(format); | |
579 | } | |
580 | ||
581 | bool wxClipboard::GetData( wxDataObject& data ) | |
582 | { | |
583 | #if wxUSE_OLE_CLIPBOARD | |
584 | IDataObject *pDataObject = NULL; | |
585 | HRESULT hr = OleGetClipboard(&pDataObject); | |
586 | if ( FAILED(hr) || !pDataObject ) | |
587 | { | |
588 | wxLogSysError(hr, _("Failed to get data from the clipboard")); | |
589 | ||
590 | return FALSE; | |
591 | } | |
592 | ||
593 | // build the list of supported formats | |
594 | size_t nFormats = data.GetFormatCount(wxDataObject::Set); | |
595 | wxDataFormat format, *formats; | |
596 | if ( nFormats == 1 ) | |
597 | { | |
598 | // the most common case | |
599 | formats = &format; | |
600 | } | |
601 | else | |
602 | { | |
603 | // bad luck, need to alloc mem | |
604 | formats = new wxDataFormat[nFormats]; | |
605 | } | |
606 | ||
607 | data.GetAllFormats(formats, wxDataObject::Set); | |
608 | ||
609 | // get the format enumerator | |
610 | bool result = FALSE; | |
611 | wxArrayInt supportedFormats; | |
612 | IEnumFORMATETC *pEnumFormatEtc = NULL; | |
613 | hr = pDataObject->EnumFormatEtc(DATADIR_GET, &pEnumFormatEtc); | |
614 | if ( FAILED(hr) || !pEnumFormatEtc ) | |
615 | { | |
616 | wxLogSysError(hr, | |
617 | _("Failed to retrieve the supported clipboard formats")); | |
618 | } | |
619 | else | |
620 | { | |
621 | // ask for the supported formats and see if there are any we support | |
622 | FORMATETC formatEtc; | |
623 | for ( ;; ) | |
624 | { | |
625 | ULONG nCount; | |
626 | hr = pEnumFormatEtc->Next(1, &formatEtc, &nCount); | |
627 | ||
628 | // don't use FAILED() because S_FALSE would pass it | |
629 | if ( hr != S_OK ) | |
630 | { | |
631 | // no more formats | |
632 | break; | |
633 | } | |
634 | ||
635 | CLIPFORMAT cf = formatEtc.cfFormat; | |
636 | ||
637 | #ifdef __WXDEBUG__ | |
638 | wxLogTrace(wxTRACE_OleCalls, | |
639 | wxT("Object on the clipboard supports format %s."), | |
640 | wxDataObject::GetFormatName(cf)); | |
641 | #endif // Debug | |
642 | ||
643 | // is supported? | |
644 | for ( size_t n = 0; n < nFormats; n++ ) | |
645 | { | |
646 | if ( formats[n].GetFormatId() == cf ) | |
647 | { | |
648 | if ( supportedFormats.Index(cf) == wxNOT_FOUND ) | |
649 | { | |
650 | supportedFormats.Add(cf); | |
651 | } | |
652 | } | |
653 | } | |
654 | } | |
655 | ||
656 | pEnumFormatEtc->Release(); | |
657 | } | |
658 | ||
659 | if ( formats != &format ) | |
660 | { | |
661 | delete [] formats; | |
662 | } | |
663 | //else: we didn't allocate any memory | |
664 | ||
665 | if ( !supportedFormats.IsEmpty() ) | |
666 | { | |
667 | FORMATETC formatEtc; | |
668 | formatEtc.ptd = NULL; | |
669 | formatEtc.dwAspect = DVASPECT_CONTENT; | |
670 | formatEtc.lindex = -1; | |
671 | formatEtc.tymed = TYMED_HGLOBAL; | |
672 | ||
673 | size_t nSupportedFormats = supportedFormats.GetCount(); | |
674 | for ( size_t n = 0; !result && (n < nSupportedFormats); n++ ) | |
675 | { | |
676 | STGMEDIUM medium; | |
677 | formatEtc.cfFormat = supportedFormats[n]; | |
678 | ||
679 | // try to get data | |
680 | hr = pDataObject->GetData(&formatEtc, &medium); | |
681 | if ( FAILED(hr) ) | |
682 | { | |
683 | // try other tymed for GDI objects | |
684 | if ( formatEtc.cfFormat == CF_BITMAP ) | |
685 | { | |
686 | formatEtc.tymed = TYMED_HGLOBAL; | |
687 | hr = pDataObject->GetData(&formatEtc, &medium); | |
688 | } | |
689 | } | |
690 | ||
691 | if ( SUCCEEDED(hr) ) | |
692 | { | |
693 | // pass the data to the data object | |
694 | hr = data.GetInterface()->SetData(&formatEtc, &medium, TRUE); | |
695 | if ( FAILED(hr) ) | |
696 | { | |
697 | wxLogDebug(wxT("Failed to set data in wxIDataObject")); | |
698 | ||
699 | // IDataObject only takes the ownership of data if it | |
700 | // successfully got it - which is not the case here | |
701 | ReleaseStgMedium(&medium); | |
702 | } | |
703 | else | |
704 | { | |
705 | result = TRUE; | |
706 | } | |
707 | } | |
708 | //else: unsupported tymed? | |
709 | } | |
710 | } | |
711 | //else: unsupported format | |
712 | ||
713 | // clean up and return | |
714 | pDataObject->Release(); | |
715 | ||
716 | return result; | |
717 | #elif wxUSE_DATAOBJ | |
718 | wxCHECK_MSG( wxIsClipboardOpened(), FALSE, wxT("clipboard not open") ); | |
719 | ||
720 | wxDataFormat format = data.GetFormat(); | |
721 | switch ( format ) | |
722 | { | |
723 | case wxDF_TEXT: | |
724 | case wxDF_OEMTEXT: | |
725 | { | |
726 | wxTextDataObject& textDataObject = (wxTextDataObject &)data; | |
727 | char* s = (char*)wxGetClipboardData(format); | |
728 | if ( !s ) | |
729 | return FALSE; | |
730 | ||
731 | textDataObject.SetText(s); | |
732 | delete [] s; | |
733 | ||
734 | return TRUE; | |
735 | } | |
736 | ||
737 | case wxDF_BITMAP: | |
738 | case wxDF_DIB: | |
739 | { | |
740 | wxBitmapDataObject& bitmapDataObject = (wxBitmapDataObject &)data; | |
741 | wxBitmap* bitmap = (wxBitmap *)wxGetClipboardData(data->GetFormat()); | |
742 | if ( !bitmap ) | |
743 | return FALSE; | |
744 | ||
745 | bitmapDataObject.SetBitmap(*bitmap); | |
746 | delete bitmap; | |
747 | ||
748 | return TRUE; | |
749 | } | |
750 | #if wxUSE_METAFILE | |
751 | case wxDF_METAFILE: | |
752 | { | |
753 | wxMetafileDataObject& metaFileDataObject = (wxMetafileDataObject &)data; | |
754 | wxMetafile* metaFile = (wxMetafile *)wxGetClipboardData(wxDF_METAFILE); | |
755 | if ( !metaFile ) | |
756 | return FALSE; | |
757 | ||
758 | metaFileDataObject.SetMetafile(*metaFile); | |
759 | delete metaFile; | |
760 | ||
761 | return TRUE; | |
762 | } | |
763 | #endif // wxUSE_METAFILE | |
764 | } | |
765 | #else // !wxUSE_DATAOBJ | |
766 | wxFAIL_MSG( wxT("no clipboard implementation") ); | |
767 | #endif // wxUSE_OLE_CLIPBOARD/wxUSE_DATAOBJ | |
768 | ||
769 | return FALSE; | |
770 | } | |
771 | ||
772 | #else | |
773 | #error "Please turn wxUSE_CLIPBOARD on to compile this file." | |
774 | #endif // wxUSE_CLIPBOARD | |
775 |