Added WC_STATIC.
[wine/hacks.git] / dlls / shell32 / shfldr_fs.c
blob8329c87a24fcd19f2d8829641d34a7f117621fb6
2 /*
3 * file system folder
5 * Copyright 1997 Marcus Meissner
6 * Copyright 1998, 1999, 2002 Juergen Schmied
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
23 #include "config.h"
24 #include "wine/port.h"
26 #include <stdlib.h>
27 #include <string.h>
28 #include <stdarg.h>
29 #include <stdio.h>
31 #define COBJMACROS
32 #define NONAMELESSUNION
33 #define NONAMELESSSTRUCT
35 #include "winerror.h"
36 #include "windef.h"
37 #include "winbase.h"
38 #include "winreg.h"
39 #include "wingdi.h"
40 #include "winuser.h"
42 #include "ole2.h"
43 #include "shlguid.h"
45 #include "enumidlist.h"
46 #include "pidl.h"
47 #include "undocshell.h"
48 #include "shell32_main.h"
49 #include "shresdef.h"
50 #include "shlwapi.h"
51 #include "shellfolder.h"
52 #include "wine/debug.h"
53 #include "debughlp.h"
54 #include "shfldr.h"
56 WINE_DEFAULT_DEBUG_CHANNEL (shell);
58 /***********************************************************************
59 * IShellFolder implementation
62 typedef struct {
63 const IUnknownVtbl *lpVtbl;
64 LONG ref;
65 const IShellFolder2Vtbl *lpvtblShellFolder;
66 const IPersistFolder3Vtbl *lpvtblPersistFolder3;
67 const IDropTargetVtbl *lpvtblDropTarget;
68 const ISFHelperVtbl *lpvtblSFHelper;
70 IUnknown *pUnkOuter; /* used for aggregation */
72 CLSID *pclsid;
74 /* both paths are parsible from the desktop */
75 LPSTR sPathTarget; /* complete path to target used for enumeration and ChangeNotify */
77 LPITEMIDLIST pidlRoot; /* absolute pidl */
79 UINT cfShellIDList; /* clipboardformat for IDropTarget */
80 BOOL fAcceptFmt; /* flag for pending Drop */
81 } IGenericSFImpl;
83 static const IUnknownVtbl unkvt;
84 static const IShellFolder2Vtbl sfvt;
85 static const IPersistFolder3Vtbl vt_FSFldr_PersistFolder3; /* IPersistFolder3 for a FS_Folder */
86 static const IDropTargetVtbl dtvt;
87 static const ISFHelperVtbl shvt;
89 #define _IShellFolder2_Offset ((int)(&(((IGenericSFImpl*)0)->lpvtblShellFolder)))
90 #define _ICOM_THIS_From_IShellFolder2(class, name) class* This = (class*)(((char*)name)-_IShellFolder2_Offset);
92 #define _IPersistFolder2_Offset ((int)(&(((IGenericSFImpl*)0)->lpvtblPersistFolder3)))
93 #define _ICOM_THIS_From_IPersistFolder2(class, name) class* This = (class*)(((char*)name)-_IPersistFolder2_Offset);
95 #define _IPersistFolder3_Offset ((int)(&(((IGenericSFImpl*)0)->lpvtblPersistFolder3)))
96 #define _ICOM_THIS_From_IPersistFolder3(class, name) class* This = (class*)(((char*)name)-_IPersistFolder3_Offset);
98 #define _IDropTarget_Offset ((int)(&(((IGenericSFImpl*)0)->lpvtblDropTarget)))
99 #define _ICOM_THIS_From_IDropTarget(class, name) class* This = (class*)(((char*)name)-_IDropTarget_Offset);
101 #define _ISFHelper_Offset ((int)(&(((IGenericSFImpl*)0)->lpvtblSFHelper)))
102 #define _ICOM_THIS_From_ISFHelper(class, name) class* This = (class*)(((char*)name)-_ISFHelper_Offset);
105 converts This to an interface pointer
107 #define _IUnknown_(This) (IUnknown*)&(This->lpVtbl)
108 #define _IShellFolder_(This) (IShellFolder*)&(This->lpvtblShellFolder)
109 #define _IShellFolder2_(This) (IShellFolder2*)&(This->lpvtblShellFolder)
110 #define _IPersist_(This) (IPersist*)&(This->lpvtblPersistFolder3)
111 #define _IPersistFolder_(This) (IPersistFolder*)&(This->lpvtblPersistFolder3)
112 #define _IPersistFolder2_(This) (IPersistFolder2*)&(This->lpvtblPersistFolder3)
113 #define _IPersistFolder3_(This) (IPersistFolder3*)&(This->lpvtblPersistFolder3)
114 #define _IDropTarget_(This) (IDropTarget*)&(This->lpvtblDropTarget)
115 #define _ISFHelper_(This) (ISFHelper*)&(This->lpvtblSFHelper)
117 /**************************************************************************
118 * registers clipboardformat once
120 static void SF_RegisterClipFmt (IGenericSFImpl * This)
122 TRACE ("(%p)\n", This);
124 if (!This->cfShellIDList) {
125 This->cfShellIDList = RegisterClipboardFormatA (CFSTR_SHELLIDLIST);
129 /**************************************************************************
130 * we need a separate IUnknown to handle aggregation
131 * (inner IUnknown)
133 static HRESULT WINAPI IUnknown_fnQueryInterface (IUnknown * iface, REFIID riid, LPVOID * ppvObj)
135 IGenericSFImpl *This = (IGenericSFImpl *)iface;
137 TRACE ("(%p)->(%s,%p)\n", This, shdebugstr_guid (riid), ppvObj);
139 *ppvObj = NULL;
141 if (IsEqualIID (riid, &IID_IUnknown))
142 *ppvObj = _IUnknown_ (This);
143 else if (IsEqualIID (riid, &IID_IShellFolder))
144 *ppvObj = _IShellFolder_ (This);
145 else if (IsEqualIID (riid, &IID_IShellFolder2))
146 *ppvObj = _IShellFolder_ (This);
147 else if (IsEqualIID (riid, &IID_IPersist))
148 *ppvObj = _IPersist_ (This);
149 else if (IsEqualIID (riid, &IID_IPersistFolder))
150 *ppvObj = _IPersistFolder_ (This);
151 else if (IsEqualIID (riid, &IID_IPersistFolder2))
152 *ppvObj = _IPersistFolder2_ (This);
153 else if (IsEqualIID (riid, &IID_IPersistFolder3))
154 *ppvObj = _IPersistFolder3_ (This);
155 else if (IsEqualIID (riid, &IID_ISFHelper))
156 *ppvObj = _ISFHelper_ (This);
157 else if (IsEqualIID (riid, &IID_IDropTarget)) {
158 *ppvObj = _IDropTarget_ (This);
159 SF_RegisterClipFmt (This);
162 if (*ppvObj) {
163 IUnknown_AddRef ((IUnknown *) (*ppvObj));
164 TRACE ("-- Interface = %p\n", *ppvObj);
165 return S_OK;
167 TRACE ("-- Interface: E_NOINTERFACE\n");
168 return E_NOINTERFACE;
171 static ULONG WINAPI IUnknown_fnAddRef (IUnknown * iface)
173 IGenericSFImpl *This = (IGenericSFImpl *)iface;
174 ULONG refCount = InterlockedIncrement(&This->ref);
176 TRACE ("(%p)->(count=%lu)\n", This, refCount - 1);
178 return refCount;
181 static ULONG WINAPI IUnknown_fnRelease (IUnknown * iface)
183 IGenericSFImpl *This = (IGenericSFImpl *)iface;
184 ULONG refCount = InterlockedDecrement(&This->ref);
186 TRACE ("(%p)->(count=%lu)\n", This, refCount + 1);
188 if (!refCount) {
189 TRACE ("-- destroying IShellFolder(%p)\n", This);
191 if (This->pidlRoot)
192 SHFree (This->pidlRoot);
193 if (This->sPathTarget)
194 SHFree (This->sPathTarget);
195 LocalFree ((HLOCAL) This);
197 return refCount;
200 static const IUnknownVtbl unkvt =
202 IUnknown_fnQueryInterface,
203 IUnknown_fnAddRef,
204 IUnknown_fnRelease,
207 static shvheader GenericSFHeader[] = {
208 {IDS_SHV_COLUMN1, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 15},
209 {IDS_SHV_COLUMN2, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 10},
210 {IDS_SHV_COLUMN3, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 10},
211 {IDS_SHV_COLUMN4, SHCOLSTATE_TYPE_DATE | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 12},
212 {IDS_SHV_COLUMN5, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 5}
215 #define GENERICSHELLVIEWCOLUMNS 5
217 /**************************************************************************
218 * IFSFolder_Constructor
220 * NOTES
221 * creating undocumented ShellFS_Folder as part of an aggregation
222 * {F3364BA0-65B9-11CE-A9BA-00AA004AE837}
225 HRESULT WINAPI
226 IFSFolder_Constructor (IUnknown * pUnkOuter, REFIID riid, LPVOID * ppv)
228 IGenericSFImpl *sf;
230 TRACE ("unkOut=%p %s\n", pUnkOuter, shdebugstr_guid (riid));
232 if (pUnkOuter && !IsEqualIID (riid, &IID_IUnknown))
233 return CLASS_E_NOAGGREGATION;
234 sf = (IGenericSFImpl *) LocalAlloc (LMEM_ZEROINIT, sizeof (IGenericSFImpl));
235 if (!sf)
236 return E_OUTOFMEMORY;
238 sf->ref = 0;
239 sf->lpVtbl = &unkvt;
240 sf->lpvtblShellFolder = &sfvt;
241 sf->lpvtblPersistFolder3 = &vt_FSFldr_PersistFolder3;
242 sf->lpvtblDropTarget = &dtvt;
243 sf->lpvtblSFHelper = &shvt;
244 sf->pclsid = (CLSID *) & CLSID_ShellFSFolder;
245 sf->pUnkOuter = pUnkOuter ? pUnkOuter : _IUnknown_ (sf);
247 if (!SUCCEEDED (IUnknown_QueryInterface (_IUnknown_ (sf), riid, ppv))) {
248 IUnknown_Release (_IUnknown_ (sf));
249 return E_NOINTERFACE;
252 TRACE ("--%p\n", *ppv);
253 return S_OK;
256 /**************************************************************************
257 * IShellFolder_fnQueryInterface
259 * PARAMETERS
260 * REFIID riid [in ] Requested InterfaceID
261 * LPVOID* ppvObject [out] Interface* to hold the result
263 static HRESULT WINAPI
264 IShellFolder_fnQueryInterface (IShellFolder2 * iface, REFIID riid,
265 LPVOID * ppvObj)
267 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
269 TRACE ("(%p)->(%s,%p)\n", This, shdebugstr_guid (riid), ppvObj);
271 return IUnknown_QueryInterface (This->pUnkOuter, riid, ppvObj);
274 /**************************************************************************
275 * IShellFolder_AddRef
278 static ULONG WINAPI IShellFolder_fnAddRef (IShellFolder2 * iface)
280 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
282 TRACE ("(%p)->(count=%lu)\n", This, This->ref);
284 return IUnknown_AddRef (This->pUnkOuter);
287 /**************************************************************************
288 * IShellFolder_fnRelease
290 static ULONG WINAPI IShellFolder_fnRelease (IShellFolder2 * iface)
292 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
294 TRACE ("(%p)->(count=%lu)\n", This, This->ref);
296 return IUnknown_Release (This->pUnkOuter);
299 /**************************************************************************
300 * SHELL32_CreatePidlFromBindCtx [internal]
302 * If the caller bound File System Bind Data, assume it is the
303 * find data for the path.
304 * This allows binding of paths that don't exist.
306 LPITEMIDLIST SHELL32_CreatePidlFromBindCtx(IBindCtx *pbc, LPCWSTR path)
308 static const WCHAR szfsbc[] = {
309 'F','i','l','e',' ','S','y','s','t','e','m',' ',
310 'B','i','n','d',' ','D','a','t','a',0 };
311 IFileSystemBindData *fsbd = NULL;
312 LPITEMIDLIST pidl = NULL;
313 IUnknown *param = NULL;
314 WIN32_FIND_DATAW wfd;
315 HRESULT r;
317 TRACE("%p %s\n", pbc, debugstr_w(path));
319 if (!pbc)
320 return NULL;
322 /* see if the caller bound File System Bind Data */
323 r = IBindCtx_GetObjectParam( pbc, (LPOLESTR) szfsbc, &param );
324 if (FAILED(r))
325 return NULL;
327 r = IUnknown_QueryInterface( param, &IID_IFileSystemBindData,
328 (LPVOID*) &fsbd );
329 if (SUCCEEDED(r))
331 r = IFileSystemBindData_GetFindData( fsbd, &wfd );
332 if (SUCCEEDED(r))
334 lstrcpynW( &wfd.cFileName[0], path, MAX_PATH );
335 pidl = _ILCreateFromFindDataW( &wfd );
337 IFileSystemBindData_Release( fsbd );
340 return pidl;
343 /**************************************************************************
344 * IShellFolder_ParseDisplayName {SHELL32}
346 * Parse a display name.
348 * PARAMS
349 * hwndOwner [in] Parent window for any message's
350 * pbc [in] optional FileSystemBindData context
351 * lpszDisplayName [in] Unicode displayname.
352 * pchEaten [out] (unicode) characters processed
353 * ppidl [out] complex pidl to item
354 * pdwAttributes [out] items attributes
356 * NOTES
357 * Every folder tries to parse only its own (the leftmost) pidl and creates a
358 * subfolder to evaluate the remaining parts.
359 * Now we can parse into namespaces implemented by shell extensions
361 * Behaviour on win98: lpszDisplayName=NULL -> crash
362 * lpszDisplayName="" -> returns mycoputer-pidl
364 * FIXME
365 * pdwAttributes is not set
366 * pchEaten is not set like in windows
368 static HRESULT WINAPI
369 IShellFolder_fnParseDisplayName (IShellFolder2 * iface,
370 HWND hwndOwner,
371 LPBC pbc,
372 LPOLESTR lpszDisplayName,
373 DWORD * pchEaten, LPITEMIDLIST * ppidl,
374 DWORD * pdwAttributes)
376 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
378 HRESULT hr = E_INVALIDARG;
379 LPCWSTR szNext = NULL;
380 WCHAR szElement[MAX_PATH];
381 WCHAR szPath[MAX_PATH];
382 LPITEMIDLIST pidlTemp = NULL;
383 DWORD len;
385 TRACE ("(%p)->(HWND=%p,%p,%p=%s,%p,pidl=%p,%p)\n",
386 This, hwndOwner, pbc, lpszDisplayName, debugstr_w (lpszDisplayName),
387 pchEaten, ppidl, pdwAttributes);
389 if (!lpszDisplayName || !ppidl)
390 return E_INVALIDARG;
392 if (pchEaten)
393 *pchEaten = 0; /* strange but like the original */
395 pidlTemp = SHELL32_CreatePidlFromBindCtx(pbc, lpszDisplayName);
396 if (!pidlTemp && *lpszDisplayName)
398 /* get the next element */
399 szNext = GetNextElementW (lpszDisplayName, szElement, MAX_PATH);
401 /* build the full pathname to the element */
402 /* lstrcpyW(szPath, This->sPathTarget); */
403 MultiByteToWideChar(CP_ACP, 0, This->sPathTarget, -1, szPath, MAX_PATH);
404 PathAddBackslashW(szPath);
405 len = lstrlenW(szPath);
406 lstrcpynW(szPath + len, szElement, MAX_PATH - len);
408 /* get the pidl */
409 hr = _ILCreateFromPathW(szPath, &pidlTemp);
411 if (SUCCEEDED(hr)) {
412 if (szNext && *szNext) {
413 /* try to analyse the next element */
414 hr = SHELL32_ParseNextElement (iface, hwndOwner, pbc,
415 &pidlTemp, (LPOLESTR) szNext, pchEaten, pdwAttributes);
416 } else {
417 /* it's the last element */
418 if (pdwAttributes && *pdwAttributes) {
419 hr = SHELL32_GetItemAttributes (_IShellFolder_ (This),
420 pidlTemp, pdwAttributes);
426 if (SUCCEEDED(hr))
427 *ppidl = pidlTemp;
428 else
429 *ppidl = NULL;
431 TRACE ("(%p)->(-- pidl=%p ret=0x%08lx)\n", This, ppidl ? *ppidl : 0, hr);
433 return hr;
436 /**************************************************************************
437 * IShellFolder_fnEnumObjects
438 * PARAMETERS
439 * HWND hwndOwner, //[in ] Parent Window
440 * DWORD grfFlags, //[in ] SHCONTF enumeration mask
441 * LPENUMIDLIST* ppenumIDList //[out] IEnumIDList interface
443 static HRESULT WINAPI
444 IShellFolder_fnEnumObjects (IShellFolder2 * iface, HWND hwndOwner,
445 DWORD dwFlags, LPENUMIDLIST * ppEnumIDList)
447 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
449 TRACE ("(%p)->(HWND=%p flags=0x%08lx pplist=%p)\n", This, hwndOwner,
450 dwFlags, ppEnumIDList);
452 *ppEnumIDList = IEnumIDList_Constructor();
453 if (*ppEnumIDList)
455 WCHAR path[MAX_PATH];
456 MultiByteToWideChar(CP_ACP, 0, This->sPathTarget, -1, path, MAX_PATH);
457 CreateFolderEnumList(*ppEnumIDList, path, dwFlags);
460 TRACE ("-- (%p)->(new ID List: %p)\n", This, *ppEnumIDList);
462 return *ppEnumIDList ? S_OK : E_OUTOFMEMORY;
465 /**************************************************************************
466 * IShellFolder_fnBindToObject
467 * PARAMETERS
468 * LPCITEMIDLIST pidl, //[in ] relative pidl to open
469 * LPBC pbc, //[in ] optional FileSystemBindData context
470 * REFIID riid, //[in ] Initial Interface
471 * LPVOID* ppvObject //[out] Interface*
473 static HRESULT WINAPI
474 IShellFolder_fnBindToObject (IShellFolder2 * iface, LPCITEMIDLIST pidl,
475 LPBC pbc, REFIID riid, LPVOID * ppvOut)
477 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
479 TRACE ("(%p)->(pidl=%p,%p,%s,%p)\n", This, pidl, pbc,
480 shdebugstr_guid (riid), ppvOut);
482 return SHELL32_BindToChild (This->pidlRoot, This->sPathTarget, pidl, riid,
483 ppvOut);
486 /**************************************************************************
487 * IShellFolder_fnBindToStorage
488 * PARAMETERS
489 * LPCITEMIDLIST pidl, //[in ] complex pidl to store
490 * LPBC pbc, //[in ] reserved
491 * REFIID riid, //[in ] Initial storage interface
492 * LPVOID* ppvObject //[out] Interface* returned
494 static HRESULT WINAPI
495 IShellFolder_fnBindToStorage (IShellFolder2 * iface, LPCITEMIDLIST pidl,
496 LPBC pbcReserved, REFIID riid, LPVOID * ppvOut)
498 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
500 FIXME ("(%p)->(pidl=%p,%p,%s,%p) stub\n", This, pidl, pbcReserved,
501 shdebugstr_guid (riid), ppvOut);
503 *ppvOut = NULL;
504 return E_NOTIMPL;
507 /**************************************************************************
508 * IShellFolder_fnCompareIDs
511 static HRESULT WINAPI
512 IShellFolder_fnCompareIDs (IShellFolder2 * iface, LPARAM lParam,
513 LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2)
515 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
517 int nReturn;
519 TRACE ("(%p)->(0x%08lx,pidl1=%p,pidl2=%p)\n", This, lParam, pidl1, pidl2);
520 nReturn = SHELL32_CompareIDs (_IShellFolder_ (This), lParam, pidl1, pidl2);
521 TRACE ("-- %i\n", nReturn);
522 return nReturn;
525 /**************************************************************************
526 * IShellFolder_fnCreateViewObject
528 static HRESULT WINAPI
529 IShellFolder_fnCreateViewObject (IShellFolder2 * iface, HWND hwndOwner,
530 REFIID riid, LPVOID * ppvOut)
532 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
534 LPSHELLVIEW pShellView;
535 HRESULT hr = E_INVALIDARG;
537 TRACE ("(%p)->(hwnd=%p,%s,%p)\n", This, hwndOwner, shdebugstr_guid (riid),
538 ppvOut);
540 if (ppvOut) {
541 *ppvOut = NULL;
543 if (IsEqualIID (riid, &IID_IDropTarget)) {
544 hr = IShellFolder_QueryInterface (iface, &IID_IDropTarget, ppvOut);
545 } else if (IsEqualIID (riid, &IID_IContextMenu)) {
546 FIXME ("IContextMenu not implemented\n");
547 hr = E_NOTIMPL;
548 } else if (IsEqualIID (riid, &IID_IShellView)) {
549 pShellView = IShellView_Constructor ((IShellFolder *) iface);
550 if (pShellView) {
551 hr = IShellView_QueryInterface (pShellView, riid, ppvOut);
552 IShellView_Release (pShellView);
556 TRACE ("-- (%p)->(interface=%p)\n", This, ppvOut);
557 return hr;
560 /**************************************************************************
561 * IShellFolder_fnGetAttributesOf
563 * PARAMETERS
564 * UINT cidl, //[in ] num elements in pidl array
565 * LPCITEMIDLIST* apidl, //[in ] simple pidl array
566 * ULONG* rgfInOut) //[out] result array
569 static HRESULT WINAPI
570 IShellFolder_fnGetAttributesOf (IShellFolder2 * iface, UINT cidl,
571 LPCITEMIDLIST * apidl, DWORD * rgfInOut)
573 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
575 HRESULT hr = S_OK;
577 TRACE ("(%p)->(cidl=%d apidl=%p mask=%p (0x%08lx))\n", This, cidl, apidl,
578 rgfInOut, rgfInOut ? *rgfInOut : 0);
580 if (!rgfInOut)
581 return E_INVALIDARG;
582 if (cidl && !apidl)
583 return E_INVALIDARG;
585 if (*rgfInOut == 0)
586 *rgfInOut = ~0;
588 if(cidl == 0){
589 IShellFolder *psfParent = NULL;
590 LPCITEMIDLIST rpidl = NULL;
592 hr = SHBindToParent(This->pidlRoot, &IID_IShellFolder, (LPVOID*)&psfParent, (LPCITEMIDLIST*)&rpidl);
593 if(SUCCEEDED(hr)) {
594 SHELL32_GetItemAttributes (psfParent, rpidl, rgfInOut);
595 IShellFolder_Release(psfParent);
598 else {
599 while (cidl > 0 && *apidl) {
600 pdump (*apidl);
601 SHELL32_GetItemAttributes (_IShellFolder_ (This), *apidl, rgfInOut);
602 apidl++;
603 cidl--;
606 /* make sure SFGAO_VALIDATE is cleared, some apps depend on that */
607 *rgfInOut &= ~SFGAO_VALIDATE;
609 TRACE ("-- result=0x%08lx\n", *rgfInOut);
611 return hr;
614 /**************************************************************************
615 * IShellFolder_fnGetUIObjectOf
617 * PARAMETERS
618 * HWND hwndOwner, //[in ] Parent window for any output
619 * UINT cidl, //[in ] array size
620 * LPCITEMIDLIST* apidl, //[in ] simple pidl array
621 * REFIID riid, //[in ] Requested Interface
622 * UINT* prgfInOut, //[ ] reserved
623 * LPVOID* ppvObject) //[out] Resulting Interface
625 * NOTES
626 * This function gets asked to return "view objects" for one or more (multiple
627 * select) items:
628 * The viewobject typically is an COM object with one of the following
629 * interfaces:
630 * IExtractIcon,IDataObject,IContextMenu
631 * In order to support icon positions in the default Listview your DataObject
632 * must implement the SetData method (in addition to GetData :) - the shell
633 * passes a barely documented "Icon positions" structure to SetData when the
634 * drag starts, and GetData's it if the drop is in another explorer window that
635 * needs the positions.
637 static HRESULT WINAPI
638 IShellFolder_fnGetUIObjectOf (IShellFolder2 * iface,
639 HWND hwndOwner,
640 UINT cidl, LPCITEMIDLIST * apidl, REFIID riid,
641 UINT * prgfInOut, LPVOID * ppvOut)
643 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
645 LPITEMIDLIST pidl;
646 IUnknown *pObj = NULL;
647 HRESULT hr = E_INVALIDARG;
649 TRACE ("(%p)->(%p,%u,apidl=%p,%s,%p,%p)\n",
650 This, hwndOwner, cidl, apidl, shdebugstr_guid (riid), prgfInOut, ppvOut);
652 if (ppvOut) {
653 *ppvOut = NULL;
655 if (IsEqualIID (riid, &IID_IContextMenu) && (cidl >= 1)) {
656 pObj = (LPUNKNOWN) ISvItemCm_Constructor ((IShellFolder *) iface,
657 This->pidlRoot, apidl, cidl);
658 hr = S_OK;
659 } else if (IsEqualIID (riid, &IID_IDataObject) && (cidl >= 1)) {
660 pObj = (LPUNKNOWN) IDataObject_Constructor (hwndOwner,
661 This->pidlRoot, apidl, cidl);
662 hr = S_OK;
663 } else if (IsEqualIID (riid, &IID_IExtractIconA) && (cidl == 1)) {
664 pidl = ILCombine (This->pidlRoot, apidl[0]);
665 pObj = (LPUNKNOWN) IExtractIconA_Constructor (pidl);
666 SHFree (pidl);
667 hr = S_OK;
668 } else if (IsEqualIID (riid, &IID_IExtractIconW) && (cidl == 1)) {
669 pidl = ILCombine (This->pidlRoot, apidl[0]);
670 pObj = (LPUNKNOWN) IExtractIconW_Constructor (pidl);
671 SHFree (pidl);
672 hr = S_OK;
673 } else if (IsEqualIID (riid, &IID_IDropTarget) && (cidl >= 1)) {
674 hr = IShellFolder_QueryInterface (iface, &IID_IDropTarget,
675 (LPVOID *) & pObj);
676 } else if ((IsEqualIID(riid,&IID_IShellLinkW) ||
677 IsEqualIID(riid,&IID_IShellLinkA)) && (cidl == 1)) {
678 pidl = ILCombine (This->pidlRoot, apidl[0]);
679 hr = IShellLink_ConstructFromFile(NULL, riid, pidl, (LPVOID*)&pObj);
680 SHFree (pidl);
681 } else {
682 hr = E_NOINTERFACE;
685 if (SUCCEEDED(hr) && !pObj)
686 hr = E_OUTOFMEMORY;
688 *ppvOut = pObj;
690 TRACE ("(%p)->hr=0x%08lx\n", This, hr);
691 return hr;
694 static const WCHAR AdvancedW[] = { 'S','O','F','T','W','A','R','E',
695 '\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\',
696 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\','E','x','p','l',
697 'o','r','e','r','\\','A','d','v','a','n','c','e','d',0 };
698 static const WCHAR HideFileExtW[] = { 'H','i','d','e','F','i','l','e','E','x',
699 't',0 };
700 static const WCHAR NeverShowExtW[] = { 'N','e','v','e','r','S','h','o','w','E',
701 'x','t',0 };
703 static BOOL hide_extension(LPWSTR szPath)
705 HKEY hKey;
706 DWORD dwData;
707 DWORD dwDataSize = sizeof (DWORD);
708 BOOL doHide = FALSE; /* The default value is FALSE (win98 at least) */
710 if (!RegCreateKeyExW(HKEY_CURRENT_USER, AdvancedW, 0, 0, 0, KEY_ALL_ACCESS, 0, &hKey, 0)) {
711 if (!RegQueryValueExW(hKey, HideFileExtW, 0, 0, (LPBYTE) &dwData, &dwDataSize))
712 doHide = dwData;
713 RegCloseKey (hKey);
716 if (!doHide) {
717 LPWSTR ext = PathFindExtensionW(szPath);
719 if (*ext != '\0') {
720 WCHAR classname[MAX_PATH];
721 LONG classlen = sizeof(classname);
723 if (!RegQueryValueW(HKEY_CLASSES_ROOT, ext, classname, &classlen))
724 if (!RegOpenKeyW(HKEY_CLASSES_ROOT, classname, &hKey)) {
725 if (!RegQueryValueExW(hKey, NeverShowExtW, 0, NULL, NULL, NULL))
726 doHide = TRUE;
727 RegCloseKey(hKey);
731 return doHide;
734 void SHELL_FS_ProcessDisplayFilename(LPSTR szPath, DWORD dwFlags)
736 WCHAR pathW[MAX_PATH];
738 /*FIXME: MSDN also mentions SHGDN_FOREDITING which is not yet handled. */
739 if (!(dwFlags & SHGDN_FORPARSING) &&
740 ((dwFlags & SHGDN_INFOLDER) || (dwFlags == SHGDN_NORMAL))) {
741 MultiByteToWideChar(CP_ACP, 0, szPath, -1, pathW, MAX_PATH);
742 if (hide_extension(pathW) && szPath[0] != '.')
743 PathRemoveExtensionA (szPath);
747 /**************************************************************************
748 * IShellFolder_fnGetDisplayNameOf
749 * Retrieves the display name for the specified file object or subfolder
751 * PARAMETERS
752 * LPCITEMIDLIST pidl, //[in ] complex pidl to item
753 * DWORD dwFlags, //[in ] SHGNO formatting flags
754 * LPSTRRET lpName) //[out] Returned display name
756 * FIXME
757 * if the name is in the pidl the ret value should be a STRRET_OFFSET
760 static HRESULT WINAPI
761 IShellFolder_fnGetDisplayNameOf (IShellFolder2 * iface, LPCITEMIDLIST pidl,
762 DWORD dwFlags, LPSTRRET strRet)
764 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
766 HRESULT hr = S_OK;
767 int len = 0;
769 TRACE ("(%p)->(pidl=%p,0x%08lx,%p)\n", This, pidl, dwFlags, strRet);
770 pdump (pidl);
772 if (!pidl || !strRet)
773 return E_INVALIDARG;
775 strRet->uType = STRRET_CSTR;
776 if (_ILIsDesktop(pidl)) { /* empty pidl */
777 if ((GET_SHGDN_FOR(dwFlags) & SHGDN_FORPARSING) &&
778 (GET_SHGDN_RELATION(dwFlags) != SHGDN_INFOLDER))
780 if (This->sPathTarget)
781 lstrcpynA(strRet->u.cStr, This->sPathTarget, MAX_PATH);
782 } else {
783 /* pidl has to contain exactly one non null SHITEMID */
784 hr = E_INVALIDARG;
786 } else if (_ILIsPidlSimple(pidl)) {
787 if ((GET_SHGDN_FOR(dwFlags) & SHGDN_FORPARSING) &&
788 (GET_SHGDN_RELATION(dwFlags) != SHGDN_INFOLDER) &&
789 This->sPathTarget)
791 lstrcpynA(strRet->u.cStr, This->sPathTarget, MAX_PATH);
792 PathAddBackslashA(strRet->u.cStr);
793 len = lstrlenA(strRet->u.cStr);
795 _ILSimpleGetText(pidl, strRet->u.cStr + len, MAX_PATH - len);
796 if (!_ILIsFolder(pidl)) SHELL_FS_ProcessDisplayFilename(strRet->u.cStr, dwFlags);
797 } else {
798 hr = SHELL32_GetDisplayNameOfChild(iface, pidl, dwFlags, strRet->u.cStr, MAX_PATH);
801 TRACE ("-- (%p)->(%s)\n", This, strRet->u.cStr);
802 return hr;
805 /**************************************************************************
806 * IShellFolder_fnSetNameOf
807 * Changes the name of a file object or subfolder, possibly changing its item
808 * identifier in the process.
810 * PARAMETERS
811 * HWND hwndOwner, //[in ] Owner window for output
812 * LPCITEMIDLIST pidl, //[in ] simple pidl of item to change
813 * LPCOLESTR lpszName, //[in ] the items new display name
814 * DWORD dwFlags, //[in ] SHGNO formatting flags
815 * LPITEMIDLIST* ppidlOut) //[out] simple pidl returned
817 static HRESULT WINAPI IShellFolder_fnSetNameOf (IShellFolder2 * iface,
818 HWND hwndOwner,
819 LPCITEMIDLIST pidl,
820 LPCOLESTR lpName,
821 DWORD dwFlags,
822 LPITEMIDLIST * pPidlOut)
824 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
825 WCHAR szSrc[MAX_PATH], szDest[MAX_PATH];
826 LPWSTR ptr;
827 BOOL bIsFolder = _ILIsFolder (ILFindLastID (pidl));
829 TRACE ("(%p)->(%p,pidl=%p,%s,%lu,%p)\n", This, hwndOwner, pidl,
830 debugstr_w (lpName), dwFlags, pPidlOut);
832 /* build source path */
833 MultiByteToWideChar(CP_ACP, 0, This->sPathTarget, -1, szSrc, MAX_PATH);
834 ptr = PathAddBackslashW (szSrc);
835 if (ptr)
836 _ILSimpleGetTextW (pidl, ptr, MAX_PATH - (ptr - szSrc));
838 /* build destination path */
839 if (dwFlags == SHGDN_NORMAL || dwFlags & SHGDN_INFOLDER) {
840 MultiByteToWideChar(CP_ACP, 0, This->sPathTarget, -1, szDest, MAX_PATH);
841 ptr = PathAddBackslashW (szDest);
842 if (ptr)
843 lstrcpynW(ptr, lpName, MAX_PATH - (ptr - szDest));
844 } else
845 lstrcpynW(szDest, lpName, MAX_PATH);
847 if(!(dwFlags & SHGDN_FORPARSING) && hide_extension(szSrc)) {
848 WCHAR *ext = PathFindExtensionW(szSrc);
849 if(*ext != '\0') {
850 INT len = strlenW(szDest);
851 lstrcpynW(szDest + len, ext, MAX_PATH - len);
855 TRACE ("src=%s dest=%s\n", debugstr_w(szSrc), debugstr_w(szDest));
857 if (MoveFileW (szSrc, szDest)) {
858 HRESULT hr = S_OK;
860 if (pPidlOut)
861 hr = _ILCreateFromPathW(szDest, pPidlOut);
863 SHChangeNotify (bIsFolder ? SHCNE_RENAMEFOLDER : SHCNE_RENAMEITEM,
864 SHCNF_PATHW, szSrc, szDest);
866 return hr;
869 return E_FAIL;
872 static HRESULT WINAPI IShellFolder_fnGetDefaultSearchGUID (IShellFolder2 *iface,
873 GUID * pguid)
875 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
876 FIXME ("(%p)\n", This);
877 return E_NOTIMPL;
879 static HRESULT WINAPI IShellFolder_fnEnumSearches (IShellFolder2 * iface,
880 IEnumExtraSearch ** ppenum)
882 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
883 FIXME ("(%p)\n", This);
884 return E_NOTIMPL;
887 static HRESULT WINAPI
888 IShellFolder_fnGetDefaultColumn (IShellFolder2 * iface, DWORD dwRes,
889 ULONG * pSort, ULONG * pDisplay)
891 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
893 TRACE ("(%p)\n", This);
895 if (pSort)
896 *pSort = 0;
897 if (pDisplay)
898 *pDisplay = 0;
900 return S_OK;
903 static HRESULT WINAPI
904 IShellFolder_fnGetDefaultColumnState (IShellFolder2 * iface, UINT iColumn,
905 DWORD * pcsFlags)
907 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
909 TRACE ("(%p)\n", This);
911 if (!pcsFlags || iColumn >= GENERICSHELLVIEWCOLUMNS)
912 return E_INVALIDARG;
914 *pcsFlags = GenericSFHeader[iColumn].pcsFlags;
916 return S_OK;
919 static HRESULT WINAPI
920 IShellFolder_fnGetDetailsEx (IShellFolder2 * iface, LPCITEMIDLIST pidl,
921 const SHCOLUMNID * pscid, VARIANT * pv)
923 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
924 FIXME ("(%p)\n", This);
926 return E_NOTIMPL;
929 static HRESULT WINAPI
930 IShellFolder_fnGetDetailsOf (IShellFolder2 * iface, LPCITEMIDLIST pidl,
931 UINT iColumn, SHELLDETAILS * psd)
933 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
934 HRESULT hr = E_FAIL;
936 TRACE ("(%p)->(%p %i %p)\n", This, pidl, iColumn, psd);
938 if (!psd || iColumn >= GENERICSHELLVIEWCOLUMNS)
939 return E_INVALIDARG;
941 if (!pidl) {
942 /* the header titles */
943 psd->fmt = GenericSFHeader[iColumn].fmt;
944 psd->cxChar = GenericSFHeader[iColumn].cxChar;
945 psd->str.uType = STRRET_CSTR;
946 LoadStringA (shell32_hInstance, GenericSFHeader[iColumn].colnameid,
947 psd->str.u.cStr, MAX_PATH);
948 return S_OK;
949 } else {
950 /* the data from the pidl */
951 switch (iColumn) {
952 case 0: /* name */
953 hr = IShellFolder_GetDisplayNameOf (iface, pidl,
954 SHGDN_NORMAL | SHGDN_INFOLDER, &psd->str);
955 break;
956 case 1: /* size */
957 _ILGetFileSize (pidl, psd->str.u.cStr, MAX_PATH);
958 break;
959 case 2: /* type */
960 _ILGetFileType (pidl, psd->str.u.cStr, MAX_PATH);
961 break;
962 case 3: /* date */
963 _ILGetFileDate (pidl, psd->str.u.cStr, MAX_PATH);
964 break;
965 case 4: /* attributes */
966 _ILGetFileAttributes (pidl, psd->str.u.cStr, MAX_PATH);
967 break;
969 hr = S_OK;
970 psd->str.uType = STRRET_CSTR;
973 return hr;
976 static HRESULT WINAPI
977 IShellFolder_fnMapColumnToSCID (IShellFolder2 * iface, UINT column,
978 SHCOLUMNID * pscid)
980 _ICOM_THIS_From_IShellFolder2 (IGenericSFImpl, iface)
981 FIXME ("(%p)\n", This);
982 return E_NOTIMPL;
985 static const IShellFolder2Vtbl sfvt =
987 IShellFolder_fnQueryInterface,
988 IShellFolder_fnAddRef,
989 IShellFolder_fnRelease,
990 IShellFolder_fnParseDisplayName,
991 IShellFolder_fnEnumObjects,
992 IShellFolder_fnBindToObject,
993 IShellFolder_fnBindToStorage,
994 IShellFolder_fnCompareIDs,
995 IShellFolder_fnCreateViewObject,
996 IShellFolder_fnGetAttributesOf,
997 IShellFolder_fnGetUIObjectOf,
998 IShellFolder_fnGetDisplayNameOf,
999 IShellFolder_fnSetNameOf,
1000 /* ShellFolder2 */
1001 IShellFolder_fnGetDefaultSearchGUID,
1002 IShellFolder_fnEnumSearches,
1003 IShellFolder_fnGetDefaultColumn,
1004 IShellFolder_fnGetDefaultColumnState,
1005 IShellFolder_fnGetDetailsEx,
1006 IShellFolder_fnGetDetailsOf,
1007 IShellFolder_fnMapColumnToSCID
1010 /****************************************************************************
1011 * ISFHelper for IShellFolder implementation
1014 static HRESULT WINAPI
1015 ISFHelper_fnQueryInterface (ISFHelper * iface, REFIID riid, LPVOID * ppvObj)
1017 _ICOM_THIS_From_ISFHelper (IGenericSFImpl, iface);
1019 TRACE ("(%p)->(count=%lu)\n", This, This->ref);
1021 return IUnknown_QueryInterface (This->pUnkOuter, riid, ppvObj);
1024 static ULONG WINAPI ISFHelper_fnAddRef (ISFHelper * iface)
1026 _ICOM_THIS_From_ISFHelper (IGenericSFImpl, iface);
1028 TRACE ("(%p)->(count=%lu)\n", This, This->ref);
1030 return IUnknown_AddRef (This->pUnkOuter);
1033 static ULONG WINAPI ISFHelper_fnRelease (ISFHelper * iface)
1035 _ICOM_THIS_From_ISFHelper (IGenericSFImpl, iface);
1037 TRACE ("(%p)\n", This);
1039 return IUnknown_Release (This->pUnkOuter);
1042 /****************************************************************************
1043 * ISFHelper_fnAddFolder
1045 * creates a unique folder name
1048 static HRESULT WINAPI
1049 ISFHelper_fnGetUniqueName (ISFHelper * iface, LPSTR lpName, UINT uLen)
1051 _ICOM_THIS_From_ISFHelper (IGenericSFImpl, iface)
1052 IEnumIDList *penum;
1053 HRESULT hr;
1054 char szText[MAX_PATH];
1055 const char *szNewFolder = "New Folder";
1057 TRACE ("(%p)(%s %u)\n", This, lpName, uLen);
1059 if (uLen < strlen (szNewFolder) + 4)
1060 return E_POINTER;
1062 strcpy (lpName, szNewFolder);
1064 hr = IShellFolder_fnEnumObjects (_IShellFolder2_ (This), 0,
1065 SHCONTF_FOLDERS | SHCONTF_NONFOLDERS | SHCONTF_INCLUDEHIDDEN, &penum);
1066 if (penum) {
1067 LPITEMIDLIST pidl;
1068 DWORD dwFetched;
1069 int i = 1;
1071 next:
1072 IEnumIDList_Reset (penum);
1073 while (S_OK == IEnumIDList_Next (penum, 1, &pidl, &dwFetched) &&
1074 dwFetched) {
1075 _ILSimpleGetText (pidl, szText, MAX_PATH);
1076 if (0 == strcasecmp (szText, lpName)) {
1077 sprintf (lpName, "%s %d", szNewFolder, i++);
1078 if (i > 99) {
1079 hr = E_FAIL;
1080 break;
1082 goto next;
1086 IEnumIDList_Release (penum);
1088 return hr;
1091 /****************************************************************************
1092 * ISFHelper_fnAddFolder
1094 * adds a new folder.
1097 static HRESULT WINAPI
1098 ISFHelper_fnAddFolder (ISFHelper * iface, HWND hwnd, LPCSTR lpName,
1099 LPITEMIDLIST * ppidlOut)
1101 _ICOM_THIS_From_ISFHelper (IGenericSFImpl, iface)
1102 char lpstrNewDir[MAX_PATH];
1103 DWORD bRes;
1104 HRESULT hres = E_FAIL;
1106 TRACE ("(%p)(%s %p)\n", This, lpName, ppidlOut);
1108 strcpy (lpstrNewDir, This->sPathTarget);
1109 PathAppendA(lpstrNewDir, lpName);
1111 bRes = CreateDirectoryA (lpstrNewDir, NULL);
1112 if (bRes) {
1113 SHChangeNotify (SHCNE_MKDIR, SHCNF_PATHA, lpstrNewDir, NULL);
1115 hres = S_OK;
1117 if (ppidlOut)
1118 hres = _ILCreateFromPathA(lpstrNewDir, ppidlOut);
1119 } else {
1120 char lpstrText[128 + MAX_PATH];
1121 char lpstrTempText[128];
1122 char lpstrCaption[256];
1124 /* Cannot Create folder because of permissions */
1125 LoadStringA (shell32_hInstance, IDS_CREATEFOLDER_DENIED, lpstrTempText,
1126 sizeof (lpstrTempText));
1127 LoadStringA (shell32_hInstance, IDS_CREATEFOLDER_CAPTION, lpstrCaption,
1128 sizeof (lpstrCaption));
1129 sprintf (lpstrText, lpstrTempText, lpstrNewDir);
1130 MessageBoxA (hwnd, lpstrText, lpstrCaption, MB_OK | MB_ICONEXCLAMATION);
1133 return hres;
1136 /****************************************************************************
1137 * ISFHelper_fnDeleteItems
1139 * deletes items in folder
1141 static HRESULT WINAPI
1142 ISFHelper_fnDeleteItems (ISFHelper * iface, UINT cidl, LPCITEMIDLIST * apidl)
1144 _ICOM_THIS_From_ISFHelper (IGenericSFImpl, iface)
1145 UINT i;
1146 char szPath[MAX_PATH];
1147 BOOL bConfirm = TRUE;
1149 TRACE ("(%p)(%u %p)\n", This, cidl, apidl);
1151 /* deleting multiple items so give a slightly different warning */
1152 if (cidl != 1) {
1153 char tmp[8];
1155 snprintf (tmp, sizeof (tmp), "%d", cidl);
1156 if (!SHELL_ConfirmDialog(ASK_DELETE_MULTIPLE_ITEM, tmp))
1157 return E_FAIL;
1158 bConfirm = FALSE;
1161 for (i = 0; i < cidl; i++) {
1162 strcpy (szPath, This->sPathTarget);
1163 PathAddBackslashA (szPath);
1164 _ILSimpleGetText (apidl[i], szPath + strlen (szPath), MAX_PATH);
1166 if (_ILIsFolder (apidl[i])) {
1167 LPITEMIDLIST pidl;
1169 TRACE ("delete %s\n", szPath);
1170 if (!SHELL_DeleteDirectoryA (szPath, bConfirm)) {
1171 TRACE ("delete %s failed, bConfirm=%d\n", szPath, bConfirm);
1172 return E_FAIL;
1174 pidl = ILCombine (This->pidlRoot, apidl[i]);
1175 SHChangeNotify (SHCNE_RMDIR, SHCNF_IDLIST, pidl, NULL);
1176 SHFree (pidl);
1177 } else if (_ILIsValue (apidl[i])) {
1178 LPITEMIDLIST pidl;
1180 TRACE ("delete %s\n", szPath);
1181 if (!SHELL_DeleteFileA (szPath, bConfirm)) {
1182 TRACE ("delete %s failed, bConfirm=%d\n", szPath, bConfirm);
1183 return E_FAIL;
1185 pidl = ILCombine (This->pidlRoot, apidl[i]);
1186 SHChangeNotify (SHCNE_DELETE, SHCNF_IDLIST, pidl, NULL);
1187 SHFree (pidl);
1191 return S_OK;
1194 /****************************************************************************
1195 * ISFHelper_fnCopyItems
1197 * copies items to this folder
1199 static HRESULT WINAPI
1200 ISFHelper_fnCopyItems (ISFHelper * iface, IShellFolder * pSFFrom, UINT cidl,
1201 LPCITEMIDLIST * apidl)
1203 UINT i;
1204 IPersistFolder2 *ppf2 = NULL;
1205 char szSrcPath[MAX_PATH],
1206 szDstPath[MAX_PATH];
1208 _ICOM_THIS_From_ISFHelper (IGenericSFImpl, iface);
1210 TRACE ("(%p)->(%p,%u,%p)\n", This, pSFFrom, cidl, apidl);
1212 IShellFolder_QueryInterface (pSFFrom, &IID_IPersistFolder2,
1213 (LPVOID *) & ppf2);
1214 if (ppf2) {
1215 LPITEMIDLIST pidl;
1217 if (SUCCEEDED (IPersistFolder2_GetCurFolder (ppf2, &pidl))) {
1218 for (i = 0; i < cidl; i++) {
1219 SHGetPathFromIDListA (pidl, szSrcPath);
1220 PathAddBackslashA (szSrcPath);
1221 _ILSimpleGetText (apidl[i], szSrcPath + strlen (szSrcPath),
1222 MAX_PATH);
1224 strcpy (szDstPath, This->sPathTarget);
1225 PathAddBackslashA (szDstPath);
1226 _ILSimpleGetText (apidl[i], szDstPath + strlen (szDstPath),
1227 MAX_PATH);
1228 MESSAGE ("would copy %s to %s\n", szSrcPath, szDstPath);
1230 SHFree (pidl);
1232 IPersistFolder2_Release (ppf2);
1234 return S_OK;
1237 static const ISFHelperVtbl shvt =
1239 ISFHelper_fnQueryInterface,
1240 ISFHelper_fnAddRef,
1241 ISFHelper_fnRelease,
1242 ISFHelper_fnGetUniqueName,
1243 ISFHelper_fnAddFolder,
1244 ISFHelper_fnDeleteItems,
1245 ISFHelper_fnCopyItems
1248 /************************************************************************
1249 * IFSFldr_PersistFolder3_QueryInterface
1252 static HRESULT WINAPI
1253 IFSFldr_PersistFolder3_QueryInterface (IPersistFolder3 * iface, REFIID iid,
1254 LPVOID * ppvObj)
1256 _ICOM_THIS_From_IPersistFolder3 (IGenericSFImpl, iface);
1258 TRACE ("(%p)\n", This);
1260 return IUnknown_QueryInterface (This->pUnkOuter, iid, ppvObj);
1263 /************************************************************************
1264 * IFSFldr_PersistFolder3_AddRef
1267 static ULONG WINAPI
1268 IFSFldr_PersistFolder3_AddRef (IPersistFolder3 * iface)
1270 _ICOM_THIS_From_IPersistFolder3 (IGenericSFImpl, iface);
1272 TRACE ("(%p)->(count=%lu)\n", This, This->ref);
1274 return IUnknown_AddRef (This->pUnkOuter);
1277 /************************************************************************
1278 * IFSFldr_PersistFolder3_Release
1281 static ULONG WINAPI
1282 IFSFldr_PersistFolder3_Release (IPersistFolder3 * iface)
1284 _ICOM_THIS_From_IPersistFolder3 (IGenericSFImpl, iface);
1286 TRACE ("(%p)->(count=%lu)\n", This, This->ref);
1288 return IUnknown_Release (This->pUnkOuter);
1291 /************************************************************************
1292 * IFSFldr_PersistFolder3_GetClassID
1294 static HRESULT WINAPI
1295 IFSFldr_PersistFolder3_GetClassID (IPersistFolder3 * iface, CLSID * lpClassId)
1297 _ICOM_THIS_From_IPersistFolder3 (IGenericSFImpl, iface);
1299 TRACE ("(%p)\n", This);
1301 if (!lpClassId)
1302 return E_POINTER;
1303 *lpClassId = *This->pclsid;
1305 return S_OK;
1308 /************************************************************************
1309 * IFSFldr_PersistFolder3_Initialize
1311 * NOTES
1312 * sPathTarget is not set. Don't know how to handle in a non rooted environment.
1314 static HRESULT WINAPI
1315 IFSFldr_PersistFolder3_Initialize (IPersistFolder3 * iface, LPCITEMIDLIST pidl)
1317 char sTemp[MAX_PATH];
1319 _ICOM_THIS_From_IPersistFolder3 (IGenericSFImpl, iface);
1321 TRACE ("(%p)->(%p)\n", This, pidl);
1323 if (This->pidlRoot)
1324 SHFree (This->pidlRoot); /* free the old pidl */
1325 This->pidlRoot = ILClone (pidl); /* set my pidl */
1327 if (This->sPathTarget)
1328 SHFree (This->sPathTarget);
1330 /* set my path */
1331 if (SHGetPathFromIDListA (pidl, sTemp)) {
1332 This->sPathTarget = SHAlloc (strlen (sTemp) + 1);
1333 strcpy (This->sPathTarget, sTemp);
1336 TRACE ("--(%p)->(%s)\n", This, This->sPathTarget);
1337 return S_OK;
1340 /**************************************************************************
1341 * IFSFldr_PersistFolder3_GetCurFolder
1343 static HRESULT WINAPI
1344 IFSFldr_PersistFolder3_fnGetCurFolder (IPersistFolder3 * iface,
1345 LPITEMIDLIST * pidl)
1347 _ICOM_THIS_From_IPersistFolder3 (IGenericSFImpl, iface);
1349 TRACE ("(%p)->(%p)\n", This, pidl);
1351 if (!pidl) return E_POINTER;
1352 *pidl = ILClone (This->pidlRoot);
1353 return S_OK;
1356 /**************************************************************************
1357 * IFSFldr_PersistFolder3_InitializeEx
1359 * FIXME: error handling
1361 static HRESULT WINAPI
1362 IFSFldr_PersistFolder3_InitializeEx (IPersistFolder3 * iface,
1363 IBindCtx * pbc, LPCITEMIDLIST pidlRoot,
1364 const PERSIST_FOLDER_TARGET_INFO * ppfti)
1366 char sTemp[MAX_PATH];
1368 _ICOM_THIS_From_IPersistFolder3 (IGenericSFImpl, iface);
1370 TRACE ("(%p)->(%p,%p,%p)\n", This, pbc, pidlRoot, ppfti);
1371 if (ppfti)
1372 TRACE ("--%p %s %s 0x%08lx 0x%08x\n",
1373 ppfti->pidlTargetFolder, debugstr_w (ppfti->szTargetParsingName),
1374 debugstr_w (ppfti->szNetworkProvider), ppfti->dwAttributes,
1375 ppfti->csidl);
1377 pdump (pidlRoot);
1378 if (ppfti && ppfti->pidlTargetFolder)
1379 pdump (ppfti->pidlTargetFolder);
1381 if (This->pidlRoot)
1382 __SHFreeAndNil (&This->pidlRoot); /* free the old */
1383 if (This->sPathTarget)
1384 __SHFreeAndNil (&This->sPathTarget);
1387 * Root path and pidl
1389 This->pidlRoot = ILClone (pidlRoot);
1392 * the target folder is spezified in csidl OR pidlTargetFolder OR
1393 * szTargetParsingName
1395 if (ppfti) {
1396 if (ppfti->csidl != -1) {
1397 if (SHGetSpecialFolderPathA (0, sTemp, ppfti->csidl,
1398 ppfti->csidl & CSIDL_FLAG_CREATE)) {
1399 __SHCloneStrA (&This->sPathTarget, sTemp);
1401 } else if (ppfti->szTargetParsingName[0]) {
1402 __SHCloneStrWtoA (&This->sPathTarget, ppfti->szTargetParsingName);
1403 } else if (ppfti->pidlTargetFolder) {
1404 if (SHGetPathFromIDListA (ppfti->pidlTargetFolder, sTemp)) {
1405 __SHCloneStrA (&This->sPathTarget, sTemp);
1410 TRACE ("--(%p)->(target=%s)\n", This, debugstr_a (This->sPathTarget));
1411 pdump (This->pidlRoot);
1412 return (This->sPathTarget) ? S_OK : E_FAIL;
1415 static HRESULT WINAPI
1416 IFSFldr_PersistFolder3_GetFolderTargetInfo (IPersistFolder3 * iface,
1417 PERSIST_FOLDER_TARGET_INFO * ppfti)
1419 _ICOM_THIS_From_IPersistFolder3 (IGenericSFImpl, iface);
1420 FIXME ("(%p)->(%p)\n", This, ppfti);
1421 ZeroMemory (ppfti, sizeof (ppfti));
1422 return E_NOTIMPL;
1425 static const IPersistFolder3Vtbl vt_FSFldr_PersistFolder3 =
1427 IFSFldr_PersistFolder3_QueryInterface,
1428 IFSFldr_PersistFolder3_AddRef,
1429 IFSFldr_PersistFolder3_Release,
1430 IFSFldr_PersistFolder3_GetClassID,
1431 IFSFldr_PersistFolder3_Initialize,
1432 IFSFldr_PersistFolder3_fnGetCurFolder,
1433 IFSFldr_PersistFolder3_InitializeEx,
1434 IFSFldr_PersistFolder3_GetFolderTargetInfo
1437 /****************************************************************************
1438 * ISFDropTarget implementation
1440 static BOOL
1441 ISFDropTarget_QueryDrop (IDropTarget * iface, DWORD dwKeyState,
1442 LPDWORD pdwEffect)
1444 DWORD dwEffect = *pdwEffect;
1446 _ICOM_THIS_From_IDropTarget (IGenericSFImpl, iface);
1448 *pdwEffect = DROPEFFECT_NONE;
1450 if (This->fAcceptFmt) { /* Does our interpretation of the keystate ... */
1451 *pdwEffect = KeyStateToDropEffect (dwKeyState);
1453 /* ... matches the desired effect ? */
1454 if (dwEffect & *pdwEffect) {
1455 return TRUE;
1458 return FALSE;
1461 static HRESULT WINAPI
1462 ISFDropTarget_QueryInterface (IDropTarget * iface, REFIID riid, LPVOID * ppvObj)
1464 _ICOM_THIS_From_IDropTarget (IGenericSFImpl, iface);
1466 TRACE ("(%p)\n", This);
1468 return IUnknown_QueryInterface (This->pUnkOuter, riid, ppvObj);
1471 static ULONG WINAPI ISFDropTarget_AddRef (IDropTarget * iface)
1473 _ICOM_THIS_From_IDropTarget (IGenericSFImpl, iface);
1475 TRACE ("(%p)\n", This);
1477 return IUnknown_AddRef (This->pUnkOuter);
1480 static ULONG WINAPI ISFDropTarget_Release (IDropTarget * iface)
1482 _ICOM_THIS_From_IDropTarget (IGenericSFImpl, iface);
1484 TRACE ("(%p)\n", This);
1486 return IUnknown_Release (This->pUnkOuter);
1489 static HRESULT WINAPI
1490 ISFDropTarget_DragEnter (IDropTarget * iface, IDataObject * pDataObject,
1491 DWORD dwKeyState, POINTL pt, DWORD * pdwEffect)
1493 FORMATETC fmt;
1495 _ICOM_THIS_From_IDropTarget (IGenericSFImpl, iface);
1497 TRACE ("(%p)->(DataObject=%p)\n", This, pDataObject);
1499 InitFormatEtc (fmt, This->cfShellIDList, TYMED_HGLOBAL);
1501 This->fAcceptFmt = (S_OK == IDataObject_QueryGetData (pDataObject, &fmt)) ?
1502 TRUE : FALSE;
1504 ISFDropTarget_QueryDrop (iface, dwKeyState, pdwEffect);
1506 return S_OK;
1509 static HRESULT WINAPI
1510 ISFDropTarget_DragOver (IDropTarget * iface, DWORD dwKeyState, POINTL pt,
1511 DWORD * pdwEffect)
1513 _ICOM_THIS_From_IDropTarget (IGenericSFImpl, iface);
1515 TRACE ("(%p)\n", This);
1517 if (!pdwEffect)
1518 return E_INVALIDARG;
1520 ISFDropTarget_QueryDrop (iface, dwKeyState, pdwEffect);
1522 return S_OK;
1525 static HRESULT WINAPI ISFDropTarget_DragLeave (IDropTarget * iface)
1527 _ICOM_THIS_From_IDropTarget (IGenericSFImpl, iface);
1529 TRACE ("(%p)\n", This);
1531 This->fAcceptFmt = FALSE;
1533 return S_OK;
1536 static HRESULT WINAPI
1537 ISFDropTarget_Drop (IDropTarget * iface, IDataObject * pDataObject,
1538 DWORD dwKeyState, POINTL pt, DWORD * pdwEffect)
1540 _ICOM_THIS_From_IDropTarget (IGenericSFImpl, iface);
1542 FIXME ("(%p) object dropped\n", This);
1544 return E_NOTIMPL;
1547 static const IDropTargetVtbl dtvt = {
1548 ISFDropTarget_QueryInterface,
1549 ISFDropTarget_AddRef,
1550 ISFDropTarget_Release,
1551 ISFDropTarget_DragEnter,
1552 ISFDropTarget_DragOver,
1553 ISFDropTarget_DragLeave,
1554 ISFDropTarget_Drop