]>
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
53 #include "wx/msw/ole/oleutils.h"
55 // ----------------------------------------------------------------------------
57 // ----------------------------------------------------------------------------
60 static const wxChar
*GetTymedName(DWORD tymed
);
62 #define GetTymedName(tymed) ""
63 #endif // Debug/!Debug
65 // to be moved into wx/msw/bitmap.h
66 extern size_t wxConvertBitmapToDIB(BITMAPINFO
*pbi
, const wxBitmap
& bitmap
);
67 extern wxBitmap
wxConvertDIBToBitmap(const BITMAPINFO
*bmi
);
69 // ----------------------------------------------------------------------------
70 // wxIEnumFORMATETC interface implementation
71 // ----------------------------------------------------------------------------
73 class wxIEnumFORMATETC
: public IEnumFORMATETC
76 wxIEnumFORMATETC(const wxDataFormat
* formats
, ULONG nCount
);
77 ~wxIEnumFORMATETC() { delete [] m_formats
; }
79 DECLARE_IUNKNOWN_METHODS
;
82 STDMETHODIMP
Next(ULONG celt
, FORMATETC
*rgelt
, ULONG
*pceltFetched
);
83 STDMETHODIMP
Skip(ULONG celt
);
85 STDMETHODIMP
Clone(IEnumFORMATETC
**ppenum
);
88 CLIPFORMAT
*m_formats
; // formats we can provide data in
89 ULONG m_nCount
, // number of formats we support
90 m_nCurrent
; // current enum position
93 // ----------------------------------------------------------------------------
94 // wxIDataObject implementation of IDataObject interface
95 // ----------------------------------------------------------------------------
97 class wxIDataObject
: public IDataObject
100 wxIDataObject(wxDataObject
*pDataObject
);
103 // normally, wxDataObject controls our lifetime (i.e. we're deleted when it
104 // is), but in some cases, the situation is inversed, that is we delete it
105 // when this object is deleted - setting this flag enables such logic
106 void SetDeleteFlag() { m_mustDelete
= TRUE
; }
108 DECLARE_IUNKNOWN_METHODS
;
111 STDMETHODIMP
GetData(FORMATETC
*pformatetcIn
, STGMEDIUM
*pmedium
);
112 STDMETHODIMP
GetDataHere(FORMATETC
*pformatetc
, STGMEDIUM
*pmedium
);
113 STDMETHODIMP
QueryGetData(FORMATETC
*pformatetc
);
114 STDMETHODIMP
GetCanonicalFormatEtc(FORMATETC
*In
, FORMATETC
*pOut
);
115 STDMETHODIMP
SetData(FORMATETC
*pfetc
, STGMEDIUM
*pmedium
, BOOL fRelease
);
116 STDMETHODIMP
EnumFormatEtc(DWORD dwDirection
, IEnumFORMATETC
**ppenumFEtc
);
117 STDMETHODIMP
DAdvise(FORMATETC
*pfetc
, DWORD ad
, IAdviseSink
*p
, DWORD
*pdw
);
118 STDMETHODIMP
DUnadvise(DWORD dwConnection
);
119 STDMETHODIMP
EnumDAdvise(IEnumSTATDATA
**ppenumAdvise
);
122 wxDataObject
*m_pDataObject
; // pointer to C++ class we belong to
127 // ----------------------------------------------------------------------------
128 // small helper class for getting screen DC (we're working with bitmaps and
130 // ----------------------------------------------------------------------------
135 ScreenHDC() { m_hdc
= GetDC(NULL
); }
136 ~ScreenHDC() { ReleaseDC(NULL
, m_hdc
); }
137 operator HDC() const { return m_hdc
; }
143 // ============================================================================
145 // ============================================================================
147 // ----------------------------------------------------------------------------
149 // ----------------------------------------------------------------------------
151 void wxDataFormat::SetId(const wxChar
*format
)
153 m_format
= ::RegisterClipboardFormat(format
);
156 wxLogError(_("Couldn't register clipboard format '%s'."), format
);
160 wxString
wxDataFormat::GetId() const
162 static const int max
= 256;
166 wxCHECK_MSG( !IsStandard(), s
,
167 wxT("name of predefined format cannot be retrieved") );
169 int len
= ::GetClipboardFormatName(m_format
, s
.GetWriteBuf(max
), max
);
174 wxLogError(_("The clipboard format '%d' doesn't exist."), m_format
);
180 // ----------------------------------------------------------------------------
182 // ----------------------------------------------------------------------------
184 BEGIN_IID_TABLE(wxIEnumFORMATETC
)
186 ADD_IID(EnumFORMATETC
)
189 IMPLEMENT_IUNKNOWN_METHODS(wxIEnumFORMATETC
)
191 wxIEnumFORMATETC::wxIEnumFORMATETC(const wxDataFormat
*formats
, ULONG nCount
)
196 m_formats
= new CLIPFORMAT
[nCount
];
197 for ( ULONG n
= 0; n
< nCount
; n
++ ) {
198 m_formats
[n
] = formats
[n
].GetFormatId();
202 STDMETHODIMP
wxIEnumFORMATETC::Next(ULONG celt
,
206 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIEnumFORMATETC::Next"));
209 // we only return 1 element at a time - mainly because I'm too lazy to
210 // implement something which you're never asked for anyhow
214 if ( m_nCurrent
< m_nCount
) {
216 format
.cfFormat
= m_formats
[m_nCurrent
++];
218 format
.dwAspect
= DVASPECT_CONTENT
;
220 format
.tymed
= TYMED_HGLOBAL
;
231 STDMETHODIMP
wxIEnumFORMATETC::Skip(ULONG celt
)
233 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIEnumFORMATETC::Skip"));
236 if ( m_nCurrent
< m_nCount
)
239 // no, can't skip this many elements
245 STDMETHODIMP
wxIEnumFORMATETC::Reset()
247 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIEnumFORMATETC::Reset"));
254 STDMETHODIMP
wxIEnumFORMATETC::Clone(IEnumFORMATETC
**ppenum
)
256 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIEnumFORMATETC::Clone"));
258 // unfortunately, we can't reuse the code in ctor - types are different
259 wxIEnumFORMATETC
*pNew
= new wxIEnumFORMATETC(NULL
, 0);
260 pNew
->m_nCount
= m_nCount
;
261 pNew
->m_formats
= new CLIPFORMAT
[m_nCount
];
262 for ( ULONG n
= 0; n
< m_nCount
; n
++ ) {
263 pNew
->m_formats
[n
] = m_formats
[n
];
271 // ----------------------------------------------------------------------------
273 // ----------------------------------------------------------------------------
275 BEGIN_IID_TABLE(wxIDataObject
)
280 IMPLEMENT_IUNKNOWN_METHODS(wxIDataObject
)
282 wxIDataObject::wxIDataObject(wxDataObject
*pDataObject
)
285 m_pDataObject
= pDataObject
;
286 m_mustDelete
= FALSE
;
289 wxIDataObject::~wxIDataObject()
293 delete m_pDataObject
;
297 // get data functions
298 STDMETHODIMP
wxIDataObject::GetData(FORMATETC
*pformatetcIn
, STGMEDIUM
*pmedium
)
300 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIDataObject::GetData"));
302 // is data is in our format?
303 HRESULT hr
= QueryGetData(pformatetcIn
);
307 // for the bitmaps and metafiles we use the handles instead of global memory
309 wxDataFormat format
= (wxDataFormatId
)pformatetcIn
->cfFormat
;
314 pmedium
->tymed
= TYMED_GDI
;
318 pmedium
->tymed
= TYMED_MFPICT
;
323 size_t size
= m_pDataObject
->GetDataSize(format
);
325 // it probably means that the method is just not implemented
326 wxLogDebug(wxT("Invalid data size - can't be 0"));
328 return DV_E_FORMATETC
;
331 if ( !format
.IsStandard() ) {
332 // for custom formats, put the size with the data - alloc the
334 size
+= sizeof(size_t);
337 HGLOBAL hGlobal
= GlobalAlloc(GMEM_MOVEABLE
| GMEM_SHARE
, size
);
338 if ( hGlobal
== NULL
) {
339 wxLogLastError("GlobalAlloc");
340 return E_OUTOFMEMORY
;
344 pmedium
->tymed
= TYMED_HGLOBAL
;
345 pmedium
->hGlobal
= hGlobal
;
348 pmedium
->pUnkForRelease
= NULL
;
351 hr
= GetDataHere(pformatetcIn
, pmedium
);
353 // free resources we allocated
354 if ( pmedium
->tymed
== TYMED_HGLOBAL
) {
355 GlobalFree(pmedium
->hGlobal
);
364 STDMETHODIMP
wxIDataObject::GetDataHere(FORMATETC
*pformatetc
,
367 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIDataObject::GetDataHere"));
369 // put data in caller provided medium
370 switch ( pmedium
->tymed
)
373 if ( !m_pDataObject
->GetDataHere(wxDF_BITMAP
, &pmedium
->hBitmap
) )
378 // this should be copied on bitmaps - but I don't have time for
380 wxFAIL_MSG(wxT("TODO - no support for metafiles in wxDataObject"));
386 HGLOBAL hGlobal
= pmedium
->hGlobal
;
387 void *pBuf
= GlobalLock(hGlobal
);
388 if ( pBuf
== NULL
) {
389 wxLogLastError(wxT("GlobalLock"));
390 return E_OUTOFMEMORY
;
393 if ( !wxDataFormat(pformatetc
->cfFormat
).IsStandard() ) {
394 // for custom formats, put the size with the data
395 size_t *p
= (size_t *)pBuf
;
396 *p
++ = GlobalSize(hGlobal
);
400 wxDataFormat format
= pformatetc
->cfFormat
;
401 if ( !m_pDataObject
->GetDataHere(format
, pBuf
) )
404 GlobalUnlock(hGlobal
);
415 // set data functions
416 STDMETHODIMP
wxIDataObject::SetData(FORMATETC
*pformatetc
,
420 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIDataObject::SetData"));
422 switch ( pmedium
->tymed
)
425 m_pDataObject
->SetData(wxDF_BITMAP
, 0, &pmedium
->hBitmap
);
429 // this should be copied on bitmaps - but I don't have time for
431 wxFAIL_MSG(wxT("TODO - no support for metafiles in wxDataObject"));
436 wxDataFormat format
= pformatetc
->cfFormat
;
438 // this is quite weird, but for file drag and drop, explorer
439 // calls our SetData() with the formats we do *not* support!
441 // as we can't fix this bug in explorer (it's a bug because it
442 // should only use formats returned by EnumFormatEtc), do the
444 if ( !m_pDataObject
->IsSupportedFormat(format
) ) {
446 return DV_E_FORMATETC
;
450 void *pBuf
= GlobalLock(pmedium
->hGlobal
);
451 if ( pBuf
== NULL
) {
452 wxLogLastError("GlobalLock");
454 return E_OUTOFMEMORY
;
457 // we've got a problem with SetData() here because the base
458 // class version requires the size parameter which we don't
459 // have anywhere in OLE data transfer - so we need to
460 // synthetise it for known formats and we suppose that all data
461 // in custom formats starts with a DWORD containing the size
467 size
= strlen((const char *)pBuf
);
471 size
= wcslen((const wchar_t *)pBuf
);
476 // these formats don't use size at all, anyhow (but
477 // pass data by handle, which is always a single DWORD)
482 // the handler will calculate size itself (it's too
483 // complicated to do it here)
489 // we suppose that the size precedes the data
490 size_t *p
= (size_t *)pBuf
;
496 bool ok
= m_pDataObject
->SetData(format
, size
, pBuf
);
498 GlobalUnlock(pmedium
->hGlobal
);
511 // we own the medium, so we must release it - but do *not* free the
512 // bitmap handle fi we have it because we have copied it elsewhere
513 if ( pmedium
->tymed
== TYMED_GDI
)
515 pmedium
->hBitmap
= 0;
518 ReleaseStgMedium(pmedium
);
524 // information functions
525 STDMETHODIMP
wxIDataObject::QueryGetData(FORMATETC
*pformatetc
)
527 // do we accept data in this format?
528 if ( pformatetc
== NULL
) {
529 wxLogTrace(wxTRACE_OleCalls
,
530 wxT("wxIDataObject::QueryGetData: invalid ptr."));
535 // the only one allowed by current COM implementation
536 if ( pformatetc
->lindex
!= -1 ) {
537 wxLogTrace(wxTRACE_OleCalls
,
538 wxT("wxIDataObject::QueryGetData: bad lindex %d"),
544 // we don't support anything other (THUMBNAIL, ICON, DOCPRINT...)
545 if ( pformatetc
->dwAspect
!= DVASPECT_CONTENT
) {
546 wxLogTrace(wxTRACE_OleCalls
,
547 wxT("wxIDataObject::QueryGetData: bad dwAspect %d"),
548 pformatetc
->dwAspect
);
550 return DV_E_DVASPECT
;
553 // and now check the type of data requested
554 wxDataFormat format
= pformatetc
->cfFormat
;
555 if ( m_pDataObject
->IsSupportedFormat(format
) ) {
556 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIDataObject::QueryGetData: %s ok"),
557 wxGetFormatName(format
));
560 wxLogTrace(wxTRACE_OleCalls
,
561 wxT("wxIDataObject::QueryGetData: %s unsupported"),
562 wxGetFormatName(format
));
564 return DV_E_FORMATETC
;
567 // we only transfer data by global memory, except for some particular cases
568 DWORD tymed
= pformatetc
->tymed
;
569 if ( (format
== wxDF_BITMAP
&& !(tymed
& TYMED_GDI
)) &&
570 !(tymed
& TYMED_HGLOBAL
) ) {
571 // it's not what we're waiting for
572 wxLogTrace(wxTRACE_OleCalls
,
573 wxT("wxIDataObject::QueryGetData: %s != %s"),
575 GetTymedName(format
== wxDF_BITMAP
? TYMED_GDI
584 STDMETHODIMP
wxIDataObject::GetCanonicalFormatEtc(FORMATETC
*pFormatetcIn
,
585 FORMATETC
*pFormatetcOut
)
587 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIDataObject::GetCanonicalFormatEtc"));
589 // TODO we might want something better than this trivial implementation here
590 if ( pFormatetcOut
!= NULL
)
591 pFormatetcOut
->ptd
= NULL
;
593 return DATA_S_SAMEFORMATETC
;
596 STDMETHODIMP
wxIDataObject::EnumFormatEtc(DWORD dwDir
,
597 IEnumFORMATETC
**ppenumFormatEtc
)
599 wxLogTrace(wxTRACE_OleCalls
, wxT("wxIDataObject::EnumFormatEtc"));
601 wxDataObject::Direction dir
= dwDir
== DATADIR_GET
? wxDataObject::Get
604 size_t nFormatCount
= m_pDataObject
->GetFormatCount(dir
);
605 wxDataFormat format
, *formats
;
606 formats
= nFormatCount
== 1 ? &format
: new wxDataFormat
[nFormatCount
];
607 m_pDataObject
->GetAllFormats(formats
, dir
);
609 wxIEnumFORMATETC
*pEnum
= new wxIEnumFORMATETC(formats
, nFormatCount
);
611 *ppenumFormatEtc
= pEnum
;
613 if ( formats
!= &format
) {
620 // ----------------------------------------------------------------------------
621 // advise sink functions (not implemented)
622 // ----------------------------------------------------------------------------
624 STDMETHODIMP
wxIDataObject::DAdvise(FORMATETC
*pformatetc
,
626 IAdviseSink
*pAdvSink
,
627 DWORD
*pdwConnection
)
629 return OLE_E_ADVISENOTSUPPORTED
;
632 STDMETHODIMP
wxIDataObject::DUnadvise(DWORD dwConnection
)
634 return OLE_E_ADVISENOTSUPPORTED
;
637 STDMETHODIMP
wxIDataObject::EnumDAdvise(IEnumSTATDATA
**ppenumAdvise
)
639 return OLE_E_ADVISENOTSUPPORTED
;
642 // ----------------------------------------------------------------------------
644 // ----------------------------------------------------------------------------
646 wxDataObject::wxDataObject()
648 m_pIDataObject
= new wxIDataObject(this);
649 m_pIDataObject
->AddRef();
652 wxDataObject::~wxDataObject()
654 ReleaseInterface(m_pIDataObject
);
657 void wxDataObject::SetAutoDelete()
659 ((wxIDataObject
*)m_pIDataObject
)->SetDeleteFlag();
660 m_pIDataObject
->Release();
662 // so that the dtor doesnt' crash
663 m_pIDataObject
= NULL
;
666 bool wxDataObject::IsSupportedFormat(const wxDataFormat
& format
) const
668 size_t nFormatCount
= GetFormatCount();
669 if ( nFormatCount
== 1 ) {
670 return format
== GetPreferredFormat();
673 wxDataFormat
*formats
= new wxDataFormat
[nFormatCount
];
674 GetAllFormats(formats
);
677 for ( n
= 0; n
< nFormatCount
; n
++ ) {
678 if ( formats
[n
] == format
)
685 return n
< nFormatCount
;
691 const char *wxDataObject::GetFormatName(wxDataFormat format
)
693 // case 'xxx' is not a valid value for switch of enum 'wxDataFormat'
695 #pragma warning(disable:4063)
698 static char s_szBuf
[128];
700 case CF_TEXT
: return "CF_TEXT";
701 case CF_BITMAP
: return "CF_BITMAP";
702 case CF_METAFILEPICT
: return "CF_METAFILEPICT";
703 case CF_SYLK
: return "CF_SYLK";
704 case CF_DIF
: return "CF_DIF";
705 case CF_TIFF
: return "CF_TIFF";
706 case CF_OEMTEXT
: return "CF_OEMTEXT";
707 case CF_DIB
: return "CF_DIB";
708 case CF_PALETTE
: return "CF_PALETTE";
709 case CF_PENDATA
: return "CF_PENDATA";
710 case CF_RIFF
: return "CF_RIFF";
711 case CF_WAVE
: return "CF_WAVE";
712 case CF_UNICODETEXT
: return "CF_UNICODETEXT";
713 case CF_ENHMETAFILE
: return "CF_ENHMETAFILE";
714 case CF_HDROP
: return "CF_HDROP";
715 case CF_LOCALE
: return "CF_LOCALE";
717 sprintf(s_szBuf
, "clipboard format 0x%x (unknown)", format
);
722 #pragma warning(default:4063)
728 // ----------------------------------------------------------------------------
729 // wxBitmapDataObject supports CF_DIB format
730 // ----------------------------------------------------------------------------
732 size_t wxBitmapDataObject::GetDataSize() const
734 return wxConvertBitmapToDIB(NULL
, GetBitmap());
737 bool wxBitmapDataObject::GetDataHere(void *buf
) const
739 return wxConvertBitmapToDIB((BITMAPINFO
*)buf
, GetBitmap()) != 0;
742 bool wxBitmapDataObject::SetData(size_t len
, const void *buf
)
744 wxBitmap
bitmap(wxConvertDIBToBitmap((const BITMAPINFO
*)buf
));
746 if ( !bitmap
.Ok() ) {
747 wxFAIL_MSG(wxT("pasting/dropping invalid bitmap"));
757 // ----------------------------------------------------------------------------
758 // wxBitmapDataObject2 supports CF_BITMAP format
759 // ----------------------------------------------------------------------------
761 // the bitmaps aren't passed by value as other types of data (i.e. by copying
762 // the data into a global memory chunk and passing it to the clipboard or
763 // another application or whatever), but by handle, so these generic functions
764 // don't make much sense to them.
766 size_t wxBitmapDataObject2::GetDataSize() const
771 bool wxBitmapDataObject2::GetDataHere(void *pBuf
) const
773 // we put a bitmap handle into pBuf
774 *(WXHBITMAP
*)pBuf
= GetBitmap().GetHBITMAP();
779 bool wxBitmapDataObject2::SetData(size_t len
, const void *pBuf
)
781 HBITMAP hbmp
= *(HBITMAP
*)pBuf
;
784 if ( !GetObject(hbmp
, sizeof(BITMAP
), &bmp
) )
786 wxLogLastError("GetObject(HBITMAP)");
789 wxBitmap
bitmap(bmp
.bmWidth
, bmp
.bmHeight
, bmp
.bmPlanes
);
790 bitmap
.SetHBITMAP((WXHBITMAP
)hbmp
);
792 if ( !bitmap
.Ok() ) {
793 wxFAIL_MSG(wxT("pasting/dropping invalid bitmap"));
805 size_t wxBitmapDataObject::GetDataSize(const wxDataFormat
& format
) const
807 if ( format
.GetFormatId() == CF_DIB
)
812 // shouldn't be selected into a DC or GetDIBits() would fail
813 wxASSERT_MSG( !m_bitmap
.GetSelectedInto(),
814 wxT("can't copy bitmap selected into wxMemoryDC") );
816 // first get the info
818 if ( !GetDIBits(hdc
, (HBITMAP
)m_bitmap
.GetHBITMAP(), 0, 0,
819 NULL
, &bi
, DIB_RGB_COLORS
) )
821 wxLogLastError("GetDIBits(NULL)");
826 return sizeof(BITMAPINFO
) + bi
.bmiHeader
.biSizeImage
;
830 // no data to copy - we don't pass HBITMAP via global memory
835 bool wxBitmapDataObject::GetDataHere(const wxDataFormat
& format
,
838 wxASSERT_MSG( m_bitmap
.Ok(), wxT("copying invalid bitmap") );
840 HBITMAP hbmp
= (HBITMAP
)m_bitmap
.GetHBITMAP();
841 if ( format
.GetFormatId() == CF_DIB
)
846 // shouldn't be selected into a DC or GetDIBits() would fail
847 wxASSERT_MSG( !m_bitmap
.GetSelectedInto(),
848 wxT("can't copy bitmap selected into wxMemoryDC") );
850 // first get the info
851 BITMAPINFO
*pbi
= (BITMAPINFO
*)pBuf
;
852 if ( !GetDIBits(hdc
, hbmp
, 0, 0, NULL
, pbi
, DIB_RGB_COLORS
) )
854 wxLogLastError("GetDIBits(NULL)");
859 // and now copy the bits
860 if ( !GetDIBits(hdc
, hbmp
, 0, pbi
->bmiHeader
.biHeight
, pbi
+ 1,
861 pbi
, DIB_RGB_COLORS
) )
863 wxLogLastError("GetDIBits");
870 // we put a bitmap handle into pBuf
871 *(HBITMAP
*)pBuf
= hbmp
;
877 bool wxBitmapDataObject::SetData(const wxDataFormat
& format
,
878 size_t size
, const void *pBuf
)
881 if ( format
.GetFormatId() == CF_DIB
)
883 // here we get BITMAPINFO struct followed by the actual bitmap bits and
884 // BITMAPINFO starts with BITMAPINFOHEADER followed by colour info
887 BITMAPINFO
*pbmi
= (BITMAPINFO
*)pBuf
;
888 BITMAPINFOHEADER
*pbmih
= &pbmi
->bmiHeader
;
889 hbmp
= CreateDIBitmap(hdc
, pbmih
, CBM_INIT
,
890 pbmi
+ 1, pbmi
, DIB_RGB_COLORS
);
893 wxLogLastError("CreateDIBitmap");
896 m_bitmap
.SetWidth(pbmih
->biWidth
);
897 m_bitmap
.SetHeight(pbmih
->biHeight
);
901 // it's easy with bitmaps: we pass them by handle
902 hbmp
= *(HBITMAP
*)pBuf
;
905 if ( !GetObject(hbmp
, sizeof(BITMAP
), &bmp
) )
907 wxLogLastError("GetObject(HBITMAP)");
910 m_bitmap
.SetWidth(bmp
.bmWidth
);
911 m_bitmap
.SetHeight(bmp
.bmHeight
);
912 m_bitmap
.SetDepth(bmp
.bmPlanes
);
915 m_bitmap
.SetHBITMAP((WXHBITMAP
)hbmp
);
917 wxASSERT_MSG( m_bitmap
.Ok(), wxT("pasting invalid bitmap") );
924 // ----------------------------------------------------------------------------
926 // ----------------------------------------------------------------------------
928 bool wxFileDataObject::SetData(size_t WXUNUSED(size
), const void *pData
)
932 // the documentation states that the first member of DROPFILES structure is
933 // a "DWORD offset of double NUL terminated file list". What they mean by
934 // this (I wonder if you see it immediately) is that the list starts at
935 // ((char *)&(pDropFiles.pFiles)) + pDropFiles.pFiles. We're also advised
936 // to use DragQueryFile to work with this structure, but not told where and
938 HDROP hdrop
= (HDROP
)pData
; // NB: it works, but I'm not sure about it
940 // get number of files (magic value -1)
941 UINT nFiles
= ::DragQueryFile(hdrop
, (unsigned)-1, NULL
, 0u);
943 wxCHECK_MSG ( nFiles
!= (UINT
)-1, FALSE
, wxT("wrong HDROP handle") );
945 // for each file get the length, allocate memory and then get the name
948 for ( n
= 0; n
< nFiles
; n
++ ) {
949 // +1 for terminating NUL
950 len
= ::DragQueryFile(hdrop
, n
, NULL
, 0) + 1;
952 UINT len2
= ::DragQueryFile(hdrop
, n
, str
.GetWriteBuf(len
), len
);
954 m_filenames
.Add(str
);
956 if ( len2
!= len
- 1 ) {
957 wxLogDebug(wxT("In wxFileDropTarget::OnDrop DragQueryFile returned"
958 " %d characters, %d expected."), len2
, len
- 1);
965 void wxFileDataObject::AddFile(const wxString
& file
)
967 // just add file to filenames array
968 // all useful data (such as DROPFILES struct) will be
969 // created later as necessary
970 m_filenames
.Add(file
);
973 size_t wxFileDataObject::GetDataSize() const
975 // size returned will be the size of the DROPFILES structure,
976 // plus the list of filesnames (null byte separated), plus
977 // a double null at the end
979 // if no filenames in list, size is 0
980 if ( m_filenames
.GetCount() == 0 )
983 // inital size of DROPFILES struct + null byte
984 size_t sz
= sizeof(DROPFILES
) + 1;
986 size_t count
= m_filenames
.GetCount();
987 for ( size_t i
= 0; i
< count
; i
++ )
989 // add filename length plus null byte
990 sz
+= m_filenames
[i
].Len() + 1;
996 bool wxFileDataObject::GetDataHere(void *pData
) const
998 // pData points to an externally allocated memory block
999 // created using the size returned by GetDataSize()
1001 // if pData is NULL, or there are no files, return
1002 if ( !pData
|| m_filenames
.GetCount() == 0 )
1005 // convert data pointer to a DROPFILES struct pointer
1006 LPDROPFILES pDrop
= (LPDROPFILES
) pData
;
1008 // initialize DROPFILES struct
1009 pDrop
->pFiles
= sizeof(DROPFILES
);
1010 pDrop
->fNC
= FALSE
; // not non-client coords
1012 pDrop
->fWide
= TRUE
;
1014 pDrop
->fWide
= FALSE
;
1015 #endif // Unicode/Ansi
1017 // set start of filenames list (null separated)
1018 wxChar
*pbuf
= (wxChar
*) ((BYTE
*)pDrop
+ sizeof(DROPFILES
));
1020 size_t count
= m_filenames
.GetCount();
1021 for (size_t i
= 0; i
< count
; i
++ )
1023 // copy filename to pbuf and add null terminator
1024 size_t len
= m_filenames
[i
].Len();
1025 memcpy(pbuf
, m_filenames
[i
], len
);
1027 *pbuf
++ = wxT('\0');
1030 *pbuf
= wxT('\0'); // add final null terminator
1035 // ----------------------------------------------------------------------------
1036 // private functions
1037 // ----------------------------------------------------------------------------
1039 static size_t wxGetNumOfBitmapColors(size_t bitsPerPixel
)
1041 switch ( bitsPerPixel
)
1044 // monochrome bitmap, 2 entries
1054 // may be used with 24bit bitmaps, but we don't use it here - fall
1059 // bmiColors not used at all with these bitmaps
1063 wxFAIL_MSG( wxT("unknown bitmap format") );
1068 size_t wxConvertBitmapToDIB(BITMAPINFO
*pbi
, const wxBitmap
& bitmap
)
1070 wxASSERT_MSG( bitmap
.Ok(), wxT("invalid bmp can't be converted to DIB") );
1072 // shouldn't be selected into a DC or GetDIBits() would fail
1073 wxASSERT_MSG( !bitmap
.GetSelectedInto(),
1074 wxT("can't copy bitmap selected into wxMemoryDC") );
1076 // prepare all the info we need
1078 HBITMAP hbmp
= (HBITMAP
)bitmap
.GetHBITMAP();
1079 if ( !GetObject(hbmp
, sizeof(bm
), &bm
) )
1081 wxLogLastError("GetObject(bitmap)");
1086 // calculate the number of bits per pixel and the number of items in
1087 // bmiColors array (whose meaning depends on the bitmap format)
1088 WORD biBits
= bm
.bmPlanes
* bm
.bmBitsPixel
;
1089 WORD biColors
= wxGetNumOfBitmapColors(biBits
);
1093 bool wantSizeOnly
= pbi
== NULL
;
1097 // just for convenience
1098 BITMAPINFOHEADER
& bi
= pbi
->bmiHeader
;
1100 bi
.biSize
= sizeof(BITMAPINFOHEADER
);
1101 bi
.biWidth
= bm
.bmWidth
;
1102 bi
.biHeight
= bm
.bmHeight
;
1104 bi
.biBitCount
= biBits
;
1105 bi
.biCompression
= BI_RGB
;
1107 bi
.biXPelsPerMeter
= 0;
1108 bi
.biYPelsPerMeter
= 0;
1110 bi
.biClrImportant
= 0;
1112 // memory we need for BITMAPINFO only
1113 DWORD dwLen
= bi
.biSize
+ biColors
* sizeof(RGBQUAD
);
1115 // first get the image size
1117 if ( !GetDIBits(hdc
, hbmp
, 0, bi
.biHeight
, NULL
, pbi
, DIB_RGB_COLORS
) )
1119 wxLogLastError("GetDIBits(NULL)");
1126 // size of the header + size of the image
1127 return dwLen
+ bi
.biSizeImage
;
1130 // and now copy the bits
1131 void *image
= (char *)pbi
+ dwLen
;
1132 if ( !GetDIBits(hdc
, hbmp
, 0, bi
.biHeight
, image
, pbi
, DIB_RGB_COLORS
) )
1134 wxLogLastError("GetDIBits");
1139 return dwLen
+ bi
.biSizeImage
;
1142 wxBitmap
wxConvertDIBToBitmap(const BITMAPINFO
*pbmi
)
1144 // here we get BITMAPINFO struct followed by the actual bitmap bits and
1145 // BITMAPINFO starts with BITMAPINFOHEADER followed by colour info
1146 const BITMAPINFOHEADER
*pbmih
= &pbmi
->bmiHeader
;
1148 // offset of image from the beginning of the header
1149 DWORD ofs
= wxGetNumOfBitmapColors(pbmih
->biBitCount
) * sizeof(RGBQUAD
);
1150 void *image
= (char *)pbmih
+ sizeof(BITMAPINFOHEADER
) + ofs
;
1153 HBITMAP hbmp
= CreateDIBitmap(hdc
, pbmih
, CBM_INIT
,
1154 image
, pbmi
, DIB_RGB_COLORS
);
1157 wxLogLastError("CreateDIBitmap");
1160 wxBitmap
bitmap(pbmih
->biWidth
, pbmih
->biHeight
, pbmih
->biBitCount
);
1161 bitmap
.SetHBITMAP((WXHBITMAP
)hbmp
);
1168 static const wxChar
*GetTymedName(DWORD tymed
)
1170 static wxChar s_szBuf
[128];
1172 case TYMED_HGLOBAL
: return wxT("TYMED_HGLOBAL");
1173 case TYMED_FILE
: return wxT("TYMED_FILE");
1174 case TYMED_ISTREAM
: return wxT("TYMED_ISTREAM");
1175 case TYMED_ISTORAGE
: return wxT("TYMED_ISTORAGE");
1176 case TYMED_GDI
: return wxT("TYMED_GDI");
1177 case TYMED_MFPICT
: return wxT("TYMED_MFPICT");
1178 case TYMED_ENHMF
: return wxT("TYMED_ENHMF");
1180 wxSprintf(s_szBuf
, wxT("type of media format %d (unknown)"), tymed
);
1187 #endif // not using OLE at all