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"
32 #include "undocshell.h"
37 #include "wine/debug.h"
38 #include "wine/unicode.h"
41 #include "shell32_main.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(shell);
46 /***********************************************************************
47 * IExtractIconW implementation
51 IExtractIconWVtbl *lpVtbl;
53 IPersistFileVtbl *lpvtblPersistFile;
54 IExtractIconAVtbl *lpvtblExtractIconA;
58 static struct IExtractIconAVtbl eiavt;
59 static struct IExtractIconWVtbl eivt;
60 static struct IPersistFileVtbl pfvt;
62 #define _IPersistFile_Offset ((int)(&(((IExtractIconWImpl*)0)->lpvtblPersistFile)))
63 #define _ICOM_THIS_From_IPersistFile(class, name) class* This = (class*)(((char*)name)-_IPersistFile_Offset);
65 #define _IExtractIconA_Offset ((int)(&(((IExtractIconWImpl*)0)->lpvtblExtractIconA)))
66 #define _ICOM_THIS_From_IExtractIconA(class, name) class* This = (class*)(((char*)name)-_IExtractIconA_Offset);
68 /**************************************************************************
69 * IExtractIconW_Constructor
71 IExtractIconW* IExtractIconW_Constructor(LPCITEMIDLIST pidl)
73 IExtractIconWImpl* ei;
77 ei = (IExtractIconWImpl*)HeapAlloc(GetProcessHeap(),0,sizeof(IExtractIconWImpl));
80 ei->lpvtblPersistFile = &pfvt;
81 ei->lpvtblExtractIconA = &eiavt;
82 ei->pidl=ILClone(pidl);
87 return (IExtractIconW *)ei;
89 /**************************************************************************
90 * IExtractIconW_QueryInterface
92 static HRESULT WINAPI IExtractIconW_fnQueryInterface(IExtractIconW *iface, REFIID riid, LPVOID *ppvObj)
94 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
96 TRACE("(%p)->(\n\tIID:\t%s,%p)\n", This, debugstr_guid(riid), ppvObj);
100 if (IsEqualIID(riid, &IID_IUnknown)) /*IUnknown*/
104 else if (IsEqualIID(riid, &IID_IPersistFile)) /*IExtractIcon*/
106 *ppvObj = (IPersistFile*)&(This->lpvtblPersistFile);
108 else if (IsEqualIID(riid, &IID_IExtractIconA)) /*IExtractIcon*/
110 *ppvObj = (IExtractIconA*)&(This->lpvtblExtractIconA);
112 else if (IsEqualIID(riid, &IID_IExtractIconW)) /*IExtractIcon*/
114 *ppvObj = (IExtractIconW*)This;
119 IExtractIconW_AddRef((IExtractIconW*) *ppvObj);
120 TRACE("-- Interface: (%p)->(%p)\n",ppvObj,*ppvObj);
123 TRACE("-- Interface: E_NOINTERFACE\n");
124 return E_NOINTERFACE;
127 /**************************************************************************
128 * IExtractIconW_AddRef
130 static ULONG WINAPI IExtractIconW_fnAddRef(IExtractIconW * iface)
132 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
134 TRACE("(%p)->(count=%lu)\n",This, This->ref );
136 return ++(This->ref);
138 /**************************************************************************
139 * IExtractIconW_Release
141 static ULONG WINAPI IExtractIconW_fnRelease(IExtractIconW * iface)
143 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
145 TRACE("(%p)->()\n",This);
149 TRACE(" destroying IExtractIcon(%p)\n",This);
151 HeapFree(GetProcessHeap(),0,This);
157 static HRESULT getIconLocationForFolder(IExtractIconW *iface, UINT uFlags,
158 LPWSTR szIconFile, UINT cchMax, int *piIndex, UINT *pwFlags)
160 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
162 WCHAR wszPath[MAX_PATH];
163 WCHAR wszCLSIDValue[CHARS_IN_GUID];
164 static const WCHAR shellClassInfo[] = { '.','S','h','e','l','l','C','l','a','s','s','I','n','f','o',0 };
165 static const WCHAR iconFile[] = { 'I','c','o','n','F','i','l','e',0 };
166 static const WCHAR clsid[] = { 'C','L','S','I','D',0 };
167 static const WCHAR clsid2[] = { 'C','L','S','I','D','2',0 };
168 static const WCHAR iconIndex[] = { 'I','c','o','n','I','n','d','e','x',0 };
170 if (SHELL32_GetCustomFolderAttribute(This->pidl, shellClassInfo, iconFile,
173 WCHAR wszIconIndex[10];
174 SHELL32_GetCustomFolderAttribute(This->pidl, shellClassInfo, iconIndex,
176 *piIndex = atoiW(wszIconIndex);
178 else if (SHELL32_GetCustomFolderAttribute(This->pidl, shellClassInfo, clsid,
179 wszCLSIDValue, CHARS_IN_GUID) &&
180 HCR_GetDefaultIconW(wszCLSIDValue, szIconFile, cchMax, &dwNr))
184 else if (SHELL32_GetCustomFolderAttribute(This->pidl, shellClassInfo, clsid2,
185 wszCLSIDValue, CHARS_IN_GUID) &&
186 HCR_GetDefaultIconW(wszCLSIDValue, szIconFile, cchMax, &dwNr))
192 static const WCHAR folder[] = { 'F','o','l','d','e','r',0 };
194 if (!HCR_GetDefaultIconW(folder, szIconFile, cchMax, &dwNr))
196 lstrcpynW(szIconFile, swShell32Name, cchMax);
199 *piIndex = (uFlags & GIL_OPENICON) ? dwNr + 1 : dwNr;
204 WCHAR swShell32Name[MAX_PATH];
206 /**************************************************************************
207 * IExtractIconW_GetIconLocation
209 * mapping filetype to icon
211 static HRESULT WINAPI IExtractIconW_fnGetIconLocation(
212 IExtractIconW * iface,
213 UINT uFlags, /* GIL_ flags */
217 UINT * pwFlags) /* returned GIL_ flags */
219 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
221 char sTemp[MAX_PATH];
224 LPITEMIDLIST pSimplePidl = ILFindLastID(This->pidl);
226 TRACE("(%p) (flags=%u %p %u %p %p)\n", This, uFlags, szIconFile, cchMax, piIndex, pwFlags);
231 if (_ILIsDesktop(pSimplePidl))
233 lstrcpynW(szIconFile, swShell32Name, cchMax);
237 /* my computer and other shell extensions */
238 else if ((riid = _ILGetGUIDPointer(pSimplePidl)))
240 static const WCHAR fmt[] = { 'C','L','S','I','D','\\',
241 '{','%','0','8','l','x','-','%','0','4','x','-','%','0','4','x','-',
242 '%','0','2','x','%','0','2','x','-','%','0','2','x', '%','0','2','x',
243 '%','0','2','x','%','0','2','x','%','0','2','x','%','0','2','x','}',0 };
247 riid->Data1, riid->Data2, riid->Data3,
248 riid->Data4[0], riid->Data4[1], riid->Data4[2], riid->Data4[3],
249 riid->Data4[4], riid->Data4[5], riid->Data4[6], riid->Data4[7]);
251 if (HCR_GetDefaultIconW(xriid, szIconFile, cchMax, &dwNr))
257 lstrcpynW(szIconFile, swShell32Name, cchMax);
262 else if (_ILIsDrive (pSimplePidl))
264 static const WCHAR drive[] = { 'D','r','i','v','e',0 };
268 if (_ILGetDrive(pSimplePidl, sTemp, MAX_PATH))
270 switch(GetDriveTypeA(sTemp))
272 case DRIVE_REMOVABLE: icon_idx = 5; break;
273 case DRIVE_CDROM: icon_idx = 11; break;
274 case DRIVE_REMOTE: icon_idx = 9; break;
275 case DRIVE_RAMDISK: icon_idx = 12; break;
281 lstrcpynW(szIconFile, swShell32Name, cchMax);
286 if (HCR_GetDefaultIconW(drive, szIconFile, cchMax, &dwNr))
292 lstrcpynW(szIconFile, swShell32Name, cchMax);
297 else if (_ILIsFolder (pSimplePidl))
299 getIconLocationForFolder(iface, uFlags, szIconFile, cchMax, piIndex,
306 if (_ILIsCPanelStruct(pSimplePidl))
308 if (SUCCEEDED(CPanel_GetIconLocationW(pSimplePidl, szIconFile, cchMax, piIndex)))
311 else if (_ILGetExtension(pSimplePidl, sTemp, MAX_PATH))
313 if (HCR_MapTypeToValueA(sTemp, sTemp, MAX_PATH, TRUE)
314 && HCR_GetDefaultIconA(sTemp, sTemp, MAX_PATH, &dwNr))
316 if (!lstrcmpA("%1", sTemp)) /* icon is in the file */
318 SHGetPathFromIDListW(This->pidl, szIconFile);
323 MultiByteToWideChar(CP_ACP, 0, sTemp, -1, szIconFile, cchMax);
329 else if (!strcasecmp(sTemp, "lnkfile"))
331 /* extract icon from shell shortcut */
335 if (SUCCEEDED(SHGetDesktopFolder(&dsf)))
337 HRESULT hr = IShellFolder_GetUIObjectOf(dsf, NULL, 1, (LPCITEMIDLIST*)&This->pidl, &IID_IShellLinkW, NULL, (LPVOID*)&psl);
341 hr = IShellLinkW_GetIconLocation(psl, szIconFile, MAX_PATH, piIndex);
343 if (SUCCEEDED(hr) && *szIconFile)
346 IShellLinkW_Release(psl);
349 IShellFolder_Release(dsf);
354 if (!found) /* default icon */
356 lstrcpynW(szIconFile, swShell32Name, cchMax);
361 TRACE("-- %s %x\n", debugstr_w(szIconFile), *piIndex);
365 /**************************************************************************
366 * IExtractIconW_Extract
368 static HRESULT WINAPI IExtractIconW_fnExtract(IExtractIconW * iface, LPCWSTR pszFile, UINT nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIconSize)
370 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
372 FIXME("(%p) (file=%p index=%u %p %p size=%u) semi-stub\n", This, debugstr_w(pszFile), nIconIndex, phiconLarge, phiconSmall, nIconSize);
375 *phiconLarge = ImageList_GetIcon(ShellBigIconList, nIconIndex, ILD_TRANSPARENT);
378 *phiconSmall = ImageList_GetIcon(ShellSmallIconList, nIconIndex, ILD_TRANSPARENT);
383 static struct IExtractIconWVtbl eivt =
385 IExtractIconW_fnQueryInterface,
386 IExtractIconW_fnAddRef,
387 IExtractIconW_fnRelease,
388 IExtractIconW_fnGetIconLocation,
389 IExtractIconW_fnExtract
392 /**************************************************************************
393 * IExtractIconA_Constructor
395 IExtractIconA* IExtractIconA_Constructor(LPCITEMIDLIST pidl)
397 IExtractIconWImpl *This = (IExtractIconWImpl *)IExtractIconW_Constructor(pidl);
398 IExtractIconA *eia = (IExtractIconA *)&This->lpvtblExtractIconA;
400 TRACE("(%p)->(%p)\n", This, eia);
403 /**************************************************************************
404 * IExtractIconA_QueryInterface
406 static HRESULT WINAPI IExtractIconA_fnQueryInterface(IExtractIconA * iface, REFIID riid, LPVOID *ppvObj)
408 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
410 return IExtractIconW_QueryInterface(This, riid, ppvObj);
413 /**************************************************************************
414 * IExtractIconA_AddRef
416 static ULONG WINAPI IExtractIconA_fnAddRef(IExtractIconA * iface)
418 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
420 return IExtractIconW_AddRef(This);
422 /**************************************************************************
423 * IExtractIconA_Release
425 static ULONG WINAPI IExtractIconA_fnRelease(IExtractIconA * iface)
427 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
429 return IExtractIconW_AddRef(This);
431 /**************************************************************************
432 * IExtractIconA_GetIconLocation
434 * mapping filetype to icon
436 static HRESULT WINAPI IExtractIconA_fnGetIconLocation(
437 IExtractIconA * iface,
445 LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, cchMax * sizeof(WCHAR));
446 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
448 TRACE("(%p) (flags=%u %p %u %p %p)\n", This, uFlags, szIconFile, cchMax, piIndex, pwFlags);
450 ret = IExtractIconW_GetIconLocation(This, uFlags, lpwstrFile, cchMax, piIndex, pwFlags);
451 WideCharToMultiByte(CP_ACP, 0, lpwstrFile, -1, szIconFile, cchMax, NULL, NULL);
452 HeapFree(GetProcessHeap(), 0, lpwstrFile);
454 TRACE("-- %s %x\n", szIconFile, *piIndex);
457 /**************************************************************************
458 * IExtractIconA_Extract
460 static HRESULT WINAPI IExtractIconA_fnExtract(IExtractIconA * iface, LPCSTR pszFile, UINT nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIconSize)
463 INT len = MultiByteToWideChar(CP_ACP, 0, pszFile, -1, NULL, 0);
464 LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
465 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
467 TRACE("(%p) (file=%p index=%u %p %p size=%u)\n", This, pszFile, nIconIndex, phiconLarge, phiconSmall, nIconSize);
469 MultiByteToWideChar(CP_ACP, 0, pszFile, -1, lpwstrFile, len);
470 ret = IExtractIconW_Extract(This, lpwstrFile, nIconIndex, phiconLarge, phiconSmall, nIconSize);
471 HeapFree(GetProcessHeap(), 0, lpwstrFile);
475 static struct IExtractIconAVtbl eiavt =
477 IExtractIconA_fnQueryInterface,
478 IExtractIconA_fnAddRef,
479 IExtractIconA_fnRelease,
480 IExtractIconA_fnGetIconLocation,
481 IExtractIconA_fnExtract
484 /************************************************************************
485 * IEIPersistFile_QueryInterface (IUnknown)
487 static HRESULT WINAPI IEIPersistFile_fnQueryInterface(
492 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
494 return IExtractIconW_QueryInterface(This, iid, ppvObj);
497 /************************************************************************
498 * IEIPersistFile_AddRef (IUnknown)
500 static ULONG WINAPI IEIPersistFile_fnAddRef(
503 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
505 return IExtractIconW_AddRef(This);
508 /************************************************************************
509 * IEIPersistFile_Release (IUnknown)
511 static ULONG WINAPI IEIPersistFile_fnRelease(
514 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
516 return IExtractIconW_Release(This);
519 /************************************************************************
520 * IEIPersistFile_GetClassID (IPersist)
522 static HRESULT WINAPI IEIPersistFile_fnGetClassID(
526 CLSID StdFolderID = { 0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00} };
531 memcpy(lpClassId, &StdFolderID, sizeof(StdFolderID));
536 /************************************************************************
537 * IEIPersistFile_Load (IPersistFile)
539 static HRESULT WINAPI IEIPersistFile_fnLoad(IPersistFile* iface, LPCOLESTR pszFileName, DWORD dwMode)
541 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
547 static struct IPersistFileVtbl pfvt =
549 IEIPersistFile_fnQueryInterface,
550 IEIPersistFile_fnAddRef,
551 IEIPersistFile_fnRelease,
552 IEIPersistFile_fnGetClassID,
553 (void *) 0xdeadbeef /* IEIPersistFile_fnIsDirty */,
554 IEIPersistFile_fnLoad,
555 (void *) 0xdeadbeef /* IEIPersistFile_fnSave */,
556 (void *) 0xdeadbeef /* IEIPersistFile_fnSaveCompleted */,
557 (void *) 0xdeadbeef /* IEIPersistFile_fnGetCurFile */