-
- HBITMAP old1 = (HBITMAP) SelectObject(hdcMem, hBitmap);
- BitBlt(hdcMem, 0, 0, bitmap->GetWidth(), bitmap->GetHeight(),
- hdcSrc, 0, 0, SRCCOPY);
-
- // Select new bitmap out of memory DC
- SelectObject(hdcMem, old1);
-
- // Set the data
- handle = ::SetClipboardData(CF_BITMAP, hBitmap);
-
- // Clean up
- SelectObject(hdcSrc, old);
- DeleteDC(hdcSrc);
- DeleteDC(hdcMem);
- */
- break;
- }
-
- case wxDF_DIB:
- {
- /*
-#if wxUSE_IMAGE_LOADING_IN_MSW
- wxBitmap *bitmap = (wxBitmap *)data;
- HBITMAP hBitmap = (HBITMAP)bitmap->GetHBITMAP();
- // NULL palette means to use the system one
- HANDLE hDIB = wxBitmapToDIB(hBitmap, (HPALETTE)NULL);
- handle = SetClipboardData(CF_DIB, hDIB);
-#endif // wxUSE_IMAGE_LOADING_IN_MSW
-*/
- break;
- }
-
-#if wxUSE_METAFILE
- case wxDF_METAFILE:
- {
- wxMetafile *wxMF = (wxMetafile *)data;
- PicHandle pict = wxMF->GetHMETAFILE() ;
- HLock( (Handle) pict ) ;
-#if !TARGET_CARBON
- err = PutScrap( GetHandleSize( (Handle) pict ) , 'PICT' , *pict ) ;
-#else
- ScrapRef scrap;
- err = GetCurrentScrap (&scrap);
- if ( !err )
- {
- err = PutScrapFlavor (scrap, 'PICT', 0, GetHandleSize((Handle) pict), *pict);
- }
-#endif
- HUnlock( (Handle) pict ) ;
- break;
- }
-#endif
- case wxDF_SYLK:
- case wxDF_DIF:
- case wxDF_TIFF:
- case wxDF_PALETTE:
- default:
- {
- wxLogError(_("Unsupported clipboard format."));
- return FALSE;