2 * Copyright 1997 Marcus Meissner
3 * Copyright 1998 Juergen Schmied
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "wine/port.h"
31 #include "undocshell.h"
34 #include "wine/debug.h"
38 #include "shell32_main.h"
40 WINE_DEFAULT_DEBUG_CHANNEL(shell);
42 /***********************************************************************
43 * IExtractIconW implementation
47 ICOM_VFIELD(IExtractIconW);
49 ICOM_VTABLE(IPersistFile)* lpvtblPersistFile;
50 ICOM_VTABLE(IExtractIconA)* lpvtblExtractIconA;
54 static struct ICOM_VTABLE(IExtractIconA) eiavt;
55 static struct ICOM_VTABLE(IExtractIconW) eivt;
56 static struct ICOM_VTABLE(IPersistFile) pfvt;
58 #define _IPersistFile_Offset ((int)(&(((IExtractIconWImpl*)0)->lpvtblPersistFile)))
59 #define _ICOM_THIS_From_IPersistFile(class, name) class* This = (class*)(((char*)name)-_IPersistFile_Offset);
61 #define _IExtractIconA_Offset ((int)(&(((IExtractIconWImpl*)0)->lpvtblExtractIconA)))
62 #define _ICOM_THIS_From_IExtractIconA(class, name) class* This = (class*)(((char*)name)-_IExtractIconA_Offset);
64 /**************************************************************************
65 * IExtractIconW_Constructor
67 IExtractIconW* IExtractIconW_Constructor(LPCITEMIDLIST pidl)
69 IExtractIconWImpl* ei;
73 ei = (IExtractIconWImpl*)HeapAlloc(GetProcessHeap(),0,sizeof(IExtractIconWImpl));
76 ei->lpvtblPersistFile = &pfvt;
77 ei->lpvtblExtractIconA = &eiavt;
78 ei->pidl=ILClone(pidl);
83 return (IExtractIconW *)ei;
85 /**************************************************************************
86 * IExtractIconW_QueryInterface
88 static HRESULT WINAPI IExtractIconW_fnQueryInterface(IExtractIconW *iface, REFIID riid, LPVOID *ppvObj)
90 ICOM_THIS(IExtractIconWImpl, iface);
92 TRACE("(%p)->(\n\tIID:\t%s,%p)\n", This, debugstr_guid(riid), ppvObj);
96 if (IsEqualIID(riid, &IID_IUnknown)) /*IUnknown*/
100 else if (IsEqualIID(riid, &IID_IPersistFile)) /*IExtractIcon*/
102 *ppvObj = (IPersistFile*)&(This->lpvtblPersistFile);
104 else if (IsEqualIID(riid, &IID_IExtractIconA)) /*IExtractIcon*/
106 *ppvObj = (IExtractIconA*)&(This->lpvtblExtractIconA);
108 else if (IsEqualIID(riid, &IID_IExtractIconW)) /*IExtractIcon*/
110 *ppvObj = (IExtractIconW*)This;
115 IExtractIconW_AddRef((IExtractIconW*) *ppvObj);
116 TRACE("-- Interface: (%p)->(%p)\n",ppvObj,*ppvObj);
119 TRACE("-- Interface: E_NOINTERFACE\n");
120 return E_NOINTERFACE;
123 /**************************************************************************
124 * IExtractIconW_AddRef
126 static ULONG WINAPI IExtractIconW_fnAddRef(IExtractIconW * iface)
128 ICOM_THIS(IExtractIconWImpl, iface);
130 TRACE("(%p)->(count=%lu)\n",This, This->ref );
132 return ++(This->ref);
134 /**************************************************************************
135 * IExtractIconW_Release
137 static ULONG WINAPI IExtractIconW_fnRelease(IExtractIconW * iface)
139 ICOM_THIS(IExtractIconWImpl, iface);
141 TRACE("(%p)->()\n",This);
145 TRACE(" destroying IExtractIcon(%p)\n",This);
147 HeapFree(GetProcessHeap(),0,This);
153 WCHAR swShell32Name[MAX_PATH];
155 /**************************************************************************
156 * IExtractIconW_GetIconLocation
158 * mapping filetype to icon
160 static HRESULT WINAPI IExtractIconW_fnGetIconLocation(
161 IExtractIconW * iface,
162 UINT uFlags, /* GIL_ flags */
166 UINT * pwFlags) /* returned GIL_ flags */
168 ICOM_THIS(IExtractIconWImpl, iface);
170 char sTemp[MAX_PATH];
173 LPITEMIDLIST pSimplePidl = ILFindLastID(This->pidl);
175 TRACE("(%p) (flags=%u %p %u %p %p)\n", This, uFlags, szIconFile, cchMax, piIndex, pwFlags);
180 if (_ILIsDesktop(pSimplePidl))
182 lstrcpynW(szIconFile, swShell32Name, cchMax);
186 /* my computer and other shell extensions */
187 else if ((riid = _ILGetGUIDPointer(pSimplePidl)))
189 static WCHAR fmt[] = { 'C','L','S','I','D','\\','{','%','0','8','l','x',
190 '-','%','0','4','x','-','%','0','4','x','-','%','0','2','x',
191 '%','0','2','x','-','%','0','2','x', '%','0','2','x', '%','0','2','x',
192 '%','0','2','x','%','0','2','x','%','0','2','x','}',0 };
196 riid->Data1, riid->Data2, riid->Data3,
197 riid->Data4[0], riid->Data4[1], riid->Data4[2], riid->Data4[3],
198 riid->Data4[4], riid->Data4[5], riid->Data4[6], riid->Data4[7]);
200 if (HCR_GetDefaultIconW(xriid, szIconFile, cchMax, &dwNr))
206 lstrcpynW(szIconFile, swShell32Name, cchMax);
211 else if (_ILIsDrive (pSimplePidl))
213 static WCHAR drive[] = { 'D','r','i','v','e',0 };
215 if (HCR_GetDefaultIconW(drive, szIconFile, cchMax, &dwNr))
221 lstrcpynW(szIconFile, swShell32Name, cchMax);
225 else if (_ILIsFolder (pSimplePidl))
227 static WCHAR folder[] = { 'F','o','l','d','e','r',0 };
229 if (!HCR_GetDefaultIconW(folder, szIconFile, cchMax, &dwNr))
231 lstrcpynW(szIconFile, swShell32Name, cchMax);
234 *piIndex = (uFlags & GIL_OPENICON) ? dwNr + 1 : dwNr;
241 if (_ILIsCPanelStruct(pSimplePidl))
243 if (SUCCEEDED(CPanel_GetIconLocationW(pSimplePidl, szIconFile, cchMax, piIndex)))
246 else if (_ILGetExtension(pSimplePidl, sTemp, MAX_PATH))
248 if (HCR_MapTypeToValueA(sTemp, sTemp, MAX_PATH, TRUE)
249 && HCR_GetDefaultIconA(sTemp, sTemp, MAX_PATH, &dwNr))
251 if (!lstrcmpA("%1", sTemp)) /* icon is in the file */
253 SHGetPathFromIDListW(This->pidl, szIconFile);
258 MultiByteToWideChar(CP_ACP, 0, sTemp, -1, szIconFile, cchMax);
264 else if (!strcasecmp(sTemp, "lnkfile"))
266 /* extract icon from shell shortcut */
270 if (SUCCEEDED(SHGetDesktopFolder(&dsf)))
272 HRESULT hr = IShellFolder_GetUIObjectOf(dsf, NULL, 1, (LPCITEMIDLIST*)&This->pidl, &IID_IShellLinkW, NULL, (LPVOID*)&psl);
276 hr = IShellLinkW_GetIconLocation(psl, szIconFile, MAX_PATH, piIndex);
278 if (SUCCEEDED(hr) && *szIconFile)
281 IShellLinkW_Release(psl);
284 IShellFolder_Release(dsf);
289 if (!found) /* default icon */
291 lstrcpynW(szIconFile, swShell32Name, cchMax);
296 TRACE("-- %s %x\n", debugstr_w(szIconFile), *piIndex);
300 /**************************************************************************
301 * IExtractIconW_Extract
303 static HRESULT WINAPI IExtractIconW_fnExtract(IExtractIconW * iface, LPCWSTR pszFile, UINT nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIconSize)
305 ICOM_THIS(IExtractIconWImpl, iface);
307 FIXME("(%p) (file=%p index=%u %p %p size=%u) semi-stub\n", This, debugstr_w(pszFile), nIconIndex, phiconLarge, phiconSmall, nIconSize);
310 *phiconLarge = ImageList_GetIcon(ShellBigIconList, nIconIndex, ILD_TRANSPARENT);
313 *phiconSmall = ImageList_GetIcon(ShellSmallIconList, nIconIndex, ILD_TRANSPARENT);
318 static struct ICOM_VTABLE(IExtractIconW) eivt =
320 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
321 IExtractIconW_fnQueryInterface,
322 IExtractIconW_fnAddRef,
323 IExtractIconW_fnRelease,
324 IExtractIconW_fnGetIconLocation,
325 IExtractIconW_fnExtract
328 /**************************************************************************
329 * IExtractIconA_Constructor
331 IExtractIconA* IExtractIconA_Constructor(LPCITEMIDLIST pidl)
333 ICOM_THIS(IExtractIconWImpl, IExtractIconW_Constructor(pidl));
334 IExtractIconA *eia = (IExtractIconA *)&This->lpvtblExtractIconA;
336 TRACE("(%p)->(%p)\n", This, eia);
339 /**************************************************************************
340 * IExtractIconA_QueryInterface
342 static HRESULT WINAPI IExtractIconA_fnQueryInterface(IExtractIconA * iface, REFIID riid, LPVOID *ppvObj)
344 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
346 return IExtractIconW_QueryInterface(This, riid, ppvObj);
349 /**************************************************************************
350 * IExtractIconA_AddRef
352 static ULONG WINAPI IExtractIconA_fnAddRef(IExtractIconA * iface)
354 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
356 return IExtractIconW_AddRef(This);
358 /**************************************************************************
359 * IExtractIconA_Release
361 static ULONG WINAPI IExtractIconA_fnRelease(IExtractIconA * iface)
363 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
365 return IExtractIconW_AddRef(This);
367 /**************************************************************************
368 * IExtractIconA_GetIconLocation
370 * mapping filetype to icon
372 static HRESULT WINAPI IExtractIconA_fnGetIconLocation(
373 IExtractIconA * iface,
381 LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, cchMax * sizeof(WCHAR));
382 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
384 TRACE("(%p) (flags=%u %p %u %p %p)\n", This, uFlags, szIconFile, cchMax, piIndex, pwFlags);
386 ret = IExtractIconW_GetIconLocation(This, uFlags, lpwstrFile, cchMax, piIndex, pwFlags);
387 WideCharToMultiByte(CP_ACP, 0, lpwstrFile, -1, szIconFile, cchMax, NULL, NULL);
388 HeapFree(GetProcessHeap(), 0, lpwstrFile);
390 TRACE("-- %s %x\n", szIconFile, *piIndex);
393 /**************************************************************************
394 * IExtractIconA_Extract
396 static HRESULT WINAPI IExtractIconA_fnExtract(IExtractIconA * iface, LPCSTR pszFile, UINT nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIconSize)
399 INT len = MultiByteToWideChar(CP_ACP, 0, pszFile, -1, NULL, 0);
400 LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
401 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
403 TRACE("(%p) (file=%p index=%u %p %p size=%u)\n", This, pszFile, nIconIndex, phiconLarge, phiconSmall, nIconSize);
405 MultiByteToWideChar(CP_ACP, 0, pszFile, -1, lpwstrFile, len);
406 ret = IExtractIconW_Extract(This, lpwstrFile, nIconIndex, phiconLarge, phiconSmall, nIconSize);
407 HeapFree(GetProcessHeap(), 0, lpwstrFile);
411 static struct ICOM_VTABLE(IExtractIconA) eiavt =
413 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
414 IExtractIconA_fnQueryInterface,
415 IExtractIconA_fnAddRef,
416 IExtractIconA_fnRelease,
417 IExtractIconA_fnGetIconLocation,
418 IExtractIconA_fnExtract
421 /************************************************************************
422 * IEIPersistFile_QueryInterface (IUnknown)
424 static HRESULT WINAPI IEIPersistFile_fnQueryInterface(
429 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
431 return IExtractIconW_QueryInterface(This, iid, ppvObj);
434 /************************************************************************
435 * IEIPersistFile_AddRef (IUnknown)
437 static ULONG WINAPI IEIPersistFile_fnAddRef(
440 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
442 return IExtractIconW_AddRef(This);
445 /************************************************************************
446 * IEIPersistFile_Release (IUnknown)
448 static ULONG WINAPI IEIPersistFile_fnRelease(
451 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
453 return IExtractIconW_Release(This);
456 /************************************************************************
457 * IEIPersistFile_GetClassID (IPersist)
459 static HRESULT WINAPI IEIPersistFile_fnGetClassID(
463 CLSID StdFolderID = { 0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00} };
468 memcpy(lpClassId, &StdFolderID, sizeof(StdFolderID));
473 /************************************************************************
474 * IEIPersistFile_Load (IPersistFile)
476 static HRESULT WINAPI IEIPersistFile_fnLoad(IPersistFile* iface, LPCOLESTR pszFileName, DWORD dwMode)
478 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
484 static struct ICOM_VTABLE(IPersistFile) pfvt =
486 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
487 IEIPersistFile_fnQueryInterface,
488 IEIPersistFile_fnAddRef,
489 IEIPersistFile_fnRelease,
490 IEIPersistFile_fnGetClassID,
491 (void *) 0xdeadbeef /* IEIPersistFile_fnIsDirty */,
492 IEIPersistFile_fnLoad,
493 (void *) 0xdeadbeef /* IEIPersistFile_fnSave */,
494 (void *) 0xdeadbeef /* IEIPersistFile_fnSaveCompleted */,
495 (void *) 0xdeadbeef /* IEIPersistFile_fnGetCurFile */