dplayx: Implement proper interface locking for DP_EnumSession.
[wine/multimedia.git] / dlls / shell32 / shfldr_mycomp.c
blobe21a231ab2ddaeaba2d25caa57f77b8cbace4516
1 /*
2 * Virtual Workplace folder
4 * Copyright 1997 Marcus Meissner
5 * Copyright 1998, 1999, 2002 Juergen Schmied
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "config.h"
23 #include "wine/port.h"
25 #include <stdlib.h>
26 #include <string.h>
27 #include <stdarg.h>
28 #include <stdio.h>
30 #define COBJMACROS
31 #define NONAMELESSUNION
32 #define NONAMELESSSTRUCT
34 #include "winerror.h"
35 #include "windef.h"
36 #include "winbase.h"
37 #include "winreg.h"
39 #include "wingdi.h"
40 #include "pidl.h"
41 #include "shlguid.h"
42 #include "enumidlist.h"
43 #include "undocshell.h"
44 #include "shell32_main.h"
45 #include "shresdef.h"
46 #include "shlwapi.h"
47 #include "wine/debug.h"
48 #include "debughlp.h"
49 #include "shfldr.h"
51 WINE_DEFAULT_DEBUG_CHANNEL (shell);
53 /***********************************************************************
54 * IShellFolder implementation
57 typedef struct {
58 const IShellFolder2Vtbl *lpVtbl;
59 LONG ref;
60 const IPersistFolder2Vtbl *lpVtblPersistFolder2;
62 /* both paths are parsible from the desktop */
63 LPITEMIDLIST pidlRoot; /* absolute pidl */
64 } IGenericSFImpl;
66 static const IShellFolder2Vtbl vt_ShellFolder2;
67 static const IPersistFolder2Vtbl vt_PersistFolder2;
69 static inline IGenericSFImpl *impl_from_IPersistFolder2( IPersistFolder2 *iface )
71 return (IGenericSFImpl *)((char*)iface - FIELD_OFFSET(IGenericSFImpl, lpVtblPersistFolder2));
76 converts This to an interface pointer
78 #define _IUnknown_(This) (IUnknown*)&(This->lpVtbl)
79 #define _IShellFolder_(This) (IShellFolder*)&(This->lpVtbl)
80 #define _IShellFolder2_(This) (IShellFolder2*)&(This->lpVtbl)
82 #define _IPersist_(This) (IPersist*)&(This->lpVtblPersistFolder2)
83 #define _IPersistFolder_(This) (IPersistFolder*)&(This->lpVtblPersistFolder2)
84 #define _IPersistFolder2_(This) (IPersistFolder2*)&(This->lpVtblPersistFolder2)
86 /***********************************************************************
87 * IShellFolder [MyComputer] implementation
90 static const shvheader MyComputerSFHeader[] = {
91 {IDS_SHV_COLUMN1, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 15},
92 {IDS_SHV_COLUMN3, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 10},
93 {IDS_SHV_COLUMN6, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 10},
94 {IDS_SHV_COLUMN7, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 10},
97 #define MYCOMPUTERSHELLVIEWCOLUMNS 4
99 /**************************************************************************
100 * ISF_MyComputer_Constructor
102 HRESULT WINAPI ISF_MyComputer_Constructor (IUnknown * pUnkOuter, REFIID riid, LPVOID * ppv)
104 IGenericSFImpl *sf;
106 TRACE ("unkOut=%p %s\n", pUnkOuter, shdebugstr_guid (riid));
108 if (!ppv)
109 return E_POINTER;
110 if (pUnkOuter)
111 return CLASS_E_NOAGGREGATION;
113 sf = LocalAlloc (LMEM_ZEROINIT, sizeof (IGenericSFImpl));
114 if (!sf)
115 return E_OUTOFMEMORY;
117 sf->ref = 0;
118 sf->lpVtbl = &vt_ShellFolder2;
119 sf->lpVtblPersistFolder2 = &vt_PersistFolder2;
120 sf->pidlRoot = _ILCreateMyComputer (); /* my qualified pidl */
122 if (!SUCCEEDED (IUnknown_QueryInterface (_IUnknown_ (sf), riid, ppv)))
124 IUnknown_Release (_IUnknown_ (sf));
125 return E_NOINTERFACE;
128 TRACE ("--(%p)\n", sf);
129 return S_OK;
132 /**************************************************************************
133 * ISF_MyComputer_fnQueryInterface
135 * NOTES supports not IPersist/IPersistFolder
137 static HRESULT WINAPI ISF_MyComputer_fnQueryInterface (IShellFolder2 *iface,
138 REFIID riid, LPVOID *ppvObj)
140 IGenericSFImpl *This = (IGenericSFImpl *)iface;
142 TRACE ("(%p)->(%s,%p)\n", This, shdebugstr_guid (riid), ppvObj);
144 *ppvObj = NULL;
146 if (IsEqualIID (riid, &IID_IUnknown) ||
147 IsEqualIID (riid, &IID_IShellFolder) ||
148 IsEqualIID (riid, &IID_IShellFolder2))
150 *ppvObj = This;
152 else if (IsEqualIID (riid, &IID_IPersist) ||
153 IsEqualIID (riid, &IID_IPersistFolder) ||
154 IsEqualIID (riid, &IID_IPersistFolder2))
156 *ppvObj = _IPersistFolder2_ (This);
159 if (*ppvObj)
161 IUnknown_AddRef ((IUnknown *) (*ppvObj));
162 TRACE ("-- Interface: (%p)->(%p)\n", ppvObj, *ppvObj);
163 return S_OK;
165 TRACE ("-- Interface: E_NOINTERFACE\n");
166 return E_NOINTERFACE;
169 static ULONG WINAPI ISF_MyComputer_fnAddRef (IShellFolder2 * iface)
171 IGenericSFImpl *This = (IGenericSFImpl *)iface;
172 ULONG refCount = InterlockedIncrement(&This->ref);
174 TRACE ("(%p)->(count=%u)\n", This, refCount - 1);
176 return refCount;
179 static ULONG WINAPI ISF_MyComputer_fnRelease (IShellFolder2 * iface)
181 IGenericSFImpl *This = (IGenericSFImpl *)iface;
182 ULONG refCount = InterlockedDecrement(&This->ref);
184 TRACE ("(%p)->(count=%u)\n", This, refCount + 1);
186 if (!refCount)
188 TRACE ("-- destroying IShellFolder(%p)\n", This);
189 SHFree (This->pidlRoot);
190 LocalFree ((HLOCAL) This);
192 return refCount;
195 /**************************************************************************
196 * ISF_MyComputer_fnParseDisplayName
198 static HRESULT WINAPI ISF_MyComputer_fnParseDisplayName (IShellFolder2 *iface,
199 HWND hwndOwner, LPBC pbc, LPOLESTR lpszDisplayName,
200 DWORD * pchEaten, LPITEMIDLIST * ppidl, DWORD * pdwAttributes)
202 IGenericSFImpl *This = (IGenericSFImpl *)iface;
203 HRESULT hr = E_INVALIDARG;
204 LPCWSTR szNext = NULL;
205 WCHAR szElement[MAX_PATH];
206 LPITEMIDLIST pidlTemp = NULL;
207 CLSID clsid;
209 TRACE("(%p)->(HWND=%p,%p,%p=%s,%p,pidl=%p,%p)\n", This,
210 hwndOwner, pbc, lpszDisplayName, debugstr_w (lpszDisplayName),
211 pchEaten, ppidl, pdwAttributes);
213 *ppidl = 0;
214 if (pchEaten)
215 *pchEaten = 0; /* strange but like the original */
217 /* handle CLSID paths */
218 if (lpszDisplayName[0] == ':' && lpszDisplayName[1] == ':')
220 szNext = GetNextElementW (lpszDisplayName, szElement, MAX_PATH);
221 TRACE ("-- element: %s\n", debugstr_w (szElement));
222 SHCLSIDFromStringW (szElement + 2, &clsid);
223 pidlTemp = _ILCreateGuid (PT_GUID, &clsid);
225 /* do we have an absolute path name ? */
226 else if (PathGetDriveNumberW (lpszDisplayName) >= 0 &&
227 lpszDisplayName[2] == (WCHAR) '\\')
229 szNext = GetNextElementW (lpszDisplayName, szElement, MAX_PATH);
230 /* make drive letter uppercase to enable PIDL comparison */
231 szElement[0] = toupper(szElement[0]);
232 pidlTemp = _ILCreateDrive (szElement);
235 if (szNext && *szNext)
237 hr = SHELL32_ParseNextElement (iface, hwndOwner, pbc, &pidlTemp,
238 (LPOLESTR) szNext, pchEaten, pdwAttributes);
240 else
242 if (pdwAttributes && *pdwAttributes)
243 SHELL32_GetItemAttributes (_IShellFolder_ (This),
244 pidlTemp, pdwAttributes);
245 hr = S_OK;
248 *ppidl = pidlTemp;
250 TRACE ("(%p)->(-- ret=0x%08x)\n", This, hr);
252 return hr;
255 /**************************************************************************
256 * CreateMyCompEnumList()
258 static const WCHAR MyComputer_NameSpaceW[] = { 'S','O','F','T','W','A','R','E',
259 '\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\',
260 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\','E','x','p','l',
261 'o','r','e','r','\\','M','y','C','o','m','p','u','t','e','r','\\','N','a','m',
262 'e','s','p','a','c','e','\0' };
264 static BOOL CreateMyCompEnumList(IEnumIDList *list, DWORD dwFlags)
266 BOOL ret = TRUE;
268 TRACE("(%p)->(flags=0x%08x)\n", list, dwFlags);
270 /* enumerate the folders */
271 if (dwFlags & SHCONTF_FOLDERS)
273 WCHAR wszDriveName[] = {'A', ':', '\\', '\0'};
274 DWORD dwDrivemap = GetLogicalDrives();
275 HKEY hkey;
276 UINT i;
278 while (ret && wszDriveName[0]<='Z')
280 if(dwDrivemap & 0x00000001L)
281 ret = AddToEnumList(list, _ILCreateDrive(wszDriveName));
282 wszDriveName[0]++;
283 dwDrivemap = dwDrivemap >> 1;
286 TRACE("-- (%p)-> enumerate (mycomputer shell extensions)\n",list);
287 for (i=0; i<2; i++) {
288 if (ret && !RegOpenKeyExW(i == 0 ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER,
289 MyComputer_NameSpaceW, 0, KEY_READ, &hkey))
291 WCHAR iid[50];
292 int i=0;
294 while (ret)
296 DWORD size;
297 LONG r;
299 size = sizeof(iid) / sizeof(iid[0]);
300 r = RegEnumKeyExW(hkey, i, iid, &size, 0, NULL, NULL, NULL);
301 if (ERROR_SUCCESS == r)
303 /* FIXME: shell extensions, shouldn't the type be
304 * PT_SHELLEXT? */
305 ret = AddToEnumList(list, _ILCreateGuidFromStrW(iid));
306 i++;
308 else if (ERROR_NO_MORE_ITEMS == r)
309 break;
310 else
311 ret = FALSE;
313 RegCloseKey(hkey);
317 return ret;
320 /**************************************************************************
321 * ISF_MyComputer_fnEnumObjects
323 static HRESULT WINAPI ISF_MyComputer_fnEnumObjects (IShellFolder2 *iface,
324 HWND hwndOwner, DWORD dwFlags, LPENUMIDLIST *ppEnumIDList)
326 IGenericSFImpl *This = (IGenericSFImpl *)iface;
328 TRACE("(%p)->(HWND=%p flags=0x%08x pplist=%p)\n", This,
329 hwndOwner, dwFlags, ppEnumIDList);
331 *ppEnumIDList = IEnumIDList_Constructor();
332 if (*ppEnumIDList)
333 CreateMyCompEnumList(*ppEnumIDList, dwFlags);
335 TRACE ("-- (%p)->(new ID List: %p)\n", This, *ppEnumIDList);
337 return (*ppEnumIDList) ? S_OK : E_OUTOFMEMORY;
340 /**************************************************************************
341 * ISF_MyComputer_fnBindToObject
343 static HRESULT WINAPI ISF_MyComputer_fnBindToObject (IShellFolder2 *iface,
344 LPCITEMIDLIST pidl, LPBC pbcReserved, REFIID riid, LPVOID *ppvOut)
346 IGenericSFImpl *This = (IGenericSFImpl *)iface;
348 TRACE("(%p)->(pidl=%p,%p,%s,%p)\n", This,
349 pidl, pbcReserved, shdebugstr_guid (riid), ppvOut);
351 return SHELL32_BindToChild (This->pidlRoot, NULL, pidl, riid, ppvOut);
354 /**************************************************************************
355 * ISF_MyComputer_fnBindToStorage
357 static HRESULT WINAPI ISF_MyComputer_fnBindToStorage (IShellFolder2 * iface,
358 LPCITEMIDLIST pidl, LPBC pbcReserved, REFIID riid, LPVOID *ppvOut)
360 IGenericSFImpl *This = (IGenericSFImpl *)iface;
362 FIXME("(%p)->(pidl=%p,%p,%s,%p) stub\n", This,
363 pidl, pbcReserved, shdebugstr_guid (riid), ppvOut);
365 *ppvOut = NULL;
366 return E_NOTIMPL;
369 /**************************************************************************
370 * ISF_MyComputer_fnCompareIDs
373 static HRESULT WINAPI ISF_MyComputer_fnCompareIDs (IShellFolder2 *iface,
374 LPARAM lParam, LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2)
376 IGenericSFImpl *This = (IGenericSFImpl *)iface;
377 int nReturn;
379 TRACE ("(%p)->(0x%08lx,pidl1=%p,pidl2=%p)\n", This, lParam, pidl1, pidl2);
380 nReturn = SHELL32_CompareIDs (_IShellFolder_ (This), lParam, pidl1, pidl2);
381 TRACE ("-- %i\n", nReturn);
382 return nReturn;
385 /**************************************************************************
386 * ISF_MyComputer_fnCreateViewObject
388 static HRESULT WINAPI ISF_MyComputer_fnCreateViewObject (IShellFolder2 *iface,
389 HWND hwndOwner, REFIID riid, LPVOID * ppvOut)
391 IGenericSFImpl *This = (IGenericSFImpl *)iface;
392 LPSHELLVIEW pShellView;
393 HRESULT hr = E_INVALIDARG;
395 TRACE("(%p)->(hwnd=%p,%s,%p)\n", This,
396 hwndOwner, shdebugstr_guid (riid), ppvOut);
398 if (!ppvOut)
399 return hr;
401 *ppvOut = NULL;
403 if (IsEqualIID (riid, &IID_IDropTarget))
405 WARN ("IDropTarget not implemented\n");
406 hr = E_NOTIMPL;
408 else if (IsEqualIID (riid, &IID_IContextMenu))
410 WARN ("IContextMenu not implemented\n");
411 hr = E_NOTIMPL;
413 else if (IsEqualIID (riid, &IID_IShellView))
415 pShellView = IShellView_Constructor ((IShellFolder *) iface);
416 if (pShellView)
418 hr = IShellView_QueryInterface (pShellView, riid, ppvOut);
419 IShellView_Release (pShellView);
422 TRACE ("-- (%p)->(interface=%p)\n", This, ppvOut);
423 return hr;
426 /**************************************************************************
427 * ISF_MyComputer_fnGetAttributesOf
429 static HRESULT WINAPI ISF_MyComputer_fnGetAttributesOf (IShellFolder2 * iface,
430 UINT cidl, LPCITEMIDLIST * apidl, DWORD * rgfInOut)
432 IGenericSFImpl *This = (IGenericSFImpl *)iface;
433 HRESULT hr = S_OK;
435 TRACE ("(%p)->(cidl=%d apidl=%p mask=%p (0x%08x))\n",
436 This, cidl, apidl, rgfInOut, rgfInOut ? *rgfInOut : 0);
438 if (!rgfInOut)
439 return E_INVALIDARG;
440 if (cidl && !apidl)
441 return E_INVALIDARG;
443 if (*rgfInOut == 0)
444 *rgfInOut = ~0;
446 if(cidl == 0){
447 IShellFolder *psfParent = NULL;
448 LPCITEMIDLIST rpidl = NULL;
450 hr = SHBindToParent(This->pidlRoot, &IID_IShellFolder, (LPVOID*)&psfParent, (LPCITEMIDLIST*)&rpidl);
451 if(SUCCEEDED(hr)) {
452 SHELL32_GetItemAttributes (psfParent, rpidl, rgfInOut);
453 IShellFolder_Release(psfParent);
455 } else {
456 while (cidl > 0 && *apidl) {
457 pdump (*apidl);
458 SHELL32_GetItemAttributes (_IShellFolder_ (This), *apidl, rgfInOut);
459 apidl++;
460 cidl--;
463 /* make sure SFGAO_VALIDATE is cleared, some apps depend on that */
464 *rgfInOut &= ~SFGAO_VALIDATE;
466 TRACE ("-- result=0x%08x\n", *rgfInOut);
467 return hr;
470 /**************************************************************************
471 * ISF_MyComputer_fnGetUIObjectOf
473 * PARAMETERS
474 * hwndOwner [in] Parent window for any output
475 * cidl [in] array size
476 * apidl [in] simple pidl array
477 * riid [in] Requested Interface
478 * prgfInOut [ ] reserved
479 * ppvObject [out] Resulting Interface
482 static HRESULT WINAPI ISF_MyComputer_fnGetUIObjectOf (IShellFolder2 * iface,
483 HWND hwndOwner, UINT cidl, LPCITEMIDLIST * apidl, REFIID riid,
484 UINT * prgfInOut, LPVOID * ppvOut)
486 IGenericSFImpl *This = (IGenericSFImpl *)iface;
488 LPITEMIDLIST pidl;
489 IUnknown *pObj = NULL;
490 HRESULT hr = E_INVALIDARG;
492 TRACE("(%p)->(%p,%u,apidl=%p,%s,%p,%p)\n", This,
493 hwndOwner, cidl, apidl, shdebugstr_guid (riid), prgfInOut, ppvOut);
495 if (!ppvOut)
496 return hr;
498 *ppvOut = NULL;
500 if (IsEqualIID (riid, &IID_IContextMenu) && (cidl >= 1))
502 pObj = (LPUNKNOWN) ISvItemCm_Constructor ((IShellFolder *) iface,
503 This->pidlRoot, apidl, cidl);
504 hr = S_OK;
506 else if (IsEqualIID (riid, &IID_IDataObject) && (cidl >= 1))
508 pObj = (LPUNKNOWN) IDataObject_Constructor (hwndOwner,
509 This->pidlRoot, apidl, cidl);
510 hr = S_OK;
512 else if (IsEqualIID (riid, &IID_IExtractIconA) && (cidl == 1))
514 pidl = ILCombine (This->pidlRoot, apidl[0]);
515 pObj = (LPUNKNOWN) IExtractIconA_Constructor (pidl);
516 SHFree (pidl);
517 hr = S_OK;
519 else if (IsEqualIID (riid, &IID_IExtractIconW) && (cidl == 1))
521 pidl = ILCombine (This->pidlRoot, apidl[0]);
522 pObj = (LPUNKNOWN) IExtractIconW_Constructor (pidl);
523 SHFree (pidl);
524 hr = S_OK;
526 else if (IsEqualIID (riid, &IID_IDropTarget) && (cidl >= 1))
528 hr = IShellFolder_QueryInterface (iface, &IID_IDropTarget,
529 (LPVOID *) &pObj);
531 else if ((IsEqualIID(riid,&IID_IShellLinkW) ||
532 IsEqualIID(riid,&IID_IShellLinkA)) && (cidl == 1))
534 pidl = ILCombine (This->pidlRoot, apidl[0]);
535 hr = IShellLink_ConstructFromFile(NULL, riid, pidl, (LPVOID*) &pObj);
536 SHFree (pidl);
538 else
539 hr = E_NOINTERFACE;
541 if (SUCCEEDED(hr) && !pObj)
542 hr = E_OUTOFMEMORY;
544 *ppvOut = pObj;
545 TRACE ("(%p)->hr=0x%08x\n", This, hr);
546 return hr;
549 /**************************************************************************
550 * ISF_MyComputer_fnGetDisplayNameOf
552 static HRESULT WINAPI ISF_MyComputer_fnGetDisplayNameOf (IShellFolder2 *iface,
553 LPCITEMIDLIST pidl, DWORD dwFlags, LPSTRRET strRet)
555 IGenericSFImpl *This = (IGenericSFImpl *)iface;
557 WCHAR wszPath[MAX_PATH];
558 HRESULT hr = S_OK;
560 TRACE ("(%p)->(pidl=%p,0x%08x,%p)\n", This, pidl, dwFlags, strRet);
561 pdump (pidl);
563 if (!strRet)
564 return E_INVALIDARG;
566 wszPath[0] = 0;
568 if (!pidl->mkid.cb)
570 /* parsing name like ::{...} */
571 wszPath[0] = ':';
572 wszPath[1] = ':';
573 SHELL32_GUIDToStringW(&CLSID_MyComputer, &wszPath[2]);
575 else if (_ILIsPidlSimple(pidl))
577 /* take names of special folders only if its only this folder */
578 if (_ILIsSpecialFolder(pidl))
580 GUID const *clsid;
582 clsid = _ILGetGUIDPointer (pidl);
583 if (clsid)
585 if (GET_SHGDN_FOR (dwFlags) & SHGDN_FORPARSING)
587 static const WCHAR clsidW[] =
588 { 'C','L','S','I','D','\\',0 };
589 static const WCHAR shellfolderW[] =
590 { '\\','s','h','e','l','l','f','o','l','d','e','r',0 };
591 static const WCHAR wantsForParsingW[] =
592 { 'W','a','n','t','s','F','o','r','P','a','r','s','i','n',
593 'g',0 };
594 int bWantsForParsing = FALSE;
595 WCHAR szRegPath[100];
596 LONG r;
599 * We can only get a filesystem path from a shellfolder
600 * if the value WantsFORPARSING exists in
601 * CLSID\\{...}\\shellfolder
602 * exception: the MyComputer folder has this keys not
603 * but like any filesystem backed
604 * folder it needs these behaviour
606 * Get the "WantsFORPARSING" flag from the registry
609 lstrcpyW (szRegPath, clsidW);
610 SHELL32_GUIDToStringW (clsid, &szRegPath[6]);
611 lstrcatW (szRegPath, shellfolderW);
612 r = SHGetValueW (HKEY_CLASSES_ROOT, szRegPath,
613 wantsForParsingW, NULL, NULL, NULL);
614 if (r == ERROR_SUCCESS)
615 bWantsForParsing = TRUE;
617 if ((GET_SHGDN_RELATION (dwFlags) == SHGDN_NORMAL) &&
618 bWantsForParsing)
621 * We need the filesystem path to the destination folder
622 * Only the folder itself can know it
624 hr = SHELL32_GetDisplayNameOfChild (iface, pidl,
625 dwFlags, wszPath, MAX_PATH);
627 else
629 LPWSTR p = wszPath;
631 /* parsing name like ::{...} */
632 p[0] = ':';
633 p[1] = ':';
634 p += 2;
635 p += SHELL32_GUIDToStringW(&CLSID_MyComputer, p);
637 /* \:: */
638 p[0] = '\\';
639 p[1] = ':';
640 p[2] = ':';
641 p += 3;
642 SHELL32_GUIDToStringW(clsid, p);
645 else
647 /* user friendly name */
648 HCR_GetClassNameW (clsid, wszPath, MAX_PATH);
651 else
653 /* append my own path */
654 _ILSimpleGetTextW (pidl, wszPath, MAX_PATH);
657 else if (_ILIsDrive(pidl))
659 _ILSimpleGetTextW (pidl, wszPath, MAX_PATH); /* append my own path */
661 /* long view "lw_name (C:)" */
662 if (!(dwFlags & SHGDN_FORPARSING))
664 DWORD dwVolumeSerialNumber, dwMaximumComponetLength, dwFileSystemFlags;
665 WCHAR wszDrive[18] = {0};
666 static const WCHAR wszOpenBracket[] = {' ','(',0};
667 static const WCHAR wszCloseBracket[] = {')',0};
669 GetVolumeInformationW (wszPath, wszDrive,
670 sizeof(wszDrive)/sizeof(wszDrive[0]) - 6,
671 &dwVolumeSerialNumber,
672 &dwMaximumComponetLength, &dwFileSystemFlags, NULL, 0);
673 strcatW (wszDrive, wszOpenBracket);
674 lstrcpynW (wszDrive + strlenW(wszDrive), wszPath, 3);
675 strcatW (wszDrive, wszCloseBracket);
676 strcpyW (wszPath, wszDrive);
679 else
681 /* Neither a shell namespace extension nor a drive letter. */
682 ERR("Wrong pidl type\n");
683 return E_INVALIDARG;
686 else
688 /* Complex pidl. Let the child folder do the work */
689 hr = SHELL32_GetDisplayNameOfChild(iface, pidl, dwFlags, wszPath, MAX_PATH);
692 if (SUCCEEDED (hr))
694 strRet->uType = STRRET_CSTR;
695 if (!WideCharToMultiByte(CP_ACP, 0, wszPath, -1, strRet->u.cStr, MAX_PATH,
696 NULL, NULL))
697 strRet->u.cStr[0] = '\0';
700 TRACE ("-- (%p)->(%s)\n", This, debugstr_w(wszPath));
701 return hr;
704 /**************************************************************************
705 * ISF_MyComputer_fnSetNameOf
706 * Changes the name of a file object or subfolder, possibly changing its item
707 * identifier in the process.
709 * PARAMETERS
710 * hwndOwner [in] Owner window for output
711 * pidl [in] simple pidl of item to change
712 * lpszName [in] the items new display name
713 * dwFlags [in] SHGNO formatting flags
714 * ppidlOut [out] simple pidl returned
716 static HRESULT WINAPI ISF_MyComputer_fnSetNameOf (
717 IShellFolder2 * iface, HWND hwndOwner, LPCITEMIDLIST pidl,
718 LPCOLESTR lpName, DWORD dwFlags, LPITEMIDLIST * pPidlOut)
720 IGenericSFImpl *This = (IGenericSFImpl *)iface;
721 FIXME ("(%p)->(%p,pidl=%p,%s,%u,%p)\n", This,
722 hwndOwner, pidl, debugstr_w (lpName), dwFlags, pPidlOut);
723 return E_FAIL;
726 static HRESULT WINAPI ISF_MyComputer_fnGetDefaultSearchGUID (
727 IShellFolder2 * iface, GUID * pguid)
729 IGenericSFImpl *This = (IGenericSFImpl *)iface;
730 FIXME ("(%p)\n", This);
731 return E_NOTIMPL;
733 static HRESULT WINAPI ISF_MyComputer_fnEnumSearches (
734 IShellFolder2 * iface, IEnumExtraSearch ** ppenum)
736 IGenericSFImpl *This = (IGenericSFImpl *)iface;
737 FIXME ("(%p)\n", This);
738 return E_NOTIMPL;
740 static HRESULT WINAPI ISF_MyComputer_fnGetDefaultColumn (
741 IShellFolder2 *iface, DWORD dwRes, ULONG *pSort, ULONG *pDisplay)
743 IGenericSFImpl *This = (IGenericSFImpl *)iface;
745 TRACE ("(%p)\n", This);
747 if (pSort)
748 *pSort = 0;
749 if (pDisplay)
750 *pDisplay = 0;
751 return S_OK;
753 static HRESULT WINAPI ISF_MyComputer_fnGetDefaultColumnState (
754 IShellFolder2 * iface, UINT iColumn, DWORD * pcsFlags)
756 IGenericSFImpl *This = (IGenericSFImpl *)iface;
758 TRACE ("(%p)\n", This);
760 if (!pcsFlags || iColumn >= MYCOMPUTERSHELLVIEWCOLUMNS)
761 return E_INVALIDARG;
762 *pcsFlags = MyComputerSFHeader[iColumn].pcsFlags;
763 return S_OK;
766 static HRESULT WINAPI ISF_MyComputer_fnGetDetailsEx (IShellFolder2 * iface,
767 LPCITEMIDLIST pidl, const SHCOLUMNID * pscid, VARIANT * pv)
769 IGenericSFImpl *This = (IGenericSFImpl *)iface;
770 FIXME ("(%p)\n", This);
771 return E_NOTIMPL;
774 /* FIXME: drive size >4GB is rolling over */
775 static HRESULT WINAPI ISF_MyComputer_fnGetDetailsOf (IShellFolder2 * iface,
776 LPCITEMIDLIST pidl, UINT iColumn, SHELLDETAILS * psd)
778 IGenericSFImpl *This = (IGenericSFImpl *)iface;
779 HRESULT hr;
781 TRACE ("(%p)->(%p %i %p)\n", This, pidl, iColumn, psd);
783 if (!psd || iColumn >= MYCOMPUTERSHELLVIEWCOLUMNS)
784 return E_INVALIDARG;
786 if (!pidl)
788 psd->fmt = MyComputerSFHeader[iColumn].fmt;
789 psd->cxChar = MyComputerSFHeader[iColumn].cxChar;
790 psd->str.uType = STRRET_CSTR;
791 LoadStringA (shell32_hInstance, MyComputerSFHeader[iColumn].colnameid,
792 psd->str.u.cStr, MAX_PATH);
793 return S_OK;
795 else
797 char szPath[MAX_PATH];
798 ULARGE_INTEGER ulBytes;
800 psd->str.u.cStr[0] = 0x00;
801 psd->str.uType = STRRET_CSTR;
802 switch (iColumn)
804 case 0: /* name */
805 hr = IShellFolder_GetDisplayNameOf (iface, pidl,
806 SHGDN_NORMAL | SHGDN_INFOLDER, &psd->str);
807 break;
808 case 1: /* type */
809 _ILGetFileType (pidl, psd->str.u.cStr, MAX_PATH);
810 break;
811 case 2: /* total size */
812 if (_ILIsDrive (pidl))
814 _ILSimpleGetText (pidl, szPath, MAX_PATH);
815 GetDiskFreeSpaceExA (szPath, NULL, &ulBytes, NULL);
816 StrFormatByteSizeA (ulBytes.u.LowPart, psd->str.u.cStr, MAX_PATH);
818 break;
819 case 3: /* free size */
820 if (_ILIsDrive (pidl))
822 _ILSimpleGetText (pidl, szPath, MAX_PATH);
823 GetDiskFreeSpaceExA (szPath, &ulBytes, NULL, NULL);
824 StrFormatByteSizeA (ulBytes.u.LowPart, psd->str.u.cStr, MAX_PATH);
826 break;
828 hr = S_OK;
831 return hr;
834 static HRESULT WINAPI ISF_MyComputer_fnMapColumnToSCID (
835 IShellFolder2 * iface, UINT column, SHCOLUMNID * pscid)
837 IGenericSFImpl *This = (IGenericSFImpl *)iface;
838 FIXME ("(%p)\n", This);
839 return E_NOTIMPL;
842 static const IShellFolder2Vtbl vt_ShellFolder2 =
844 ISF_MyComputer_fnQueryInterface,
845 ISF_MyComputer_fnAddRef,
846 ISF_MyComputer_fnRelease,
847 ISF_MyComputer_fnParseDisplayName,
848 ISF_MyComputer_fnEnumObjects,
849 ISF_MyComputer_fnBindToObject,
850 ISF_MyComputer_fnBindToStorage,
851 ISF_MyComputer_fnCompareIDs,
852 ISF_MyComputer_fnCreateViewObject,
853 ISF_MyComputer_fnGetAttributesOf,
854 ISF_MyComputer_fnGetUIObjectOf,
855 ISF_MyComputer_fnGetDisplayNameOf,
856 ISF_MyComputer_fnSetNameOf,
857 /* ShellFolder2 */
858 ISF_MyComputer_fnGetDefaultSearchGUID,
859 ISF_MyComputer_fnEnumSearches,
860 ISF_MyComputer_fnGetDefaultColumn,
861 ISF_MyComputer_fnGetDefaultColumnState,
862 ISF_MyComputer_fnGetDetailsEx,
863 ISF_MyComputer_fnGetDetailsOf,
864 ISF_MyComputer_fnMapColumnToSCID
867 /************************************************************************
868 * IMCFldr_PersistFolder2_QueryInterface
870 static HRESULT WINAPI IMCFldr_PersistFolder2_QueryInterface (
871 IPersistFolder2 * iface, REFIID iid, LPVOID * ppvObj)
873 IGenericSFImpl *This = impl_from_IPersistFolder2(iface);
875 TRACE ("(%p)\n", This);
877 return IUnknown_QueryInterface (_IUnknown_ (This), iid, ppvObj);
880 /************************************************************************
881 * IMCFldr_PersistFolder2_AddRef
883 static ULONG WINAPI IMCFldr_PersistFolder2_AddRef (IPersistFolder2 * iface)
885 IGenericSFImpl *This = impl_from_IPersistFolder2(iface);
887 TRACE ("(%p)->(count=%u)\n", This, This->ref);
889 return IUnknown_AddRef (_IUnknown_ (This));
892 /************************************************************************
893 * ISFPersistFolder_Release
895 static ULONG WINAPI IMCFldr_PersistFolder2_Release (IPersistFolder2 * iface)
897 IGenericSFImpl *This = impl_from_IPersistFolder2(iface);
899 TRACE ("(%p)->(count=%u)\n", This, This->ref);
901 return IUnknown_Release (_IUnknown_ (This));
904 /************************************************************************
905 * IMCFldr_PersistFolder2_GetClassID
907 static HRESULT WINAPI IMCFldr_PersistFolder2_GetClassID (
908 IPersistFolder2 * iface, CLSID * lpClassId)
910 IGenericSFImpl *This = impl_from_IPersistFolder2(iface);
912 TRACE ("(%p)\n", This);
914 if (!lpClassId)
915 return E_POINTER;
916 *lpClassId = CLSID_MyComputer;
918 return S_OK;
921 /************************************************************************
922 * IMCFldr_PersistFolder2_Initialize
924 * NOTES: it makes no sense to change the pidl
926 static HRESULT WINAPI IMCFldr_PersistFolder2_Initialize (
927 IPersistFolder2 * iface, LPCITEMIDLIST pidl)
929 IGenericSFImpl *This = impl_from_IPersistFolder2(iface);
930 TRACE ("(%p)->(%p)\n", This, pidl);
931 return E_NOTIMPL;
934 /**************************************************************************
935 * IPersistFolder2_fnGetCurFolder
937 static HRESULT WINAPI IMCFldr_PersistFolder2_GetCurFolder (
938 IPersistFolder2 * iface, LPITEMIDLIST * pidl)
940 IGenericSFImpl *This = impl_from_IPersistFolder2(iface);
942 TRACE ("(%p)->(%p)\n", This, pidl);
944 if (!pidl)
945 return E_POINTER;
946 *pidl = ILClone (This->pidlRoot);
947 return S_OK;
950 static const IPersistFolder2Vtbl vt_PersistFolder2 =
952 IMCFldr_PersistFolder2_QueryInterface,
953 IMCFldr_PersistFolder2_AddRef,
954 IMCFldr_PersistFolder2_Release,
955 IMCFldr_PersistFolder2_GetClassID,
956 IMCFldr_PersistFolder2_Initialize,
957 IMCFldr_PersistFolder2_GetCurFolder