2 * IContextMenu for items in the shellview
4 * Copyright 1998-2000 Juergen Schmied <juergen.schmied@debitel.net>,
5 * <juergen.schmied@metronet.de>
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
25 #define NONAMELESSUNION
26 #define NONAMELESSSTRUCT
29 #include "wine/debug.h"
34 #include "undocshell.h"
39 #include "shell32_main.h"
40 #include "shellfolder.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(shell
);
48 IContextMenu3 IContextMenu3_iface
;
54 LPITEMIDLIST pidl
; /* root pidl */
55 LPITEMIDLIST
*apidl
; /* array of child pidls */
59 /* background menu data */
63 static inline ContextMenu
*impl_from_IContextMenu3(IContextMenu3
*iface
)
65 return CONTAINING_RECORD(iface
, ContextMenu
, IContextMenu3_iface
);
68 static HRESULT WINAPI
ContextMenu_QueryInterface(IContextMenu3
*iface
, REFIID riid
, LPVOID
*ppvObj
)
70 ContextMenu
*This
= impl_from_IContextMenu3(iface
);
72 TRACE("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), ppvObj
);
76 if (IsEqualIID(riid
, &IID_IUnknown
) ||
77 IsEqualIID(riid
, &IID_IContextMenu
) ||
78 IsEqualIID(riid
, &IID_IContextMenu2
) ||
79 IsEqualIID(riid
, &IID_IContextMenu3
))
81 *ppvObj
= &This
->IContextMenu3_iface
;
83 else if (IsEqualIID(riid
, &IID_IShellExtInit
)) /*IShellExtInit*/
85 FIXME("-- LPSHELLEXTINIT pointer requested\n");
90 IContextMenu3_AddRef(iface
);
94 TRACE("-- Interface: E_NOINTERFACE\n");
98 static ULONG WINAPI
ContextMenu_AddRef(IContextMenu3
*iface
)
100 ContextMenu
*This
= impl_from_IContextMenu3(iface
);
101 ULONG ref
= InterlockedIncrement(&This
->ref
);
102 TRACE("(%p)->(%u)\n", This
, ref
);
106 static ULONG WINAPI
ContextMenu_Release(IContextMenu3
*iface
)
108 ContextMenu
*This
= impl_from_IContextMenu3(iface
);
109 ULONG ref
= InterlockedDecrement(&This
->ref
);
111 TRACE("(%p)->(%u)\n", This
, ref
);
116 IShellFolder_Release(This
->parent
);
119 _ILFreeaPidl(This
->apidl
, This
->cidl
);
121 HeapFree(GetProcessHeap(), 0, This
);
127 static HRESULT WINAPI
ItemMenu_QueryContextMenu(
128 IContextMenu3
*iface
,
135 ContextMenu
*This
= impl_from_IContextMenu3(iface
);
138 TRACE("(%p)->(%p %d 0x%x 0x%x 0x%x )\n", This
, hmenu
, indexMenu
, idCmdFirst
, idCmdLast
, uFlags
);
140 if(!(CMF_DEFAULTONLY
& uFlags
) && This
->cidl
> 0)
142 HMENU hmenures
= LoadMenuW(shell32_hInstance
, MAKEINTRESOURCEW(MENU_SHV_FILE
));
144 if(uFlags
& CMF_EXPLORE
)
145 RemoveMenu(hmenures
, FCIDM_SHVIEW_OPEN
, MF_BYCOMMAND
);
147 uIDMax
= Shell_MergeMenus(hmenu
, GetSubMenu(hmenures
, 0), indexMenu
, idCmdFirst
, idCmdLast
, MM_SUBMENUSHAVEIDS
);
149 DestroyMenu(hmenures
);
155 mi
.cbSize
= sizeof(mi
);
156 mi
.fMask
= MIIM_ID
| MIIM_STRING
| MIIM_FTYPE
;
159 GetMenuItemInfoW(hmenu
, FCIDM_SHVIEW_EXPLORE
, MF_BYCOMMAND
, &mi
);
160 RemoveMenu(hmenu
, FCIDM_SHVIEW_EXPLORE
+ idCmdFirst
, MF_BYCOMMAND
);
162 mi
.cbSize
= sizeof(mi
);
163 mi
.fMask
= MIIM_ID
| MIIM_TYPE
| MIIM_STATE
| MIIM_STRING
;
165 mi
.fState
= MFS_ENABLED
;
166 mi
.wID
= FCIDM_SHVIEW_EXPLORE
;
167 mi
.fType
= MFT_STRING
;
168 InsertMenuItemW(hmenu
, (uFlags
& CMF_EXPLORE
) ? 1 : 2, MF_BYPOSITION
, &mi
);
171 SetMenuDefaultItem(hmenu
, 0, MF_BYPOSITION
);
173 if(uFlags
& ~CMF_CANRENAME
)
174 RemoveMenu(hmenu
, FCIDM_SHVIEW_RENAME
, MF_BYCOMMAND
);
177 UINT enable
= MF_BYCOMMAND
;
179 /* can't rename more than one item at a time*/
180 if (!This
->apidl
|| This
->cidl
> 1)
181 enable
|= MFS_DISABLED
;
184 DWORD attr
= SFGAO_CANRENAME
;
186 IShellFolder_GetAttributesOf(This
->parent
, 1, (LPCITEMIDLIST
*)This
->apidl
, &attr
);
187 enable
|= (attr
& SFGAO_CANRENAME
) ? MFS_ENABLED
: MFS_DISABLED
;
190 EnableMenuItem(hmenu
, FCIDM_SHVIEW_RENAME
, enable
);
193 return MAKE_HRESULT(SEVERITY_SUCCESS
, 0, uIDMax
-idCmdFirst
);
195 return MAKE_HRESULT(SEVERITY_SUCCESS
, 0, 0);
198 /**************************************************************************
204 static void DoOpenExplore(ContextMenu
*This
, HWND hwnd
, LPCSTR verb
)
207 BOOL bFolderFound
= FALSE
;
209 SHELLEXECUTEINFOA sei
;
211 /* Find the first item in the list that is not a value. These commands
212 should never be invoked if there isn't at least one folder item in the list.*/
214 for(i
= 0; i
<This
->cidl
; i
++)
216 if(!_ILIsValue(This
->apidl
[i
]))
223 if (!bFolderFound
) return;
225 pidlFQ
= ILCombine(This
->pidl
, This
->apidl
[i
]);
227 ZeroMemory(&sei
, sizeof(sei
));
228 sei
.cbSize
= sizeof(sei
);
229 sei
.fMask
= SEE_MASK_IDLIST
| SEE_MASK_CLASSNAME
;
230 sei
.lpIDList
= pidlFQ
;
231 sei
.lpClass
= "Folder";
233 sei
.nShow
= SW_SHOWNORMAL
;
235 ShellExecuteExA(&sei
);
239 /**************************************************************************
242 * deletes the currently selected items
244 static void DoDelete(ContextMenu
*This
)
248 IShellFolder_QueryInterface(This
->parent
, &IID_ISFHelper
, (void**)&helper
);
251 ISFHelper_DeleteItems(helper
, This
->cidl
, (LPCITEMIDLIST
*)This
->apidl
);
252 ISFHelper_Release(helper
);
256 /**************************************************************************
259 * copies the currently selected items into the clipboard
261 static void DoCopyOrCut(ContextMenu
*This
, HWND hwnd
, BOOL cut
)
263 IDataObject
*dataobject
;
265 TRACE("(%p)->(wnd=%p, cut=%d)\n", This
, hwnd
, cut
);
267 if (SUCCEEDED(IShellFolder_GetUIObjectOf(This
->parent
, hwnd
, This
->cidl
, (LPCITEMIDLIST
*)This
->apidl
, &IID_IDataObject
, 0, (void**)&dataobject
)))
269 OleSetClipboard(dataobject
);
270 IDataObject_Release(dataobject
);
274 /**************************************************************************
275 * Properties_AddPropSheetCallback
277 * Used by DoOpenProperties through SHCreatePropSheetExtArrayEx to add
278 * propertysheet pages from shell extensions.
280 static BOOL CALLBACK
Properties_AddPropSheetCallback(HPROPSHEETPAGE hpage
, LPARAM lparam
)
282 LPPROPSHEETHEADERW psh
= (LPPROPSHEETHEADERW
) lparam
;
283 psh
->u3
.phpage
[psh
->nPages
++] = hpage
;
288 #define MAX_PROP_PAGES 99
290 static void DoOpenProperties(ContextMenu
*This
, HWND hwnd
)
292 static const WCHAR wszFolder
[] = {'F','o','l','d','e','r', 0};
293 static const WCHAR wszFiletypeAll
[] = {'*',0};
294 LPSHELLFOLDER lpDesktopSF
;
297 WCHAR wszFiletype
[MAX_PATH
];
298 WCHAR wszFilename
[MAX_PATH
];
299 PROPSHEETHEADERW psh
;
300 HPROPSHEETPAGE hpages
[MAX_PROP_PAGES
];
304 TRACE("(%p)->(wnd=%p)\n", This
, hwnd
);
306 ZeroMemory(&psh
, sizeof(PROPSHEETHEADERW
));
307 psh
.dwSize
= sizeof (PROPSHEETHEADERW
);
308 psh
.hwndParent
= hwnd
;
309 psh
.dwFlags
= PSH_PROPTITLE
;
311 psh
.u3
.phpage
= hpages
;
312 psh
.u2
.nStartPage
= 0;
314 _ILSimpleGetTextW(This
->apidl
[0], (LPVOID
)wszFilename
, MAX_PATH
);
315 psh
.pszCaption
= (LPCWSTR
)wszFilename
;
317 /* Find out where to look for the shell extensions */
318 if (_ILIsValue(This
->apidl
[0]))
322 if (_ILGetExtension(This
->apidl
[0], sTemp
, 64))
324 HCR_MapTypeToValueA(sTemp
, sTemp
, 64, TRUE
);
325 MultiByteToWideChar(CP_ACP
, 0, sTemp
, -1, wszFiletype
, MAX_PATH
);
332 else if (_ILIsFolder(This
->apidl
[0]))
334 lstrcpynW(wszFiletype
, wszFolder
, 64);
336 else if (_ILIsSpecialFolder(This
->apidl
[0]))
339 static const WCHAR wszclsid
[] = {'C','L','S','I','D','\\', 0};
340 folderGUID
= _ILGetGUIDPointer(This
->apidl
[0]);
341 lstrcpyW(wszFiletype
, wszclsid
);
342 StringFromGUID2(folderGUID
, &wszFiletype
[6], MAX_PATH
- 6);
346 FIXME("Requested properties for unknown type.\n");
350 /* Get a suitable DataObject for accessing the files */
351 SHGetDesktopFolder(&lpDesktopSF
);
352 if (_ILIsPidlSimple(This
->pidl
))
354 ret
= IShellFolder_GetUIObjectOf(lpDesktopSF
, hwnd
, This
->cidl
, (LPCITEMIDLIST
*)This
->apidl
,
355 &IID_IDataObject
, NULL
, (LPVOID
*)&lpDo
);
356 IShellFolder_Release(lpDesktopSF
);
360 IShellFolder_BindToObject(lpDesktopSF
, This
->pidl
, NULL
, &IID_IShellFolder
, (LPVOID
*) &lpSF
);
361 ret
= IShellFolder_GetUIObjectOf(lpSF
, hwnd
, This
->cidl
, (LPCITEMIDLIST
*)This
->apidl
,
362 &IID_IDataObject
, NULL
, (LPVOID
*)&lpDo
);
363 IShellFolder_Release(lpSF
);
364 IShellFolder_Release(lpDesktopSF
);
369 hpsxa
= SHCreatePropSheetExtArrayEx(HKEY_CLASSES_ROOT
, wszFiletype
, MAX_PROP_PAGES
- psh
.nPages
, lpDo
);
372 SHAddFromPropSheetExtArray(hpsxa
, Properties_AddPropSheetCallback
, (LPARAM
)&psh
);
373 SHDestroyPropSheetExtArray(hpsxa
);
375 hpsxa
= SHCreatePropSheetExtArrayEx(HKEY_CLASSES_ROOT
, wszFiletypeAll
, MAX_PROP_PAGES
- psh
.nPages
, lpDo
);
378 SHAddFromPropSheetExtArray(hpsxa
, Properties_AddPropSheetCallback
, (LPARAM
)&psh
);
379 SHDestroyPropSheetExtArray(hpsxa
);
381 IDataObject_Release(lpDo
);
385 PropertySheetW(&psh
);
387 FIXME("No property pages found.\n");
390 static HRESULT WINAPI
ItemMenu_InvokeCommand(
391 IContextMenu3
*iface
,
392 LPCMINVOKECOMMANDINFO lpcmi
)
394 ContextMenu
*This
= impl_from_IContextMenu3(iface
);
396 if (lpcmi
->cbSize
!= sizeof(CMINVOKECOMMANDINFO
))
397 FIXME("Is an EX structure\n");
399 TRACE("(%p)->(invcom=%p verb=%p wnd=%p)\n",This
,lpcmi
,lpcmi
->lpVerb
, lpcmi
->hwnd
);
401 if( HIWORD(lpcmi
->lpVerb
)==0 && LOWORD(lpcmi
->lpVerb
) > FCIDM_SHVIEWLAST
)
403 TRACE("Invalid Verb %x\n",LOWORD(lpcmi
->lpVerb
));
407 if (HIWORD(lpcmi
->lpVerb
) == 0)
409 switch(LOWORD(lpcmi
->lpVerb
))
411 case FCIDM_SHVIEW_EXPLORE
:
412 TRACE("Verb FCIDM_SHVIEW_EXPLORE\n");
413 DoOpenExplore(This
, lpcmi
->hwnd
, "explore");
415 case FCIDM_SHVIEW_OPEN
:
416 TRACE("Verb FCIDM_SHVIEW_OPEN\n");
417 DoOpenExplore(This
, lpcmi
->hwnd
, "open");
419 case FCIDM_SHVIEW_RENAME
:
421 IShellBrowser
*browser
;
423 /* get the active IShellView */
424 browser
= (IShellBrowser
*)SendMessageA(lpcmi
->hwnd
, CWM_GETISHELLBROWSER
, 0, 0);
429 if(SUCCEEDED(IShellBrowser_QueryActiveShellView(browser
, &view
)))
431 TRACE("(shellview=%p)\n", view
);
432 IShellView_SelectItem(view
, This
->apidl
[0],
433 SVSI_DESELECTOTHERS
|SVSI_EDIT
|SVSI_ENSUREVISIBLE
|SVSI_FOCUSED
|SVSI_SELECT
);
434 IShellView_Release(view
);
439 case FCIDM_SHVIEW_DELETE
:
440 TRACE("Verb FCIDM_SHVIEW_DELETE\n");
443 case FCIDM_SHVIEW_COPY
:
444 TRACE("Verb FCIDM_SHVIEW_COPY\n");
445 DoCopyOrCut(This
, lpcmi
->hwnd
, FALSE
);
447 case FCIDM_SHVIEW_CUT
:
448 TRACE("Verb FCIDM_SHVIEW_CUT\n");
449 DoCopyOrCut(This
, lpcmi
->hwnd
, TRUE
);
451 case FCIDM_SHVIEW_PROPERTIES
:
452 TRACE("Verb FCIDM_SHVIEW_PROPERTIES\n");
453 DoOpenProperties(This
, lpcmi
->hwnd
);
456 FIXME("Unhandled Verb %xl\n",LOWORD(lpcmi
->lpVerb
));
462 TRACE("Verb is %s\n",debugstr_a(lpcmi
->lpVerb
));
463 if (strcmp(lpcmi
->lpVerb
,"delete")==0)
465 else if (strcmp(lpcmi
->lpVerb
,"properties")==0)
466 DoOpenProperties(This
, lpcmi
->hwnd
);
468 FIXME("Unhandled string verb %s\n",debugstr_a(lpcmi
->lpVerb
));
475 static HRESULT WINAPI
ItemMenu_GetCommandString(
476 IContextMenu3
*iface
,
483 ContextMenu
*This
= impl_from_IContextMenu3(iface
);
484 HRESULT hr
= E_INVALIDARG
;
486 TRACE("(%p)->(%lx flags=%x %p name=%p len=%x)\n", This
, idCommand
, uFlags
, lpReserved
, lpszName
, uMaxNameLen
);
498 case FCIDM_SHVIEW_OPEN
:
499 strcpy(lpszName
, "open");
502 case FCIDM_SHVIEW_EXPLORE
:
503 strcpy(lpszName
, "explore");
506 case FCIDM_SHVIEW_CUT
:
507 strcpy(lpszName
, "cut");
510 case FCIDM_SHVIEW_COPY
:
511 strcpy(lpszName
, "copy");
514 case FCIDM_SHVIEW_CREATELINK
:
515 strcpy(lpszName
, "link");
518 case FCIDM_SHVIEW_DELETE
:
519 strcpy(lpszName
, "delete");
522 case FCIDM_SHVIEW_PROPERTIES
:
523 strcpy(lpszName
, "properties");
526 case FCIDM_SHVIEW_RENAME
:
527 strcpy(lpszName
, "rename");
533 /* NT 4.0 with IE 3.0x or no IE will always call This with GCS_VERBW. In This
534 case, you need to do the lstrcpyW to the pointer passed.*/
538 case FCIDM_SHVIEW_OPEN
:
539 MultiByteToWideChar(CP_ACP
, 0, "open", -1, (LPWSTR
)lpszName
, uMaxNameLen
);
542 case FCIDM_SHVIEW_EXPLORE
:
543 MultiByteToWideChar(CP_ACP
, 0, "explore", -1, (LPWSTR
)lpszName
, uMaxNameLen
);
546 case FCIDM_SHVIEW_CUT
:
547 MultiByteToWideChar(CP_ACP
, 0, "cut", -1, (LPWSTR
)lpszName
, uMaxNameLen
);
550 case FCIDM_SHVIEW_COPY
:
551 MultiByteToWideChar(CP_ACP
, 0, "copy", -1, (LPWSTR
)lpszName
, uMaxNameLen
);
554 case FCIDM_SHVIEW_CREATELINK
:
555 MultiByteToWideChar(CP_ACP
, 0, "link", -1, (LPWSTR
)lpszName
, uMaxNameLen
);
558 case FCIDM_SHVIEW_DELETE
:
559 MultiByteToWideChar(CP_ACP
, 0, "delete", -1, (LPWSTR
)lpszName
, uMaxNameLen
);
562 case FCIDM_SHVIEW_PROPERTIES
:
563 MultiByteToWideChar(CP_ACP
, 0, "properties", -1, (LPWSTR
)lpszName
, uMaxNameLen
);
566 case FCIDM_SHVIEW_RENAME
:
567 MultiByteToWideChar( CP_ACP
, 0, "rename", -1, (LPWSTR
)lpszName
, uMaxNameLen
);
578 TRACE("-- (%p)->(name=%s)\n", This
, lpszName
);
582 /**************************************************************************
584 * should be only in IContextMenu2 and IContextMenu3
585 * is nevertheless called from word95
587 static HRESULT WINAPI
ContextMenu_HandleMenuMsg(IContextMenu3
*iface
, UINT msg
,
588 WPARAM wParam
, LPARAM lParam
)
590 ContextMenu
*This
= impl_from_IContextMenu3(iface
);
591 FIXME("(%p)->(0x%x 0x%lx 0x%lx): stub\n", This
, msg
, wParam
, lParam
);
595 static HRESULT WINAPI
ContextMenu_HandleMenuMsg2(IContextMenu3
*iface
, UINT msg
,
596 WPARAM wParam
, LPARAM lParam
, LRESULT
*result
)
598 ContextMenu
*This
= impl_from_IContextMenu3(iface
);
599 FIXME("(%p)->(0x%x 0x%lx 0x%lx %p): stub\n", This
, msg
, wParam
, lParam
, result
);
603 static const IContextMenu3Vtbl ItemContextMenuVtbl
=
605 ContextMenu_QueryInterface
,
608 ItemMenu_QueryContextMenu
,
609 ItemMenu_InvokeCommand
,
610 ItemMenu_GetCommandString
,
611 ContextMenu_HandleMenuMsg
,
612 ContextMenu_HandleMenuMsg2
615 HRESULT
ItemMenu_Constructor(IShellFolder
*parent
, LPCITEMIDLIST pidl
, const LPCITEMIDLIST
*apidl
, UINT cidl
,
616 REFIID riid
, void **pObj
)
622 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
623 if (!This
) return E_OUTOFMEMORY
;
625 This
->IContextMenu3_iface
.lpVtbl
= &ItemContextMenuVtbl
;
627 This
->parent
= parent
;
628 if (parent
) IShellFolder_AddRef(parent
);
630 This
->pidl
= ILClone(pidl
);
631 This
->apidl
= _ILCopyaPidl(apidl
, cidl
);
633 This
->allvalues
= TRUE
;
635 This
->desktop
= FALSE
;
637 for (i
= 0; i
< cidl
; i
++)
638 This
->allvalues
&= (_ILIsValue(apidl
[i
]) ? 1 : 0);
640 hr
= IContextMenu3_QueryInterface(&This
->IContextMenu3_iface
, riid
, pObj
);
641 IContextMenu3_Release(&This
->IContextMenu3_iface
);
646 /* Background menu implementation */
647 static HRESULT WINAPI
BackgroundMenu_QueryContextMenu(
648 IContextMenu3
*iface
,
655 ContextMenu
*This
= impl_from_IContextMenu3(iface
);
660 TRACE("(%p)->(hmenu=%p indexmenu=%x cmdfirst=%x cmdlast=%x flags=%x )\n",
661 This
, hMenu
, indexMenu
, idCmdFirst
, idCmdLast
, uFlags
);
663 hMyMenu
= LoadMenuA(shell32_hInstance
, "MENU_002");
664 if (uFlags
& CMF_DEFAULTONLY
)
666 HMENU ourMenu
= GetSubMenu(hMyMenu
,0);
667 UINT oldDef
= GetMenuDefaultItem(hMenu
,TRUE
,GMDI_USEDISABLED
);
668 UINT newDef
= GetMenuDefaultItem(ourMenu
,TRUE
,GMDI_USEDISABLED
);
669 if (newDef
!= oldDef
)
670 SetMenuDefaultItem(hMenu
,newDef
,TRUE
);
671 if (newDef
!=0xFFFFFFFF)
672 hr
= MAKE_HRESULT(SEVERITY_SUCCESS
, FACILITY_NULL
, newDef
+1);
674 hr
= MAKE_HRESULT(SEVERITY_SUCCESS
, FACILITY_NULL
, 0);
678 idMax
= Shell_MergeMenus (hMenu
, GetSubMenu(hMyMenu
,0), indexMenu
,
679 idCmdFirst
, idCmdLast
, MM_SUBMENUSHAVEIDS
);
680 hr
= MAKE_HRESULT(SEVERITY_SUCCESS
, FACILITY_NULL
, idMax
-idCmdFirst
);
682 DestroyMenu(hMyMenu
);
684 TRACE("(%p)->returning 0x%x\n",This
,hr
);
688 static void DoNewFolder(ContextMenu
*This
, IShellView
*view
)
692 IShellFolder_QueryInterface(This
->parent
, &IID_ISFHelper
, (void**)&helper
);
695 WCHAR nameW
[MAX_PATH
];
698 ISFHelper_GetUniqueName(helper
, nameW
, MAX_PATH
);
699 ISFHelper_AddFolder(helper
, 0, nameW
, &pidl
);
703 /* if we are in a shellview do labeledit */
704 IShellView_SelectItem(view
,
705 pidl
,(SVSI_DESELECTOTHERS
| SVSI_EDIT
| SVSI_ENSUREVISIBLE
706 |SVSI_FOCUSED
|SVSI_SELECT
));
710 ISFHelper_Release(helper
);
714 static BOOL
DoPaste(ContextMenu
*This
)
716 BOOL bSuccess
= FALSE
;
721 if(SUCCEEDED(OleGetClipboard(&pda
)))
726 TRACE("pda=%p\n", pda
);
728 /* Set the FORMATETC structure*/
729 InitFormatEtc(formatetc
, RegisterClipboardFormatW(CFSTR_SHELLIDLISTW
), TYMED_HGLOBAL
);
731 /* Get the pidls from IDataObject */
732 if(SUCCEEDED(IDataObject_GetData(pda
,&formatetc
,&medium
)))
734 LPITEMIDLIST
* apidl
;
736 IShellFolder
*psfFrom
= NULL
, *psfDesktop
;
738 LPIDA lpcida
= GlobalLock(medium
.u
.hGlobal
);
739 TRACE("cida=%p\n", lpcida
);
741 apidl
= _ILCopyCidaToaPidl(&pidl
, lpcida
);
743 /* bind to the source shellfolder */
744 SHGetDesktopFolder(&psfDesktop
);
747 IShellFolder_BindToObject(psfDesktop
, pidl
, NULL
, &IID_IShellFolder
, (LPVOID
*)&psfFrom
);
748 IShellFolder_Release(psfDesktop
);
753 /* get source and destination shellfolder */
754 ISFHelper
*psfhlpdst
, *psfhlpsrc
;
755 IShellFolder_QueryInterface(This
->parent
, &IID_ISFHelper
, (void**)&psfhlpdst
);
756 IShellFolder_QueryInterface(psfFrom
, &IID_ISFHelper
, (void**)&psfhlpsrc
);
758 /* do the copy/move */
759 if (psfhlpdst
&& psfhlpsrc
)
761 ISFHelper_CopyItems(psfhlpdst
, psfFrom
, lpcida
->cidl
, (LPCITEMIDLIST
*)apidl
);
763 ISFHelper_DeleteItems(psfhlpsrc, lpcida->cidl, apidl);
766 if(psfhlpdst
) ISFHelper_Release(psfhlpdst
);
767 if(psfhlpsrc
) ISFHelper_Release(psfhlpsrc
);
768 IShellFolder_Release(psfFrom
);
771 _ILFreeaPidl(apidl
, lpcida
->cidl
);
774 /* release the medium*/
775 ReleaseStgMedium(&medium
);
777 IDataObject_Release(pda
);
783 hMem
= GetClipboardData(CF_HDROP
);
787 char * pDropFiles
= GlobalLock(hMem
);
790 int len
, offset
= sizeof(DROPFILESTRUCT
);
792 while( pDropFiles
[offset
] != 0)
794 len
= strlen(pDropFiles
+ offset
);
795 TRACE("%s\n", pDropFiles
+ offset
);
806 static HRESULT WINAPI
BackgroundMenu_InvokeCommand(
807 IContextMenu3
*iface
,
808 LPCMINVOKECOMMANDINFO lpcmi
)
810 ContextMenu
*This
= impl_from_IContextMenu3(iface
);
811 IShellBrowser
*browser
;
812 IShellView
*view
= NULL
;
815 TRACE("(%p)->(invcom=%p verb=%p wnd=%p)\n", This
, lpcmi
, lpcmi
->lpVerb
, lpcmi
->hwnd
);
817 /* get the active IShellView */
818 if ((browser
= (IShellBrowser
*)SendMessageA(lpcmi
->hwnd
, CWM_GETISHELLBROWSER
, 0, 0)))
820 if (SUCCEEDED(IShellBrowser_QueryActiveShellView(browser
, &view
)))
821 IShellView_GetWindow(view
, &hWnd
);
824 if(HIWORD(lpcmi
->lpVerb
))
826 TRACE("%s\n", debugstr_a(lpcmi
->lpVerb
));
828 if (!strcmp(lpcmi
->lpVerb
, CMDSTR_NEWFOLDERA
))
830 DoNewFolder(This
, view
);
832 else if (!strcmp(lpcmi
->lpVerb
, CMDSTR_VIEWLISTA
))
834 if (hWnd
) SendMessageA(hWnd
, WM_COMMAND
, MAKEWPARAM(FCIDM_SHVIEW_LISTVIEW
, 0), 0);
836 else if (!strcmp(lpcmi
->lpVerb
, CMDSTR_VIEWDETAILSA
))
838 if (hWnd
) SendMessageA(hWnd
, WM_COMMAND
, MAKEWPARAM(FCIDM_SHVIEW_REPORTVIEW
, 0), 0);
842 FIXME("please report: unknown verb %s\n", debugstr_a(lpcmi
->lpVerb
));
847 switch (LOWORD(lpcmi
->lpVerb
))
849 case FCIDM_SHVIEW_REFRESH
:
850 if (view
) IShellView_Refresh(view
);
853 case FCIDM_SHVIEW_NEWFOLDER
:
854 DoNewFolder(This
, view
);
857 case FCIDM_SHVIEW_INSERT
:
861 case FCIDM_SHVIEW_PROPERTIES
:
863 ShellExecuteA(lpcmi
->hwnd
, "open", "rundll32.exe shell32.dll,Control_RunDLL desk.cpl", NULL
, NULL
, SW_SHOWNORMAL
);
865 FIXME("launch item properties dialog\n");
870 /* if it's an id just pass it to the parent shv */
871 if (hWnd
) SendMessageA(hWnd
, WM_COMMAND
, MAKEWPARAM(LOWORD(lpcmi
->lpVerb
), 0), 0);
877 IShellView_Release(view
);
882 static HRESULT WINAPI
BackgroundMenu_GetCommandString(
883 IContextMenu3
*iface
,
890 ContextMenu
*This
= impl_from_IContextMenu3(iface
);
892 TRACE("(%p)->(idcom=%lx flags=%x %p name=%p len=%x)\n",This
, idCommand
, uFlags
, lpReserved
, lpszName
, uMaxNameLen
);
894 /* test the existence of the menu items, the file dialog enables
895 the buttons according to this */
896 if (uFlags
== GCS_VALIDATEA
)
898 if(HIWORD(idCommand
))
900 if (!strcmp((LPSTR
)idCommand
, CMDSTR_VIEWLISTA
) ||
901 !strcmp((LPSTR
)idCommand
, CMDSTR_VIEWDETAILSA
) ||
902 !strcmp((LPSTR
)idCommand
, CMDSTR_NEWFOLDERA
))
909 FIXME("unknown command string\n");
913 static const IContextMenu3Vtbl BackgroundContextMenuVtbl
=
915 ContextMenu_QueryInterface
,
918 BackgroundMenu_QueryContextMenu
,
919 BackgroundMenu_InvokeCommand
,
920 BackgroundMenu_GetCommandString
,
921 ContextMenu_HandleMenuMsg
,
922 ContextMenu_HandleMenuMsg2
925 HRESULT
BackgroundMenu_Constructor(IShellFolder
*parent
, BOOL desktop
, REFIID riid
, void **pObj
)
930 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
931 if (!This
) return E_OUTOFMEMORY
;
933 This
->IContextMenu3_iface
.lpVtbl
= &BackgroundContextMenuVtbl
;
935 This
->parent
= parent
;
940 This
->allvalues
= FALSE
;
942 This
->desktop
= desktop
;
943 if (parent
) IShellFolder_AddRef(parent
);
945 hr
= IContextMenu3_QueryInterface(&This
->IContextMenu3_iface
, riid
, pObj
);
946 IContextMenu3_Release(&This
->IContextMenu3_iface
);