2 * IEnumFORMATETC, IDataObject
4 * selecting and droping objects within the shell and/or common dialogs
6 * Copyright 1998, 1999 <juergen.schmied@metronet.de>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "shell32_main.h"
27 #include "wine/debug.h"
28 #include "undocshell.h"
29 #include "wine/obj_dataobject.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(shell
);
33 /***********************************************************************
34 * IEnumFORMATETC implementation
40 ICOM_VFIELD(IEnumFORMATETC
);
42 /* IEnumFORMATETC fields */
48 static HRESULT WINAPI
IEnumFORMATETC_fnQueryInterface(LPENUMFORMATETC iface
, REFIID riid
, LPVOID
* ppvObj
);
49 static ULONG WINAPI
IEnumFORMATETC_fnAddRef(LPENUMFORMATETC iface
);
50 static ULONG WINAPI
IEnumFORMATETC_fnRelease(LPENUMFORMATETC iface
);
51 static HRESULT WINAPI
IEnumFORMATETC_fnNext(LPENUMFORMATETC iface
, ULONG celt
, FORMATETC
* rgelt
, ULONG
* pceltFethed
);
52 static HRESULT WINAPI
IEnumFORMATETC_fnSkip(LPENUMFORMATETC iface
, ULONG celt
);
53 static HRESULT WINAPI
IEnumFORMATETC_fnReset(LPENUMFORMATETC iface
);
54 static HRESULT WINAPI
IEnumFORMATETC_fnClone(LPENUMFORMATETC iface
, LPENUMFORMATETC
* ppenum
);
56 static struct ICOM_VTABLE(IEnumFORMATETC
) efvt
=
58 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
59 IEnumFORMATETC_fnQueryInterface
,
60 IEnumFORMATETC_fnAddRef
,
61 IEnumFORMATETC_fnRelease
,
62 IEnumFORMATETC_fnNext
,
63 IEnumFORMATETC_fnSkip
,
64 IEnumFORMATETC_fnReset
,
65 IEnumFORMATETC_fnClone
68 LPENUMFORMATETC
IEnumFORMATETC_Constructor(UINT cfmt
, const FORMATETC afmt
[])
70 IEnumFORMATETCImpl
* ef
;
71 DWORD size
=cfmt
* sizeof(FORMATETC
);
73 ef
=(IEnumFORMATETCImpl
*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(IEnumFORMATETCImpl
));
81 ef
->pFmt
= SHAlloc (size
);
85 memcpy(ef
->pFmt
, afmt
, size
);
91 TRACE("(%p)->(%u,%p)\n",ef
, cfmt
, afmt
);
92 return (LPENUMFORMATETC
)ef
;
95 static HRESULT WINAPI
IEnumFORMATETC_fnQueryInterface(LPENUMFORMATETC iface
, REFIID riid
, LPVOID
* ppvObj
)
97 ICOM_THIS(IEnumFORMATETCImpl
,iface
);
98 TRACE("(%p)->(\n\tIID:\t%s,%p)\n",This
,debugstr_guid(riid
),ppvObj
);
102 if(IsEqualIID(riid
, &IID_IUnknown
))
106 else if(IsEqualIID(riid
, &IID_IEnumFORMATETC
))
108 *ppvObj
= (IEnumFORMATETC
*)This
;
113 IUnknown_AddRef((IUnknown
*)(*ppvObj
));
114 TRACE("-- Interface: (%p)->(%p)\n",ppvObj
,*ppvObj
);
117 TRACE("-- Interface: E_NOINTERFACE\n");
118 return E_NOINTERFACE
;
122 static ULONG WINAPI
IEnumFORMATETC_fnAddRef(LPENUMFORMATETC iface
)
124 ICOM_THIS(IEnumFORMATETCImpl
,iface
);
125 TRACE("(%p)->(count=%lu)\n",This
, This
->ref
);
127 return ++(This
->ref
);
130 static ULONG WINAPI
IEnumFORMATETC_fnRelease(LPENUMFORMATETC iface
)
132 ICOM_THIS(IEnumFORMATETCImpl
,iface
);
133 TRACE("(%p)->()\n",This
);
139 TRACE(" destroying IEnumFORMATETC(%p)\n",This
);
144 HeapFree(GetProcessHeap(),0,This
);
150 static HRESULT WINAPI
IEnumFORMATETC_fnNext(LPENUMFORMATETC iface
, ULONG celt
, FORMATETC
*rgelt
, ULONG
*pceltFethed
)
152 ICOM_THIS(IEnumFORMATETCImpl
,iface
);
155 TRACE("(%p)->(%lu,%p)\n", This
, celt
, rgelt
);
157 if(!This
->pFmt
)return S_FALSE
;
158 if(!rgelt
) return E_INVALIDARG
;
159 if (pceltFethed
) *pceltFethed
= 0;
161 for(i
= 0; This
->posFmt
< This
->countFmt
&& celt
> i
; i
++)
163 *rgelt
++ = This
->pFmt
[This
->posFmt
++];
166 if (pceltFethed
) *pceltFethed
= i
;
168 return ((i
== celt
) ? S_OK
: S_FALSE
);
171 static HRESULT WINAPI
IEnumFORMATETC_fnSkip(LPENUMFORMATETC iface
, ULONG celt
)
173 ICOM_THIS(IEnumFORMATETCImpl
,iface
);
174 TRACE("(%p)->(num=%lu)\n", This
, celt
);
176 if((This
->posFmt
+ celt
) >= This
->countFmt
) return S_FALSE
;
177 This
->posFmt
+= celt
;
181 static HRESULT WINAPI
IEnumFORMATETC_fnReset(LPENUMFORMATETC iface
)
183 ICOM_THIS(IEnumFORMATETCImpl
,iface
);
184 TRACE("(%p)->()\n", This
);
190 static HRESULT WINAPI
IEnumFORMATETC_fnClone(LPENUMFORMATETC iface
, LPENUMFORMATETC
* ppenum
)
192 ICOM_THIS(IEnumFORMATETCImpl
,iface
);
193 TRACE("(%p)->(ppenum=%p)\n", This
, ppenum
);
195 if (!ppenum
) return E_INVALIDARG
;
196 *ppenum
= IEnumFORMATETC_Constructor(This
->countFmt
, This
->pFmt
);
201 /***********************************************************************
202 * IDataObject implementation
205 /* number of supported formats */
206 #define MAX_FORMATS 3
210 /* IUnknown fields */
211 ICOM_VFIELD(IDataObject
);
214 /* IDataObject fields */
216 LPITEMIDLIST
* apidl
;
219 FORMATETC pFormatEtc
[MAX_FORMATS
];
225 static struct ICOM_VTABLE(IDataObject
) dtovt
;
227 /**************************************************************************
228 * IDataObject_Constructor
230 LPDATAOBJECT
IDataObject_Constructor(HWND hwndOwner
, LPITEMIDLIST pMyPidl
, LPITEMIDLIST
* apidl
, UINT cidl
)
232 IDataObjectImpl
* dto
;
234 dto
= (IDataObjectImpl
*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(IDataObjectImpl
));
239 ICOM_VTBL(dto
) = &dtovt
;
240 dto
->pidl
= ILClone(pMyPidl
);
241 dto
->apidl
= _ILCopyaPidl(apidl
, cidl
);
244 dto
->cfShellIDList
= RegisterClipboardFormatA(CFSTR_SHELLIDLIST
);
245 dto
->cfFileName
= RegisterClipboardFormatA(CFSTR_FILENAMEA
);
246 InitFormatEtc(dto
->pFormatEtc
[0], dto
->cfShellIDList
, TYMED_HGLOBAL
);
247 InitFormatEtc(dto
->pFormatEtc
[1], CF_HDROP
, TYMED_HGLOBAL
);
248 InitFormatEtc(dto
->pFormatEtc
[2], dto
->cfFileName
, TYMED_HGLOBAL
);
253 TRACE("(%p)->(apidl=%p cidl=%u)\n",dto
, apidl
, cidl
);
254 return (LPDATAOBJECT
)dto
;
257 /***************************************************************************
258 * IDataObject_QueryInterface
260 static HRESULT WINAPI
IDataObject_fnQueryInterface(LPDATAOBJECT iface
, REFIID riid
, LPVOID
* ppvObj
)
262 ICOM_THIS(IDataObjectImpl
,iface
);
263 TRACE("(%p)->(\n\tIID:\t%s,%p)\n",This
,debugstr_guid(riid
),ppvObj
);
267 if(IsEqualIID(riid
, &IID_IUnknown
)) /*IUnknown*/
271 else if(IsEqualIID(riid
, &IID_IDataObject
)) /*IDataObject*/
273 *ppvObj
= (IDataObject
*)This
;
278 IUnknown_AddRef((IUnknown
*)*ppvObj
);
279 TRACE("-- Interface: (%p)->(%p)\n",ppvObj
,*ppvObj
);
282 TRACE("-- Interface: E_NOINTERFACE\n");
283 return E_NOINTERFACE
;
286 /**************************************************************************
289 static ULONG WINAPI
IDataObject_fnAddRef(LPDATAOBJECT iface
)
291 ICOM_THIS(IDataObjectImpl
,iface
);
293 TRACE("(%p)->(count=%lu)\n",This
, This
->ref
);
296 return ++(This
->ref
);
299 /**************************************************************************
300 * IDataObject_Release
302 static ULONG WINAPI
IDataObject_fnRelease(LPDATAOBJECT iface
)
304 ICOM_THIS(IDataObjectImpl
,iface
);
305 TRACE("(%p)->()\n",This
);
311 TRACE(" destroying IDataObject(%p)\n",This
);
312 _ILFreeaPidl(This
->apidl
, This
->cidl
);
313 HeapFree(GetProcessHeap(),0,This
);
319 /**************************************************************************
320 * IDataObject_fnGetData
322 static HRESULT WINAPI
IDataObject_fnGetData(LPDATAOBJECT iface
, LPFORMATETC pformatetcIn
, STGMEDIUM
*pmedium
)
324 ICOM_THIS(IDataObjectImpl
,iface
);
329 GetClipboardFormatNameA (pformatetcIn
->cfFormat
, szTemp
, 256);
330 TRACE("(%p)->(%p %p format=%s)\n", This
, pformatetcIn
, pmedium
, szTemp
);
332 if (pformatetcIn
->cfFormat
== This
->cfShellIDList
)
334 if (This
->cidl
< 1) return(E_UNEXPECTED
);
335 pmedium
->u
.hGlobal
= RenderSHELLIDLIST(This
->pidl
, This
->apidl
, This
->cidl
);
337 else if (pformatetcIn
->cfFormat
== CF_HDROP
)
339 if (This
->cidl
< 1) return(E_UNEXPECTED
);
340 pmedium
->u
.hGlobal
= RenderHDROP(This
->pidl
, This
->apidl
, This
->cidl
);
342 else if (pformatetcIn
->cfFormat
== This
->cfFileName
)
344 if (This
->cidl
< 1) return(E_UNEXPECTED
);
345 pmedium
->u
.hGlobal
= RenderFILENAME(This
->pidl
, This
->apidl
, This
->cidl
);
349 FIXME("-- expected clipformat not implemented\n");
350 return (E_INVALIDARG
);
352 if (pmedium
->u
.hGlobal
)
354 pmedium
->tymed
= TYMED_HGLOBAL
;
355 pmedium
->pUnkForRelease
= NULL
;
358 return E_OUTOFMEMORY
;
361 static HRESULT WINAPI
IDataObject_fnGetDataHere(LPDATAOBJECT iface
, LPFORMATETC pformatetc
, STGMEDIUM
*pmedium
)
363 ICOM_THIS(IDataObjectImpl
,iface
);
364 FIXME("(%p)->()\n", This
);
368 static HRESULT WINAPI
IDataObject_fnQueryGetData(LPDATAOBJECT iface
, LPFORMATETC pformatetc
)
370 ICOM_THIS(IDataObjectImpl
,iface
);
373 TRACE("(%p)->(fmt=0x%08x tym=0x%08lx)\n", This
, pformatetc
->cfFormat
, pformatetc
->tymed
);
375 if(!(DVASPECT_CONTENT
& pformatetc
->dwAspect
))
376 return DV_E_DVASPECT
;
378 /* check our formats table what we have */
379 for (i
=0; i
<MAX_FORMATS
; i
++)
381 if ((This
->pFormatEtc
[i
].cfFormat
== pformatetc
->cfFormat
)
382 && (This
->pFormatEtc
[i
].tymed
== pformatetc
->tymed
))
391 static HRESULT WINAPI
IDataObject_fnGetCanonicalFormatEtc(LPDATAOBJECT iface
, LPFORMATETC pformatectIn
, LPFORMATETC pformatetcOut
)
393 ICOM_THIS(IDataObjectImpl
,iface
);
394 FIXME("(%p)->()\n", This
);
398 static HRESULT WINAPI
IDataObject_fnSetData(LPDATAOBJECT iface
, LPFORMATETC pformatetc
, STGMEDIUM
*pmedium
, BOOL fRelease
)
400 ICOM_THIS(IDataObjectImpl
,iface
);
401 FIXME("(%p)->()\n", This
);
405 static HRESULT WINAPI
IDataObject_fnEnumFormatEtc(LPDATAOBJECT iface
, DWORD dwDirection
, IEnumFORMATETC
**ppenumFormatEtc
)
407 ICOM_THIS(IDataObjectImpl
,iface
);
409 TRACE("(%p)->()\n", This
);
410 *ppenumFormatEtc
=NULL
;
413 if (DATADIR_GET
== dwDirection
)
415 *ppenumFormatEtc
= IEnumFORMATETC_Constructor(MAX_FORMATS
, This
->pFormatEtc
);
416 return (*ppenumFormatEtc
) ? S_OK
: E_FAIL
;
422 static HRESULT WINAPI
IDataObject_fnDAdvise(LPDATAOBJECT iface
, FORMATETC
*pformatetc
, DWORD advf
, IAdviseSink
*pAdvSink
, DWORD
*pdwConnection
)
424 ICOM_THIS(IDataObjectImpl
,iface
);
425 FIXME("(%p)->()\n", This
);
428 static HRESULT WINAPI
IDataObject_fnDUnadvise(LPDATAOBJECT iface
, DWORD dwConnection
)
430 ICOM_THIS(IDataObjectImpl
,iface
);
431 FIXME("(%p)->()\n", This
);
434 static HRESULT WINAPI
IDataObject_fnEnumDAdvise(LPDATAOBJECT iface
, IEnumSTATDATA
**ppenumAdvise
)
436 ICOM_THIS(IDataObjectImpl
,iface
);
437 FIXME("(%p)->()\n", This
);
441 static struct ICOM_VTABLE(IDataObject
) dtovt
=
443 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
444 IDataObject_fnQueryInterface
,
445 IDataObject_fnAddRef
,
446 IDataObject_fnRelease
,
447 IDataObject_fnGetData
,
448 IDataObject_fnGetDataHere
,
449 IDataObject_fnQueryGetData
,
450 IDataObject_fnGetCanonicalFormatEtc
,
451 IDataObject_fnSetData
,
452 IDataObject_fnEnumFormatEtc
,
453 IDataObject_fnDAdvise
,
454 IDataObject_fnDUnadvise
,
455 IDataObject_fnEnumDAdvise