Don't mistake frames for bytes.
[wine/multimedia.git] / dlls / shell32 / folders.c
blob3f1b4694bb20d52415d37ff677bf8957e1f2e1c7
1 /*
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
20 #include "config.h"
21 #include "wine/port.h"
23 #include <stdlib.h>
24 #include <stdarg.h>
25 #include <stdio.h>
26 #include <string.h>
28 #define COBJMACROS
30 #include "windef.h"
31 #include "winbase.h"
32 #include "winerror.h"
33 #include "objbase.h"
34 #include "undocshell.h"
35 #include "shlguid.h"
36 #include "winreg.h"
38 #include "wine/debug.h"
40 #include "pidl.h"
41 #include "shell32_main.h"
42 #include "shfldr.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(shell);
46 /***********************************************************************
47 * IExtractIconW implementation
49 typedef struct
51 IExtractIconWVtbl *lpVtbl;
52 DWORD ref;
53 IPersistFileVtbl *lpvtblPersistFile;
54 IExtractIconAVtbl *lpvtblExtractIconA;
55 LPITEMIDLIST pidl;
56 } IExtractIconWImpl;
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;
75 TRACE("%p\n", pidl);
77 ei = HeapAlloc(GetProcessHeap(),0,sizeof(IExtractIconWImpl));
78 ei->ref=1;
79 ei->lpVtbl = &eivt;
80 ei->lpvtblPersistFile = &pfvt;
81 ei->lpvtblExtractIconA = &eiavt;
82 ei->pidl=ILClone(pidl);
84 pdump(pidl);
86 TRACE("(%p)\n", ei);
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);
98 *ppvObj = NULL;
100 if (IsEqualIID(riid, &IID_IUnknown)) /*IUnknown*/
102 *ppvObj = This;
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;
117 if(*ppvObj)
119 IExtractIconW_AddRef((IExtractIconW*) *ppvObj);
120 TRACE("-- Interface: (%p)->(%p)\n",ppvObj,*ppvObj);
121 return S_OK;
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;
133 ULONG refCount = InterlockedIncrement(&This->ref);
135 TRACE("(%p)->(count=%lu)\n", This, refCount - 1);
137 return refCount;
139 /**************************************************************************
140 * IExtractIconW_Release
142 static ULONG WINAPI IExtractIconW_fnRelease(IExtractIconW * iface)
144 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
145 ULONG refCount = InterlockedDecrement(&This->ref);
147 TRACE("(%p)->(count=%lu)\n", This, refCount + 1);
149 if (!refCount)
151 TRACE(" destroying IExtractIcon(%p)\n",This);
152 SHFree(This->pidl);
153 HeapFree(GetProcessHeap(),0,This);
154 return 0;
156 return refCount;
159 static HRESULT getIconLocationForFolder(IExtractIconW *iface, UINT uFlags,
160 LPWSTR szIconFile, UINT cchMax, int *piIndex, UINT *pwFlags)
162 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
163 DWORD dwNr;
164 WCHAR wszPath[MAX_PATH];
165 WCHAR wszCLSIDValue[CHARS_IN_GUID];
166 static const WCHAR shellClassInfo[] = { '.','S','h','e','l','l','C','l','a','s','s','I','n','f','o',0 };
167 static const WCHAR iconFile[] = { 'I','c','o','n','F','i','l','e',0 };
168 static const WCHAR clsid[] = { 'C','L','S','I','D',0 };
169 static const WCHAR clsid2[] = { 'C','L','S','I','D','2',0 };
170 static const WCHAR iconIndex[] = { 'I','c','o','n','I','n','d','e','x',0 };
172 if (SHELL32_GetCustomFolderAttribute(This->pidl, shellClassInfo, iconFile,
173 wszPath, MAX_PATH))
175 WCHAR wszIconIndex[10];
176 SHELL32_GetCustomFolderAttribute(This->pidl, shellClassInfo, iconIndex,
177 wszIconIndex, 10);
178 *piIndex = atoiW(wszIconIndex);
180 else if (SHELL32_GetCustomFolderAttribute(This->pidl, shellClassInfo, clsid,
181 wszCLSIDValue, CHARS_IN_GUID) &&
182 HCR_GetDefaultIconW(wszCLSIDValue, szIconFile, cchMax, &dwNr))
184 *piIndex = dwNr;
186 else if (SHELL32_GetCustomFolderAttribute(This->pidl, shellClassInfo, clsid2,
187 wszCLSIDValue, CHARS_IN_GUID) &&
188 HCR_GetDefaultIconW(wszCLSIDValue, szIconFile, cchMax, &dwNr))
190 *piIndex = dwNr;
192 else
194 static const WCHAR folder[] = { 'F','o','l','d','e','r',0 };
196 if (!HCR_GetDefaultIconW(folder, szIconFile, cchMax, &dwNr))
198 lstrcpynW(szIconFile, swShell32Name, cchMax);
199 dwNr = 3;
201 *piIndex = (uFlags & GIL_OPENICON) ? dwNr + 1 : dwNr;
203 return S_OK;
206 WCHAR swShell32Name[MAX_PATH];
208 /**************************************************************************
209 * IExtractIconW_GetIconLocation
211 * mapping filetype to icon
213 static HRESULT WINAPI IExtractIconW_fnGetIconLocation(
214 IExtractIconW * iface,
215 UINT uFlags, /* GIL_ flags */
216 LPWSTR szIconFile,
217 UINT cchMax,
218 int * piIndex,
219 UINT * pwFlags) /* returned GIL_ flags */
221 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
223 char sTemp[MAX_PATH];
224 DWORD dwNr;
225 GUID const * riid;
226 LPITEMIDLIST pSimplePidl = ILFindLastID(This->pidl);
228 TRACE("(%p) (flags=%u %p %u %p %p)\n", This, uFlags, szIconFile, cchMax, piIndex, pwFlags);
230 if (pwFlags)
231 *pwFlags = 0;
233 if (_ILIsDesktop(pSimplePidl))
235 lstrcpynW(szIconFile, swShell32Name, cchMax);
236 *piIndex = 34;
239 /* my computer and other shell extensions */
240 else if ((riid = _ILGetGUIDPointer(pSimplePidl)))
242 static const WCHAR fmt[] = { 'C','L','S','I','D','\\',
243 '{','%','0','8','l','x','-','%','0','4','x','-','%','0','4','x','-',
244 '%','0','2','x','%','0','2','x','-','%','0','2','x', '%','0','2','x',
245 '%','0','2','x','%','0','2','x','%','0','2','x','%','0','2','x','}',0 };
246 WCHAR xriid[50];
248 sprintfW(xriid, fmt,
249 riid->Data1, riid->Data2, riid->Data3,
250 riid->Data4[0], riid->Data4[1], riid->Data4[2], riid->Data4[3],
251 riid->Data4[4], riid->Data4[5], riid->Data4[6], riid->Data4[7]);
253 if (HCR_GetDefaultIconW(xriid, szIconFile, cchMax, &dwNr))
255 *piIndex = dwNr;
257 else
259 lstrcpynW(szIconFile, swShell32Name, cchMax);
260 *piIndex = 15;
264 else if (_ILIsDrive (pSimplePidl))
266 static const WCHAR drive[] = { 'D','r','i','v','e',0 };
268 int icon_idx = -1;
270 if (_ILGetDrive(pSimplePidl, sTemp, MAX_PATH))
272 switch(GetDriveTypeA(sTemp))
274 case DRIVE_REMOVABLE: icon_idx = 5; break;
275 case DRIVE_CDROM: icon_idx = 11; break;
276 case DRIVE_REMOTE: icon_idx = 9; break;
277 case DRIVE_RAMDISK: icon_idx = 12; break;
281 if (icon_idx != -1)
283 lstrcpynW(szIconFile, swShell32Name, cchMax);
284 *piIndex = icon_idx;
286 else
288 if (HCR_GetDefaultIconW(drive, szIconFile, cchMax, &dwNr))
290 *piIndex = dwNr;
292 else
294 lstrcpynW(szIconFile, swShell32Name, cchMax);
295 *piIndex = 8;
299 else if (_ILIsFolder (pSimplePidl))
301 getIconLocationForFolder(iface, uFlags, szIconFile, cchMax, piIndex,
302 pwFlags);
304 else
306 BOOL found = FALSE;
308 if (_ILIsCPanelStruct(pSimplePidl))
310 if (SUCCEEDED(CPanel_GetIconLocationW(pSimplePidl, szIconFile, cchMax, piIndex)))
311 found = TRUE;
313 else if (_ILGetExtension(pSimplePidl, sTemp, MAX_PATH))
315 if (HCR_MapTypeToValueA(sTemp, sTemp, MAX_PATH, TRUE)
316 && HCR_GetDefaultIconA(sTemp, sTemp, MAX_PATH, &dwNr))
318 if (!lstrcmpA("%1", sTemp)) /* icon is in the file */
320 SHGetPathFromIDListW(This->pidl, szIconFile);
321 *piIndex = 0;
323 else
325 MultiByteToWideChar(CP_ACP, 0, sTemp, -1, szIconFile, cchMax);
326 *piIndex = dwNr;
329 found = TRUE;
331 else if (!lstrcmpiA(sTemp, "lnkfile"))
333 /* extract icon from shell shortcut */
334 IShellFolder* dsf;
335 IShellLinkW* psl;
337 if (SUCCEEDED(SHGetDesktopFolder(&dsf)))
339 HRESULT hr = IShellFolder_GetUIObjectOf(dsf, NULL, 1, (LPCITEMIDLIST*)&This->pidl, &IID_IShellLinkW, NULL, (LPVOID*)&psl);
341 if (SUCCEEDED(hr))
343 hr = IShellLinkW_GetIconLocation(psl, szIconFile, MAX_PATH, piIndex);
345 if (SUCCEEDED(hr) && *szIconFile)
346 found = TRUE;
348 IShellLinkW_Release(psl);
351 IShellFolder_Release(dsf);
356 if (!found) /* default icon */
358 lstrcpynW(szIconFile, swShell32Name, cchMax);
359 *piIndex = 0;
363 TRACE("-- %s %x\n", debugstr_w(szIconFile), *piIndex);
364 return NOERROR;
367 /**************************************************************************
368 * IExtractIconW_Extract
370 static HRESULT WINAPI IExtractIconW_fnExtract(IExtractIconW * iface, LPCWSTR pszFile, UINT nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIconSize)
372 IExtractIconWImpl *This = (IExtractIconWImpl *)iface;
374 FIXME("(%p) (file=%p index=%u %p %p size=%u) semi-stub\n", This, debugstr_w(pszFile), nIconIndex, phiconLarge, phiconSmall, nIconSize);
376 if (phiconLarge)
377 *phiconLarge = ImageList_GetIcon(ShellBigIconList, nIconIndex, ILD_TRANSPARENT);
379 if (phiconSmall)
380 *phiconSmall = ImageList_GetIcon(ShellSmallIconList, nIconIndex, ILD_TRANSPARENT);
382 return S_OK;
385 static struct IExtractIconWVtbl eivt =
387 IExtractIconW_fnQueryInterface,
388 IExtractIconW_fnAddRef,
389 IExtractIconW_fnRelease,
390 IExtractIconW_fnGetIconLocation,
391 IExtractIconW_fnExtract
394 /**************************************************************************
395 * IExtractIconA_Constructor
397 IExtractIconA* IExtractIconA_Constructor(LPCITEMIDLIST pidl)
399 IExtractIconWImpl *This = (IExtractIconWImpl *)IExtractIconW_Constructor(pidl);
400 IExtractIconA *eia = (IExtractIconA *)&This->lpvtblExtractIconA;
402 TRACE("(%p)->(%p)\n", This, eia);
403 return eia;
405 /**************************************************************************
406 * IExtractIconA_QueryInterface
408 static HRESULT WINAPI IExtractIconA_fnQueryInterface(IExtractIconA * iface, REFIID riid, LPVOID *ppvObj)
410 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
412 return IExtractIconW_QueryInterface(This, riid, ppvObj);
415 /**************************************************************************
416 * IExtractIconA_AddRef
418 static ULONG WINAPI IExtractIconA_fnAddRef(IExtractIconA * iface)
420 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
422 return IExtractIconW_AddRef(This);
424 /**************************************************************************
425 * IExtractIconA_Release
427 static ULONG WINAPI IExtractIconA_fnRelease(IExtractIconA * iface)
429 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
431 return IExtractIconW_AddRef(This);
433 /**************************************************************************
434 * IExtractIconA_GetIconLocation
436 * mapping filetype to icon
438 static HRESULT WINAPI IExtractIconA_fnGetIconLocation(
439 IExtractIconA * iface,
440 UINT uFlags,
441 LPSTR szIconFile,
442 UINT cchMax,
443 int * piIndex,
444 UINT * pwFlags)
446 HRESULT ret;
447 LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, cchMax * sizeof(WCHAR));
448 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
450 TRACE("(%p) (flags=%u %p %u %p %p)\n", This, uFlags, szIconFile, cchMax, piIndex, pwFlags);
452 ret = IExtractIconW_GetIconLocation(This, uFlags, lpwstrFile, cchMax, piIndex, pwFlags);
453 WideCharToMultiByte(CP_ACP, 0, lpwstrFile, -1, szIconFile, cchMax, NULL, NULL);
454 HeapFree(GetProcessHeap(), 0, lpwstrFile);
456 TRACE("-- %s %x\n", szIconFile, *piIndex);
457 return ret;
459 /**************************************************************************
460 * IExtractIconA_Extract
462 static HRESULT WINAPI IExtractIconA_fnExtract(IExtractIconA * iface, LPCSTR pszFile, UINT nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIconSize)
464 HRESULT ret;
465 INT len = MultiByteToWideChar(CP_ACP, 0, pszFile, -1, NULL, 0);
466 LPWSTR lpwstrFile = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
467 _ICOM_THIS_From_IExtractIconA(IExtractIconW, iface);
469 TRACE("(%p) (file=%p index=%u %p %p size=%u)\n", This, pszFile, nIconIndex, phiconLarge, phiconSmall, nIconSize);
471 MultiByteToWideChar(CP_ACP, 0, pszFile, -1, lpwstrFile, len);
472 ret = IExtractIconW_Extract(This, lpwstrFile, nIconIndex, phiconLarge, phiconSmall, nIconSize);
473 HeapFree(GetProcessHeap(), 0, lpwstrFile);
474 return ret;
477 static struct IExtractIconAVtbl eiavt =
479 IExtractIconA_fnQueryInterface,
480 IExtractIconA_fnAddRef,
481 IExtractIconA_fnRelease,
482 IExtractIconA_fnGetIconLocation,
483 IExtractIconA_fnExtract
486 /************************************************************************
487 * IEIPersistFile_QueryInterface (IUnknown)
489 static HRESULT WINAPI IEIPersistFile_fnQueryInterface(
490 IPersistFile *iface,
491 REFIID iid,
492 LPVOID *ppvObj)
494 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
496 return IExtractIconW_QueryInterface(This, iid, ppvObj);
499 /************************************************************************
500 * IEIPersistFile_AddRef (IUnknown)
502 static ULONG WINAPI IEIPersistFile_fnAddRef(
503 IPersistFile *iface)
505 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
507 return IExtractIconW_AddRef(This);
510 /************************************************************************
511 * IEIPersistFile_Release (IUnknown)
513 static ULONG WINAPI IEIPersistFile_fnRelease(
514 IPersistFile *iface)
516 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
518 return IExtractIconW_Release(This);
521 /************************************************************************
522 * IEIPersistFile_GetClassID (IPersist)
524 static HRESULT WINAPI IEIPersistFile_fnGetClassID(
525 IPersistFile *iface,
526 LPCLSID lpClassId)
528 CLSID StdFolderID = { 0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00} };
530 if (lpClassId==NULL)
531 return E_POINTER;
533 memcpy(lpClassId, &StdFolderID, sizeof(StdFolderID));
535 return S_OK;
538 /************************************************************************
539 * IEIPersistFile_Load (IPersistFile)
541 static HRESULT WINAPI IEIPersistFile_fnLoad(IPersistFile* iface, LPCOLESTR pszFileName, DWORD dwMode)
543 _ICOM_THIS_From_IPersistFile(IExtractIconW, iface);
544 FIXME("%p\n", This);
545 return E_NOTIMPL;
549 static struct IPersistFileVtbl pfvt =
551 IEIPersistFile_fnQueryInterface,
552 IEIPersistFile_fnAddRef,
553 IEIPersistFile_fnRelease,
554 IEIPersistFile_fnGetClassID,
555 (void *) 0xdeadbeef /* IEIPersistFile_fnIsDirty */,
556 IEIPersistFile_fnLoad,
557 (void *) 0xdeadbeef /* IEIPersistFile_fnSave */,
558 (void *) 0xdeadbeef /* IEIPersistFile_fnSaveCompleted */,
559 (void *) 0xdeadbeef /* IEIPersistFile_fnGetCurFile */