]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/ole/dataobj.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: msw/ole/dataobj.cpp
3 // Purpose: implementation of wx[I]DataObject class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "dataobj.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
27 #if defined(__BORLANDC__)
35 #if defined(__WIN32__) && !defined(__GNUWIN32__) || defined(wxUSE_NORLANDER_HEADERS)
38 #include "wx/dataobj.h"
41 #ifdef wxUSE_NORLANDER_HEADERS
51 #include "wx/msw/ole/oleutils.h"
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
58 static const wxChar
*GetTymedName(DWORD tymed
);
60 #define GetTymedName(tymed) ""
61 #endif // Debug/!Debug
63 // to be moved into wx/msw/bitmap.h
64 extern size_t wxConvertBitmapToDIB(BITMAPINFO
*pbi
, const wxBitmap
& bitmap
);
65 extern wxBitmap
wxConvertDIBToBitmap(const BITMAPINFO
*bmi
);
67 // ----------------------------------------------------------------------------
68 // wxIEnumFORMATETC interface implementation
69 // ----------------------------------------------------------------------------
71 class wxIEnumFORMATETC
: public IEnumFORMATETC
74 wxIEnumFORMATETC(const wxDataFormat
* formats
, ULONG nCount
);
75 ~wxIEnumFORMATETC() { delete [] m_formats
; }
77 DECLARE_IUNKNOWN_METHODS
;
80 STDMETHODIMP
Next(ULONG celt
, FORMATETC
*rgelt
, ULONG
*pceltFetched
);
81 STDMETHODIMP
Skip(ULONG celt
);
83 STDMETHODIMP
Clone(IEnumFORMATETC
**ppenum
);
86 CLIPFORMAT
*m_formats
; // formats we can provide data in
87 ULONG m_nCount
, // number of formats we support
88 m_nCurrent
; // current enum position
91 // ----------------------------------------------------------------------------
92 // wxIDataObject implementation of IDataObject interface
93 // ----------------------------------------------------------------------------
95 class wxIDataObject
: public IDataObject
98 wxIDataObject(wxDataObject
*pDataObject
);
101 // normally, wxDataObject controls our lifetime (i.e. we're deleted when it
102 // is), but in some cases, the situation is inversed, that is we delete it
103 // when this object is deleted - setting this flag enables such logic
104 void SetDeleteFlag() { m_mustDelete
= TRUE
; }
106 DECLARE_IUNKNOWN_METHODS
;
109 STDMETHODIMP
GetData(FORMATETC
*pformatetcIn
, STGMEDIUM
*pmedium
);
110 STDMETHODIMP
GetDataHere(FORMATETC
*pformatetc
, STGMEDIUM
*pmedium
);
111 STDMETHODIMP
QueryGetData(FORMATETC
*pformatetc
);
112 STDMETHODIMP
GetCanonicalFormatEtc(FORMATETC
*In
, FORMATETC
*pOut
);
113 STDMETHODIMP
SetData(FORMATETC
*pfetc
, STGMEDIUM
*pmedium
, BOOL fRelease
);
114 STDMETHODIMP
EnumFormatEtc(DWORD dwDirection
, IEnumFORMATETC
**ppenumFEtc
);
115 STDMETHODIMP
DAdvise(FORMATETC
*pfetc
, DWORD ad
, IAdviseSink
*p
, DWORD
*pdw
);
116 STDMETHODIMP
DUnadvise(DWORD dwConnection
);
117 STDMETHODIMP
EnumDAdvise(IEnumSTATDATA
**ppenumAdvise
);
120 wxDataObject
*m_pDataObject
; // pointer to C++ class we belong to
125 // ----------------------------------------------------------------------------
126 // small helper class for getting screen DC (we're working with bitmaps and
128 // ----------------------------------------------------------------------------
133 ScreenHDC() { m_hdc
= GetDC(NULL
); }
134 ~ScreenHDC() { ReleaseDC(NULL
, m_hdc
); }
135 operator HDC() const { return m_hdc
; }
141 // ============================================================================
143 // ============================================================================
145 // ----------------------------------------------------------------------------
147 // ----------------------------------------------------------------------------
149 void wxDataFormat::SetId(const wxChar
*format
)
151 m_format
= ::RegisterClipboardFormat(format
);
154 wxLogError(_("Couldn't register clipboard format '%s'."), format
);
158 wxString
wxDataFormat::GetId() const
160 static const int max
= 256;
164 wxCHECK_MSG( !IsStandard(), s
,
165 wxT("name of predefined format cannot be retrieved") );
167 int len
= ::GetClipboardFormatName(m_format
, s
.GetWriteBuf(max
), max
);
172 wxLogError(_("The clipboard format '%d' doesn't exist."), m_format
);
178 // ----------------------------------------------------------------------------
180 // ----------------------------------------------------------------------------
182 BEGIN_IID_TABLE(wxIEnumFORMATETC
)
184 ADD_IID(EnumFORMATETC
)
187 IMPLEMENT_IUNKNOWN_METHODS(wxIEnumFORMATETC
)
189 wxIEnumFORMATETC::wxIEnumFORMATETC(const wxDataFormat
*formats
, ULONG nCount
)
194 m_formats
= new CLIPFORMAT
[nCount
];
195 for ( ULONG n
= 0; n
< nCount
; n
++ ) {
196 m_formats
[n
] = formats
[n
].GetFormatId();
200 STDMETHODIMP
wxIEnumFORMATETC::Next(ULONG celt
,
204 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIEnumFORMATETC::Next"));
207 // we only return 1 element at a time - mainly because I'm too lazy to
208 // implement something which you're never asked for anyhow
212 if ( m_nCurrent
< m_nCount
) {
214 format
.cfFormat
= m_formats
[m_nCurrent
++];
216 format
.dwAspect
= DVASPECT_CONTENT
;
218 format
.tymed
= TYMED_HGLOBAL
;
229 STDMETHODIMP
wxIEnumFORMATETC::Skip(ULONG celt
)
231 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIEnumFORMATETC::Skip"));
234 if ( m_nCurrent
< m_nCount
)
237 // no, can't skip this many elements
243 STDMETHODIMP
wxIEnumFORMATETC::Reset()
245 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIEnumFORMATETC::Reset"));
252 STDMETHODIMP
wxIEnumFORMATETC::Clone(IEnumFORMATETC
**ppenum
)
254 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIEnumFORMATETC::Clone"));
256 // unfortunately, we can't reuse the code in ctor - types are different
257 wxIEnumFORMATETC
*pNew
= new wxIEnumFORMATETC(NULL
, 0);
258 pNew
->m_nCount
= m_nCount
;
259 pNew
->m_formats
= new CLIPFORMAT
[m_nCount
];
260 for ( ULONG n
= 0; n
< m_nCount
; n
++ ) {
261 pNew
->m_formats
[n
] = m_formats
[n
];
269 // ----------------------------------------------------------------------------
271 // ----------------------------------------------------------------------------
273 BEGIN_IID_TABLE(wxIDataObject
)
278 IMPLEMENT_IUNKNOWN_METHODS(wxIDataObject
)
280 wxIDataObject::wxIDataObject(wxDataObject
*pDataObject
)
283 m_pDataObject
= pDataObject
;
284 m_mustDelete
= FALSE
;
287 wxIDataObject::~wxIDataObject()
291 delete m_pDataObject
;
295 // get data functions
296 STDMETHODIMP
wxIDataObject::GetData(FORMATETC
*pformatetcIn
, STGMEDIUM
*pmedium
)
298 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIDataObject::GetData"));
300 // is data is in our format?
301 HRESULT hr
= QueryGetData(pformatetcIn
);
305 // for the bitmaps and metafiles we use the handles instead of global memory
307 wxDataFormat format
= (wxDataFormatId
)pformatetcIn
->cfFormat
;
312 pmedium
->tymed
= TYMED_GDI
;
316 pmedium
->tymed
= TYMED_MFPICT
;
321 size_t size
= m_pDataObject
->GetDataSize(format
);
323 // it probably means that the method is just not implemented
324 wxLogDebug(wxT("Invalid data size - can't be 0"));
326 return DV_E_FORMATETC
;
329 if ( !format
.IsStandard() ) {
330 // for custom formats, put the size with the data - alloc the
332 size
+= sizeof(size_t);
335 HGLOBAL hGlobal
= GlobalAlloc(GMEM_MOVEABLE
| GMEM_SHARE
, size
);
336 if ( hGlobal
== NULL
) {
337 wxLogLastError("GlobalAlloc");
338 return E_OUTOFMEMORY
;
342 pmedium
->tymed
= TYMED_HGLOBAL
;
343 pmedium
->hGlobal
= hGlobal
;
346 pmedium
->pUnkForRelease
= NULL
;
349 hr
= GetDataHere(pformatetcIn
, pmedium
);
351 // free resources we allocated
352 if ( pmedium
->tymed
== TYMED_HGLOBAL
) {
353 GlobalFree(pmedium
->hGlobal
);
362 STDMETHODIMP
wxIDataObject::GetDataHere(FORMATETC
*pformatetc
,
365 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIDataObject::GetDataHere"));
367 // put data in caller provided medium
368 switch ( pmedium
->tymed
)
371 if ( !m_pDataObject
->GetDataHere(wxDF_BITMAP
, &pmedium
->hBitmap
) )
376 // this should be copied on bitmaps - but I don't have time for
378 wxFAIL_MSG(wxT("TODO - no support for metafiles in wxDataObject"));
384 HGLOBAL hGlobal
= pmedium
->hGlobal
;
385 void *pBuf
= GlobalLock(hGlobal
);
386 if ( pBuf
== NULL
) {
387 wxLogLastError(wxT("GlobalLock"));
388 return E_OUTOFMEMORY
;
391 if ( !wxDataFormat(pformatetc
->cfFormat
).IsStandard() ) {
392 // for custom formats, put the size with the data
393 size_t *p
= (size_t *)pBuf
;
394 *p
++ = GlobalSize(hGlobal
);
398 wxDataFormat format
= pformatetc
->cfFormat
;
399 if ( !m_pDataObject
->GetDataHere(format
, pBuf
) )
402 GlobalUnlock(hGlobal
);
413 // set data functions
414 STDMETHODIMP
wxIDataObject::SetData(FORMATETC
*pformatetc
,
418 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIDataObject::SetData"));
420 switch ( pmedium
->tymed
)
423 m_pDataObject
->SetData(wxDF_BITMAP
, 0, &pmedium
->hBitmap
);
427 // this should be copied on bitmaps - but I don't have time for
429 wxFAIL_MSG(wxT("TODO - no support for metafiles in wxDataObject"));
435 void *pBuf
= GlobalLock(pmedium
->hGlobal
);
436 if ( pBuf
== NULL
) {
437 wxLogLastError("GlobalLock");
439 return E_OUTOFMEMORY
;
442 // we've got a problem with SetData() here because the base
443 // class version requires the size parameter which we don't
444 // have anywhere in OLE data transfer - so we need to
445 // synthetise it for known formats and we suppose that all data
446 // in custom formats starts with a DWORD containing the size
448 switch ( pformatetc
->cfFormat
)
452 size
= strlen((const char *)pBuf
);
456 size
= wcslen((const wchar_t *)pBuf
);
461 // these formats don't use size at all, anyhow (but
462 // pass data by handle, which is always a single DWORD)
468 // we suppose that the size precedes the data
469 size_t *p
= (size_t *)pBuf
;
475 wxDataFormat format
= pformatetc
->cfFormat
;
476 bool ok
= m_pDataObject
->SetData(format
, size
, pBuf
);
478 GlobalUnlock(pmedium
->hGlobal
);
491 // we own the medium, so we must release it - but do *not* free the
492 // bitmap handle fi we have it because we have copied it elsewhere
493 if ( pmedium
->tymed
== TYMED_GDI
)
495 pmedium
->hBitmap
= 0;
498 ReleaseStgMedium(pmedium
);
504 // information functions
505 STDMETHODIMP
wxIDataObject::QueryGetData(FORMATETC
*pformatetc
)
507 // do we accept data in this format?
508 if ( pformatetc
== NULL
) {
509 wxLogTrace(wxTRACE_OleCalls
,
510 wxT("wxIDataObject::QueryGetData: invalid ptr."));
515 // the only one allowed by current COM implementation
516 if ( pformatetc
->lindex
!= -1 ) {
517 wxLogTrace(wxTRACE_OleCalls
,
518 wxT("wxIDataObject::QueryGetData: bad lindex %d"),
524 // we don't support anything other (THUMBNAIL, ICON, DOCPRINT...)
525 if ( pformatetc
->dwAspect
!= DVASPECT_CONTENT
) {
526 wxLogTrace(wxTRACE_OleCalls
,
527 wxT("wxIDataObject::QueryGetData: bad dwAspect %d"),
528 pformatetc
->dwAspect
);
530 return DV_E_DVASPECT
;
533 // and now check the type of data requested
534 wxDataFormat format
= pformatetc
->cfFormat
;
535 if ( m_pDataObject
->IsSupportedFormat(format
) ) {
536 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIDataObject::QueryGetData: %s ok"),
537 wxGetFormatName(format
));
540 wxLogTrace(wxTRACE_OleCalls
,
541 wxT("wxIDataObject::QueryGetData: %s unsupported"),
542 wxGetFormatName(format
));
544 return DV_E_FORMATETC
;
547 // we only transfer data by global memory, except for some particular cases
548 DWORD tymed
= pformatetc
->tymed
;
549 if ( (format
== wxDF_BITMAP
&& !(tymed
& TYMED_GDI
)) &&
550 !(tymed
& TYMED_HGLOBAL
) ) {
551 // it's not what we're waiting for
552 wxLogTrace(wxTRACE_OleCalls
,
553 wxT("wxIDataObject::QueryGetData: %s != %s"),
555 GetTymedName(format
== wxDF_BITMAP
? TYMED_GDI
564 STDMETHODIMP
wxIDataObject::GetCanonicalFormatEtc(FORMATETC
*pFormatetcIn
,
565 FORMATETC
*pFormatetcOut
)
567 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIDataObject::GetCanonicalFormatEtc"));
569 // TODO we might want something better than this trivial implementation here
570 if ( pFormatetcOut
!= NULL
)
571 pFormatetcOut
->ptd
= NULL
;
573 return DATA_S_SAMEFORMATETC
;
576 STDMETHODIMP
wxIDataObject::EnumFormatEtc(DWORD dwDir
,
577 IEnumFORMATETC
**ppenumFormatEtc
)
579 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIDataObject::EnumFormatEtc"));
581 wxDataObject::Direction dir
= dwDir
== DATADIR_GET
? wxDataObject::Get
584 size_t nFormatCount
= m_pDataObject
->GetFormatCount(dir
);
585 wxDataFormat format
, *formats
;
586 formats
= nFormatCount
== 1 ? &format
: new wxDataFormat
[nFormatCount
];
587 m_pDataObject
->GetAllFormats(formats
, dir
);
589 wxIEnumFORMATETC
*pEnum
= new wxIEnumFORMATETC(formats
, nFormatCount
);
591 *ppenumFormatEtc
= pEnum
;
593 if ( formats
!= &format
) {
600 // ----------------------------------------------------------------------------
601 // advise sink functions (not implemented)
602 // ----------------------------------------------------------------------------
604 STDMETHODIMP
wxIDataObject::DAdvise(FORMATETC
*pformatetc
,
606 IAdviseSink
*pAdvSink
,
607 DWORD
*pdwConnection
)
609 return OLE_E_ADVISENOTSUPPORTED
;
612 STDMETHODIMP
wxIDataObject::DUnadvise(DWORD dwConnection
)
614 return OLE_E_ADVISENOTSUPPORTED
;
617 STDMETHODIMP
wxIDataObject::EnumDAdvise(IEnumSTATDATA
**ppenumAdvise
)
619 return OLE_E_ADVISENOTSUPPORTED
;
622 // ----------------------------------------------------------------------------
624 // ----------------------------------------------------------------------------
626 wxDataObject::wxDataObject()
628 m_pIDataObject
= new wxIDataObject(this);
629 m_pIDataObject
->AddRef();
632 wxDataObject::~wxDataObject()
634 ReleaseInterface(m_pIDataObject
);
637 void wxDataObject::SetAutoDelete()
639 ((wxIDataObject
*)m_pIDataObject
)->SetDeleteFlag();
640 m_pIDataObject
->Release();
642 // so that the dtor doesnt' crash
643 m_pIDataObject
= NULL
;
646 bool wxDataObject::IsSupportedFormat(const wxDataFormat
& format
) const
648 size_t nFormatCount
= GetFormatCount();
649 if ( nFormatCount
== 1 ) {
650 return format
== GetPreferredFormat();
653 wxDataFormat
*formats
= new wxDataFormat
[nFormatCount
];
654 GetAllFormats(formats
);
657 for ( n
= 0; n
< nFormatCount
; n
++ ) {
658 if ( formats
[n
] == format
)
665 return n
< nFormatCount
;
671 const char *wxDataObject::GetFormatName(wxDataFormat format
)
673 // case 'xxx' is not a valid value for switch of enum 'wxDataFormat'
675 #pragma warning(disable:4063)
678 static char s_szBuf
[128];
680 case CF_TEXT
: return "CF_TEXT";
681 case CF_BITMAP
: return "CF_BITMAP";
682 case CF_METAFILEPICT
: return "CF_METAFILEPICT";
683 case CF_SYLK
: return "CF_SYLK";
684 case CF_DIF
: return "CF_DIF";
685 case CF_TIFF
: return "CF_TIFF";
686 case CF_OEMTEXT
: return "CF_OEMTEXT";
687 case CF_DIB
: return "CF_DIB";
688 case CF_PALETTE
: return "CF_PALETTE";
689 case CF_PENDATA
: return "CF_PENDATA";
690 case CF_RIFF
: return "CF_RIFF";
691 case CF_WAVE
: return "CF_WAVE";
692 case CF_UNICODETEXT
: return "CF_UNICODETEXT";
693 case CF_ENHMETAFILE
: return "CF_ENHMETAFILE";
694 case CF_HDROP
: return "CF_HDROP";
695 case CF_LOCALE
: return "CF_LOCALE";
697 sprintf(s_szBuf
, "clipboard format 0x%x (unknown)", format
);
702 #pragma warning(default:4063)
708 // ----------------------------------------------------------------------------
709 // wxBitmapDataObject supports CF_DIB format
710 // ----------------------------------------------------------------------------
712 size_t wxBitmapDataObject::GetDataSize() const
714 return wxConvertBitmapToDIB(NULL
, GetBitmap());
717 bool wxBitmapDataObject::GetDataHere(void *buf
) const
719 return wxConvertBitmapToDIB((BITMAPINFO
*)buf
, GetBitmap()) != 0;
722 bool wxBitmapDataObject::SetData(size_t len
, const void *buf
)
724 wxBitmap
bitmap(wxConvertDIBToBitmap((const BITMAPINFO
*)buf
));
726 if ( !bitmap
.Ok() ) {
727 wxFAIL_MSG(wxT("pasting/dropping invalid bitmap"));
737 // ----------------------------------------------------------------------------
738 // wxBitmapDataObject2 supports CF_BITMAP format
739 // ----------------------------------------------------------------------------
741 // the bitmaps aren't passed by value as other types of data (i.e. by copying
742 // the data into a global memory chunk and passing it to the clipboard or
743 // another application or whatever), but by handle, so these generic functions
744 // don't make much sense to them.
746 size_t wxBitmapDataObject2::GetDataSize() const
751 bool wxBitmapDataObject2::GetDataHere(void *pBuf
) const
753 // we put a bitmap handle into pBuf
754 *(WXHBITMAP
*)pBuf
= GetBitmap().GetHBITMAP();
759 bool wxBitmapDataObject2::SetData(size_t len
, const void *pBuf
)
761 HBITMAP hbmp
= *(HBITMAP
*)pBuf
;
764 if ( !GetObject(hbmp
, sizeof(BITMAP
), &bmp
) )
766 wxLogLastError("GetObject(HBITMAP)");
769 wxBitmap
bitmap(bmp
.bmWidth
, bmp
.bmHeight
, bmp
.bmPlanes
);
770 bitmap
.SetHBITMAP((WXHBITMAP
)hbmp
);
772 if ( !bitmap
.Ok() ) {
773 wxFAIL_MSG(wxT("pasting/dropping invalid bitmap"));
785 size_t wxBitmapDataObject::GetDataSize(const wxDataFormat
& format
) const
787 if ( format
.GetFormatId() == CF_DIB
)
792 // shouldn't be selected into a DC or GetDIBits() would fail
793 wxASSERT_MSG( !m_bitmap
.GetSelectedInto(),
794 wxT("can't copy bitmap selected into wxMemoryDC") );
796 // first get the info
798 if ( !GetDIBits(hdc
, (HBITMAP
)m_bitmap
.GetHBITMAP(), 0, 0,
799 NULL
, &bi
, DIB_RGB_COLORS
) )
801 wxLogLastError("GetDIBits(NULL)");
806 return sizeof(BITMAPINFO
) + bi
.bmiHeader
.biSizeImage
;
810 // no data to copy - we don't pass HBITMAP via global memory
815 bool wxBitmapDataObject::GetDataHere(const wxDataFormat
& format
,
818 wxASSERT_MSG( m_bitmap
.Ok(), wxT("copying invalid bitmap") );
820 HBITMAP hbmp
= (HBITMAP
)m_bitmap
.GetHBITMAP();
821 if ( format
.GetFormatId() == CF_DIB
)
826 // shouldn't be selected into a DC or GetDIBits() would fail
827 wxASSERT_MSG( !m_bitmap
.GetSelectedInto(),
828 wxT("can't copy bitmap selected into wxMemoryDC") );
830 // first get the info
831 BITMAPINFO
*pbi
= (BITMAPINFO
*)pBuf
;
832 if ( !GetDIBits(hdc
, hbmp
, 0, 0, NULL
, pbi
, DIB_RGB_COLORS
) )
834 wxLogLastError("GetDIBits(NULL)");
839 // and now copy the bits
840 if ( !GetDIBits(hdc
, hbmp
, 0, pbi
->bmiHeader
.biHeight
, pbi
+ 1,
841 pbi
, DIB_RGB_COLORS
) )
843 wxLogLastError("GetDIBits");
850 // we put a bitmap handle into pBuf
851 *(HBITMAP
*)pBuf
= hbmp
;
857 bool wxBitmapDataObject::SetData(const wxDataFormat
& format
,
858 size_t size
, const void *pBuf
)
861 if ( format
.GetFormatId() == CF_DIB
)
863 // here we get BITMAPINFO struct followed by the actual bitmap bits and
864 // BITMAPINFO starts with BITMAPINFOHEADER followed by colour info
867 BITMAPINFO
*pbmi
= (BITMAPINFO
*)pBuf
;
868 BITMAPINFOHEADER
*pbmih
= &pbmi
->bmiHeader
;
869 hbmp
= CreateDIBitmap(hdc
, pbmih
, CBM_INIT
,
870 pbmi
+ 1, pbmi
, DIB_RGB_COLORS
);
873 wxLogLastError("CreateDIBitmap");
876 m_bitmap
.SetWidth(pbmih
->biWidth
);
877 m_bitmap
.SetHeight(pbmih
->biHeight
);
881 // it's easy with bitmaps: we pass them by handle
882 hbmp
= *(HBITMAP
*)pBuf
;
885 if ( !GetObject(hbmp
, sizeof(BITMAP
), &bmp
) )
887 wxLogLastError("GetObject(HBITMAP)");
890 m_bitmap
.SetWidth(bmp
.bmWidth
);
891 m_bitmap
.SetHeight(bmp
.bmHeight
);
892 m_bitmap
.SetDepth(bmp
.bmPlanes
);
895 m_bitmap
.SetHBITMAP((WXHBITMAP
)hbmp
);
897 wxASSERT_MSG( m_bitmap
.Ok(), wxT("pasting invalid bitmap") );
904 // ----------------------------------------------------------------------------
906 // ----------------------------------------------------------------------------
908 bool wxFileDataObject::SetData(size_t WXUNUSED(size
), const void *pData
)
912 // the documentation states that the first member of DROPFILES structure is
913 // a "DWORD offset of double NUL terminated file list". What they mean by
914 // this (I wonder if you see it immediately) is that the list starts at
915 // ((char *)&(pDropFiles.pFiles)) + pDropFiles.pFiles. We're also advised
916 // to use DragQueryFile to work with this structure, but not told where and
918 HDROP hdrop
= (HDROP
)pData
; // NB: it works, but I'm not sure about it
920 // get number of files (magic value -1)
921 UINT nFiles
= ::DragQueryFile(hdrop
, (unsigned)-1, NULL
, 0u);
923 // for each file get the length, allocate memory and then get the name
926 for ( n
= 0; n
< nFiles
; n
++ ) {
927 // +1 for terminating NUL
928 len
= ::DragQueryFile(hdrop
, n
, NULL
, 0) + 1;
930 UINT len2
= ::DragQueryFile(hdrop
, n
, str
.GetWriteBuf(len
), len
);
932 m_filenames
.Add(str
);
934 if ( len2
!= len
- 1 ) {
935 wxLogDebug(wxT("In wxFileDropTarget::OnDrop DragQueryFile returned"
936 " %d characters, %d expected."), len2
, len
- 1);
943 // ----------------------------------------------------------------------------
945 // ----------------------------------------------------------------------------
947 // otherwise VC++ would give here:
948 // "local variable 'bi' may be used without having been initialized"
949 // even though in fact it may not
951 #pragma warning(disable:4701)
952 #endif // __VISUALC__
954 size_t wxConvertBitmapToDIB(BITMAPINFO
*pbi
, const wxBitmap
& bitmap
)
956 // shouldn't be selected into a DC or GetDIBits() would fail
957 wxASSERT_MSG( !bitmap
.GetSelectedInto(),
958 wxT("can't copy bitmap selected into wxMemoryDC") );
960 HBITMAP hbmp
= (HBITMAP
)bitmap
.GetHBITMAP();
964 // first get the info
966 if ( !GetDIBits(hdc
, hbmp
, 0, 0, NULL
, pbi
? pbi
: &bi
, DIB_RGB_COLORS
) )
968 wxLogLastError("GetDIBits(NULL)");
975 // we were only asked for size needed for the buffer, not to actually
977 return sizeof(BITMAPINFO
) + bi
.bmiHeader
.biSizeImage
;
980 // and now copy the bits
981 if ( !GetDIBits(hdc
, hbmp
, 0, pbi
->bmiHeader
.biHeight
, pbi
+ 1,
982 pbi
, DIB_RGB_COLORS
) )
984 wxLogLastError("GetDIBits");
989 return sizeof(BITMAPINFO
) + pbi
->bmiHeader
.biSizeImage
;
993 #pragma warning(default:4701)
994 #endif // __VISUALC__
996 wxBitmap
wxConvertDIBToBitmap(const BITMAPINFO
*pbmi
)
998 // here we get BITMAPINFO struct followed by the actual bitmap bits and
999 // BITMAPINFO starts with BITMAPINFOHEADER followed by colour info
1000 const BITMAPINFOHEADER
*pbmih
= &pbmi
->bmiHeader
;
1003 HBITMAP hbmp
= CreateDIBitmap(hdc
, pbmih
, CBM_INIT
,
1004 pbmi
+ 1, pbmi
, DIB_RGB_COLORS
);
1007 wxLogLastError("CreateDIBitmap");
1010 wxBitmap
bitmap(pbmih
->biWidth
, pbmih
->biHeight
, pbmih
->biBitCount
);
1011 bitmap
.SetHBITMAP((WXHBITMAP
)hbmp
);
1018 static const wxChar
*GetTymedName(DWORD tymed
)
1020 static wxChar s_szBuf
[128];
1022 case TYMED_HGLOBAL
: return wxT("TYMED_HGLOBAL");
1023 case TYMED_FILE
: return wxT("TYMED_FILE");
1024 case TYMED_ISTREAM
: return wxT("TYMED_ISTREAM");
1025 case TYMED_ISTORAGE
: return wxT("TYMED_ISTORAGE");
1026 case TYMED_GDI
: return wxT("TYMED_GDI");
1027 case TYMED_MFPICT
: return wxT("TYMED_MFPICT");
1028 case TYMED_ENHMF
: return wxT("TYMED_ENHMF");
1030 wxSprintf(s_szBuf
, wxT("type of media format %d (unknown)"), tymed
);
1037 #endif // not using OLE at all