shell32: Merge ShellView menu implementations into a single file.
This commit is contained in:
parent
de0813c7a3
commit
e9fa059976
@ -46,9 +46,8 @@ C_SRCS = \
|
|||||||
shlfsbind.c \
|
shlfsbind.c \
|
||||||
shlmenu.c \
|
shlmenu.c \
|
||||||
shlview.c \
|
shlview.c \
|
||||||
|
shlview_cmenu.c \
|
||||||
shpolicy.c \
|
shpolicy.c \
|
||||||
shv_bg_cmenu.c \
|
|
||||||
shv_item_cmenu.c \
|
|
||||||
systray.c \
|
systray.c \
|
||||||
trash.c \
|
trash.c \
|
||||||
xdg.c
|
xdg.c
|
||||||
|
@ -600,7 +600,7 @@ static HRESULT WINAPI ISF_ControlPanel_fnGetUIObjectOf(IShellFolder2 *iface, HWN
|
|||||||
*ppvOut = NULL;
|
*ppvOut = NULL;
|
||||||
|
|
||||||
if (IsEqualIID(riid, &IID_IContextMenu) &&(cidl >= 1)) {
|
if (IsEqualIID(riid, &IID_IContextMenu) &&(cidl >= 1)) {
|
||||||
pObj = (LPUNKNOWN) ISvItemCm_Constructor((IShellFolder *) iface, This->pidlRoot, apidl, cidl);
|
pObj = (LPUNKNOWN) ItemMenu_Constructor((IShellFolder *) iface, This->pidlRoot, apidl, cidl);
|
||||||
hr = S_OK;
|
hr = S_OK;
|
||||||
} else if (IsEqualIID(riid, &IID_IDataObject) &&(cidl >= 1)) {
|
} else if (IsEqualIID(riid, &IID_IDataObject) &&(cidl >= 1)) {
|
||||||
pObj = (LPUNKNOWN) IDataObject_Constructor(hwndOwner, This->pidlRoot, apidl, cidl);
|
pObj = (LPUNKNOWN) IDataObject_Constructor(hwndOwner, This->pidlRoot, apidl, cidl);
|
||||||
|
@ -78,8 +78,8 @@ LPDATAOBJECT IDataObject_Constructor(HWND hwndOwner, LPCITEMIDLIST myPidl, LPCIT
|
|||||||
LPENUMFORMATETC IEnumFORMATETC_Constructor(UINT, const FORMATETC []) DECLSPEC_HIDDEN;
|
LPENUMFORMATETC IEnumFORMATETC_Constructor(UINT, const FORMATETC []) DECLSPEC_HIDDEN;
|
||||||
|
|
||||||
LPCLASSFACTORY IClassFactory_Constructor(REFCLSID) DECLSPEC_HIDDEN;
|
LPCLASSFACTORY IClassFactory_Constructor(REFCLSID) DECLSPEC_HIDDEN;
|
||||||
IContextMenu2 * ISvItemCm_Constructor(LPSHELLFOLDER pSFParent, LPCITEMIDLIST pidl, const LPCITEMIDLIST *aPidls, UINT uItemCount) DECLSPEC_HIDDEN;
|
IContextMenu2 * ItemMenu_Constructor(IShellFolder*, LPCITEMIDLIST, const LPCITEMIDLIST*, UINT) DECLSPEC_HIDDEN;
|
||||||
IContextMenu2 * ISvBgCm_Constructor(LPSHELLFOLDER pSFParent, BOOL bDesktop) DECLSPEC_HIDDEN;
|
IContextMenu2 * BackgroundMenu_Constructor(IShellFolder*, BOOL) DECLSPEC_HIDDEN;
|
||||||
LPSHELLVIEW IShellView_Constructor(LPSHELLFOLDER) DECLSPEC_HIDDEN;
|
LPSHELLVIEW IShellView_Constructor(LPSHELLFOLDER) DECLSPEC_HIDDEN;
|
||||||
|
|
||||||
HRESULT WINAPI IFSFolder_Constructor(IUnknown * pUnkOuter, REFIID riid, LPVOID * ppv) DECLSPEC_HIDDEN;
|
HRESULT WINAPI IFSFolder_Constructor(IUnknown * pUnkOuter, REFIID riid, LPVOID * ppv) DECLSPEC_HIDDEN;
|
||||||
|
@ -530,9 +530,9 @@ static HRESULT WINAPI ISF_Desktop_fnGetUIObjectOf (IShellFolder2 * iface,
|
|||||||
if (IsEqualIID (riid, &IID_IContextMenu))
|
if (IsEqualIID (riid, &IID_IContextMenu))
|
||||||
{
|
{
|
||||||
if (cidl > 0)
|
if (cidl > 0)
|
||||||
pObj = (LPUNKNOWN) ISvItemCm_Constructor( (IShellFolder *) iface, This->pidlRoot, apidl, cidl);
|
pObj = (LPUNKNOWN) ItemMenu_Constructor( (IShellFolder *) iface, This->pidlRoot, apidl, cidl);
|
||||||
else
|
else
|
||||||
pObj = (LPUNKNOWN) ISvBgCm_Constructor( (IShellFolder *) iface, TRUE);
|
pObj = (LPUNKNOWN) BackgroundMenu_Constructor( (IShellFolder *) iface, TRUE);
|
||||||
hr = S_OK;
|
hr = S_OK;
|
||||||
}
|
}
|
||||||
else if (IsEqualIID (riid, &IID_IDataObject) && (cidl >= 1))
|
else if (IsEqualIID (riid, &IID_IDataObject) && (cidl >= 1))
|
||||||
|
@ -744,7 +744,7 @@ IShellFolder_fnGetUIObjectOf (IShellFolder2 * iface,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (IsEqualIID (riid, &IID_IContextMenu) && (cidl >= 1)) {
|
if (IsEqualIID (riid, &IID_IContextMenu) && (cidl >= 1)) {
|
||||||
pObj = (LPUNKNOWN) ISvItemCm_Constructor ((IShellFolder *) iface,
|
pObj = (LPUNKNOWN) ItemMenu_Constructor ((IShellFolder *) iface,
|
||||||
This->pidlRoot, apidl, cidl);
|
This->pidlRoot, apidl, cidl);
|
||||||
hr = S_OK;
|
hr = S_OK;
|
||||||
} else if (IsEqualIID (riid, &IID_IDataObject) && (cidl >= 1)) {
|
} else if (IsEqualIID (riid, &IID_IDataObject) && (cidl >= 1)) {
|
||||||
|
@ -532,7 +532,7 @@ static HRESULT WINAPI ISF_MyComputer_fnGetUIObjectOf (IShellFolder2 * iface,
|
|||||||
|
|
||||||
if (IsEqualIID (riid, &IID_IContextMenu) && (cidl >= 1))
|
if (IsEqualIID (riid, &IID_IContextMenu) && (cidl >= 1))
|
||||||
{
|
{
|
||||||
pObj = (LPUNKNOWN) ISvItemCm_Constructor ((IShellFolder *) iface,
|
pObj = (LPUNKNOWN) ItemMenu_Constructor ((IShellFolder *) iface,
|
||||||
This->pidlRoot, apidl, cidl);
|
This->pidlRoot, apidl, cidl);
|
||||||
hr = S_OK;
|
hr = S_OK;
|
||||||
}
|
}
|
||||||
|
@ -426,7 +426,7 @@ static HRESULT WINAPI ISF_NetworkPlaces_fnGetUIObjectOf (IShellFolder2 * iface,
|
|||||||
|
|
||||||
if (IsEqualIID (riid, &IID_IContextMenu) && (cidl >= 1))
|
if (IsEqualIID (riid, &IID_IContextMenu) && (cidl >= 1))
|
||||||
{
|
{
|
||||||
pObj = (LPUNKNOWN) ISvItemCm_Constructor ((IShellFolder *) iface, This->pidlRoot, apidl, cidl);
|
pObj = (LPUNKNOWN) ItemMenu_Constructor ((IShellFolder *) iface, This->pidlRoot, apidl, cidl);
|
||||||
hr = S_OK;
|
hr = S_OK;
|
||||||
}
|
}
|
||||||
else if (IsEqualIID (riid, &IID_IDataObject) && (cidl >= 1))
|
else if (IsEqualIID (riid, &IID_IDataObject) && (cidl >= 1))
|
||||||
|
@ -1167,7 +1167,7 @@ static HRESULT WINAPI UnixFolder_IShellFolder2_GetUIObjectOf(IShellFolder2* ifac
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (IsEqualIID(&IID_IContextMenu, riid)) {
|
if (IsEqualIID(&IID_IContextMenu, riid)) {
|
||||||
*ppvOut = ISvItemCm_Constructor((IShellFolder*)iface, This->m_pidlLocation, apidl, cidl);
|
*ppvOut = ItemMenu_Constructor((IShellFolder*)iface, This->m_pidlLocation, apidl, cidl);
|
||||||
return S_OK;
|
return S_OK;
|
||||||
} else if (IsEqualIID(&IID_IDataObject, riid)) {
|
} else if (IsEqualIID(&IID_IDataObject, riid)) {
|
||||||
*ppvOut = IDataObject_Constructor(hwndOwner, This->m_pidlLocation, apidl, cidl);
|
*ppvOut = IDataObject_Constructor(hwndOwner, This->m_pidlLocation, apidl, cidl);
|
||||||
|
@ -1275,7 +1275,7 @@ HRESULT WINAPI CDefFolderMenu_Create2(LPCITEMIDLIST pidlFolder, HWND hwnd, UINT
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
folder_pidl=ILClone(pidlFolder);
|
folder_pidl=ILClone(pidlFolder);
|
||||||
system_menu = (IContextMenu*)ISvItemCm_Constructor(psf,folder_pidl,(const LPCITEMIDLIST*)apidl,cidl);
|
system_menu = (IContextMenu*)ItemMenu_Constructor(psf,folder_pidl,(const LPCITEMIDLIST*)apidl,cidl);
|
||||||
hres= SHELL_CreateContextMenu(hwnd,system_menu,psf,folder_pidl,apidl,cidl,ahkeys,nKeys,&IID_IContextMenu,(void**)ppcm);
|
hres= SHELL_CreateContextMenu(hwnd,system_menu,psf,folder_pidl,apidl,cidl,ahkeys,nKeys,&IID_IContextMenu,(void**)ppcm);
|
||||||
IContextMenu_Release(system_menu);
|
IContextMenu_Release(system_menu);
|
||||||
ILFree(folder_pidl);
|
ILFree(folder_pidl);
|
||||||
@ -1300,7 +1300,7 @@ HRESULT WINAPI SHCreateDefaultContextMenu(const DEFCONTEXTMENU *pdcm, REFIID rii
|
|||||||
folder_pidl=ILClone(pdcm->pidlFolder);
|
folder_pidl=ILClone(pdcm->pidlFolder);
|
||||||
if(pdcm->cKeys==0)
|
if(pdcm->cKeys==0)
|
||||||
FIXME("Loading shell extensions using IQueryAssociations not yet supported\n");
|
FIXME("Loading shell extensions using IQueryAssociations not yet supported\n");
|
||||||
system_menu = (IContextMenu*)ISvItemCm_Constructor(folder,folder_pidl,(const LPCITEMIDLIST*)pdcm->apidl,pdcm->cidl);
|
system_menu = (IContextMenu*)ItemMenu_Constructor(folder,folder_pidl,(const LPCITEMIDLIST*)pdcm->apidl,pdcm->cidl);
|
||||||
ret = SHELL_CreateContextMenu(pdcm->hwnd,system_menu,folder,folder_pidl,(LPCITEMIDLIST*)pdcm->apidl,pdcm->cidl,pdcm->aKeys,pdcm->cKeys,riid,ppv);
|
ret = SHELL_CreateContextMenu(pdcm->hwnd,system_menu,folder,folder_pidl,(LPCITEMIDLIST*)pdcm->apidl,pdcm->cidl,pdcm->aKeys,pdcm->cKeys,riid,ppv);
|
||||||
IContextMenu_Release(system_menu);
|
IContextMenu_Release(system_menu);
|
||||||
ILFree(folder_pidl);
|
ILFree(folder_pidl);
|
||||||
|
@ -1095,7 +1095,7 @@ static void ShellView_DoContextMenu(IShellViewImpl * This, WORD x, WORD y, BOOL
|
|||||||
{
|
{
|
||||||
hMenu = CreatePopupMenu();
|
hMenu = CreatePopupMenu();
|
||||||
|
|
||||||
pCM = ISvBgCm_Constructor(This->pSFParent, FALSE);
|
pCM = BackgroundMenu_Constructor(This->pSFParent, FALSE);
|
||||||
IContextMenu2_QueryContextMenu(pCM, hMenu, 0, FCIDM_SHVIEWFIRST, FCIDM_SHVIEWLAST, 0);
|
IContextMenu2_QueryContextMenu(pCM, hMenu, 0, FCIDM_SHVIEWFIRST, FCIDM_SHVIEWLAST, 0);
|
||||||
|
|
||||||
uCommand = TrackPopupMenu( hMenu, TPM_LEFTALIGN | TPM_RETURNCMD,x,y,0,This->hWnd,NULL);
|
uCommand = TrackPopupMenu( hMenu, TPM_LEFTALIGN | TPM_RETURNCMD,x,y,0,This->hWnd,NULL);
|
||||||
@ -2050,7 +2050,7 @@ static HRESULT WINAPI IShellView_fnGetItemObject(IShellView2 *iface, UINT uItem,
|
|||||||
|
|
||||||
if (IsEqualIID(&IID_IContextMenu, riid))
|
if (IsEqualIID(&IID_IContextMenu, riid))
|
||||||
{
|
{
|
||||||
*ppvOut = ISvBgCm_Constructor(This->pSFParent, FALSE);
|
*ppvOut = BackgroundMenu_Constructor(This->pSFParent, FALSE);
|
||||||
hr = S_OK;
|
hr = S_OK;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* IContextMenu for items in the shellview
|
* IContextMenu for items in the shellview
|
||||||
*
|
*
|
||||||
* Copyright 1998, 2000 Juergen Schmied <juergen.schmied@debitel.net>
|
* Copyright 1998-2000 Juergen Schmied <juergen.schmied@debitel.net>,
|
||||||
|
* <juergen.schmied@metronet.de>
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
@ -42,7 +43,6 @@
|
|||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
||||||
|
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
IContextMenu2 IContextMenu2_iface;
|
IContextMenu2 IContextMenu2_iface;
|
||||||
@ -51,28 +51,32 @@ typedef struct
|
|||||||
UINT verb_offset;
|
UINT verb_offset;
|
||||||
} ContextMenu;
|
} ContextMenu;
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* IContextMenu Implementation
|
|
||||||
*/
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
ContextMenu menu;
|
ContextMenu menu;
|
||||||
|
|
||||||
LPITEMIDLIST pidl; /* root pidl */
|
LPITEMIDLIST pidl; /* root pidl */
|
||||||
LPITEMIDLIST *apidl; /* array of child pidls */
|
LPITEMIDLIST *apidl; /* array of child pidls */
|
||||||
UINT cidl;
|
UINT cidl;
|
||||||
BOOL bAllValues;
|
BOOL bAllValues;
|
||||||
} ItemCmImpl;
|
} ItemMenu;
|
||||||
|
|
||||||
static inline ItemCmImpl *impl_from_IContextMenu2(IContextMenu2 *iface)
|
static inline ItemMenu *impl_from_IContextMenu2_Item(IContextMenu2 *iface)
|
||||||
{
|
{
|
||||||
return CONTAINING_RECORD(iface, ItemCmImpl, menu.IContextMenu2_iface);
|
return CONTAINING_RECORD(iface, ItemMenu, menu.IContextMenu2_iface);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
typedef struct
|
||||||
* ISvItemCm_CanRenameItems()
|
{
|
||||||
*/
|
ContextMenu menu;
|
||||||
static BOOL ISvItemCm_CanRenameItems(ItemCmImpl *This)
|
BOOL desktop;
|
||||||
|
} BackgroundMenu;
|
||||||
|
|
||||||
|
static inline BackgroundMenu *impl_from_IContextMenu2_Back(IContextMenu2 *iface)
|
||||||
|
{
|
||||||
|
return CONTAINING_RECORD(iface, BackgroundMenu, menu.IContextMenu2_iface);
|
||||||
|
}
|
||||||
|
|
||||||
|
static BOOL ItemMenu_CanRenameItems(ItemMenu *This)
|
||||||
{
|
{
|
||||||
DWORD attr;
|
DWORD attr;
|
||||||
|
|
||||||
@ -86,12 +90,9 @@ static BOOL ISvItemCm_CanRenameItems(ItemCmImpl *This)
|
|||||||
return attr & SFGAO_CANRENAME;
|
return attr & SFGAO_CANRENAME;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
static HRESULT WINAPI ItemMenu_QueryInterface(IContextMenu2 *iface, REFIID riid, LPVOID *ppvObj)
|
||||||
* ISvItemCm_fnQueryInterface
|
|
||||||
*/
|
|
||||||
static HRESULT WINAPI ISvItemCm_fnQueryInterface(IContextMenu2 *iface, REFIID riid, LPVOID *ppvObj)
|
|
||||||
{
|
{
|
||||||
ItemCmImpl *This = impl_from_IContextMenu2(iface);
|
ItemMenu *This = impl_from_IContextMenu2_Item(iface);
|
||||||
|
|
||||||
TRACE("(%p)->(\n\tIID:\t%s,%p)\n",This,debugstr_guid(riid),ppvObj);
|
TRACE("(%p)->(\n\tIID:\t%s,%p)\n",This,debugstr_guid(riid),ppvObj);
|
||||||
|
|
||||||
@ -118,12 +119,9 @@ static HRESULT WINAPI ISvItemCm_fnQueryInterface(IContextMenu2 *iface, REFIID ri
|
|||||||
return E_NOINTERFACE;
|
return E_NOINTERFACE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
static ULONG WINAPI ItemMenu_AddRef(IContextMenu2 *iface)
|
||||||
* ISvItemCm_fnAddRef
|
|
||||||
*/
|
|
||||||
static ULONG WINAPI ISvItemCm_fnAddRef(IContextMenu2 *iface)
|
|
||||||
{
|
{
|
||||||
ItemCmImpl *This = impl_from_IContextMenu2(iface);
|
ItemMenu *This = impl_from_IContextMenu2_Item(iface);
|
||||||
ULONG refCount = InterlockedIncrement(&This->menu.ref);
|
ULONG refCount = InterlockedIncrement(&This->menu.ref);
|
||||||
|
|
||||||
TRACE("(%p)->(count=%u)\n", This, refCount - 1);
|
TRACE("(%p)->(count=%u)\n", This, refCount - 1);
|
||||||
@ -131,12 +129,9 @@ static ULONG WINAPI ISvItemCm_fnAddRef(IContextMenu2 *iface)
|
|||||||
return refCount;
|
return refCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
static ULONG WINAPI ItemMenu_Release(IContextMenu2 *iface)
|
||||||
* ISvItemCm_fnRelease
|
|
||||||
*/
|
|
||||||
static ULONG WINAPI ISvItemCm_fnRelease(IContextMenu2 *iface)
|
|
||||||
{
|
{
|
||||||
ItemCmImpl *This = impl_from_IContextMenu2(iface);
|
ItemMenu *This = impl_from_IContextMenu2_Item(iface);
|
||||||
ULONG refCount = InterlockedDecrement(&This->menu.ref);
|
ULONG refCount = InterlockedDecrement(&This->menu.ref);
|
||||||
|
|
||||||
TRACE("(%p)->(count=%i)\n", This, refCount + 1);
|
TRACE("(%p)->(count=%i)\n", This, refCount + 1);
|
||||||
@ -158,10 +153,7 @@ static ULONG WINAPI ISvItemCm_fnRelease(IContextMenu2 *iface)
|
|||||||
return refCount;
|
return refCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
static HRESULT WINAPI ItemMenu_QueryContextMenu(
|
||||||
* ISvItemCm_fnQueryContextMenu()
|
|
||||||
*/
|
|
||||||
static HRESULT WINAPI ISvItemCm_fnQueryContextMenu(
|
|
||||||
IContextMenu2 *iface,
|
IContextMenu2 *iface,
|
||||||
HMENU hmenu,
|
HMENU hmenu,
|
||||||
UINT indexMenu,
|
UINT indexMenu,
|
||||||
@ -169,7 +161,7 @@ static HRESULT WINAPI ISvItemCm_fnQueryContextMenu(
|
|||||||
UINT idCmdLast,
|
UINT idCmdLast,
|
||||||
UINT uFlags)
|
UINT uFlags)
|
||||||
{
|
{
|
||||||
ItemCmImpl *This = impl_from_IContextMenu2(iface);
|
ItemMenu *This = impl_from_IContextMenu2_Item(iface);
|
||||||
INT uIDMax;
|
INT uIDMax;
|
||||||
|
|
||||||
TRACE("(%p)->(hmenu=%p indexmenu=%x cmdfirst=%x cmdlast=%x flags=%x )\n",This, hmenu, indexMenu, idCmdFirst, idCmdLast, uFlags);
|
TRACE("(%p)->(hmenu=%p indexmenu=%x cmdfirst=%x cmdlast=%x flags=%x )\n",This, hmenu, indexMenu, idCmdFirst, idCmdLast, uFlags);
|
||||||
@ -212,7 +204,7 @@ static HRESULT WINAPI ISvItemCm_fnQueryContextMenu(
|
|||||||
if(uFlags & ~CMF_CANRENAME)
|
if(uFlags & ~CMF_CANRENAME)
|
||||||
RemoveMenu(hmenu, FCIDM_SHVIEW_RENAME, MF_BYCOMMAND);
|
RemoveMenu(hmenu, FCIDM_SHVIEW_RENAME, MF_BYCOMMAND);
|
||||||
else
|
else
|
||||||
EnableMenuItem(hmenu, FCIDM_SHVIEW_RENAME, MF_BYCOMMAND | ISvItemCm_CanRenameItems(This) ? MFS_ENABLED : MFS_DISABLED);
|
EnableMenuItem(hmenu, FCIDM_SHVIEW_RENAME, MF_BYCOMMAND | ItemMenu_CanRenameItems(This) ? MFS_ENABLED : MFS_DISABLED);
|
||||||
|
|
||||||
return MAKE_HRESULT(SEVERITY_SUCCESS, 0, uIDMax-idCmdFirst);
|
return MAKE_HRESULT(SEVERITY_SUCCESS, 0, uIDMax-idCmdFirst);
|
||||||
}
|
}
|
||||||
@ -225,7 +217,7 @@ static HRESULT WINAPI ISvItemCm_fnQueryContextMenu(
|
|||||||
* for folders only
|
* for folders only
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void DoOpenExplore(ItemCmImpl *This, HWND hwnd, LPCSTR verb)
|
static void DoOpenExplore(ItemMenu *This, HWND hwnd, LPCSTR verb)
|
||||||
{
|
{
|
||||||
UINT i, bFolderFound = FALSE;
|
UINT i, bFolderFound = FALSE;
|
||||||
LPITEMIDLIST pidlFQ;
|
LPITEMIDLIST pidlFQ;
|
||||||
@ -264,7 +256,7 @@ static void DoOpenExplore(ItemCmImpl *This, HWND hwnd, LPCSTR verb)
|
|||||||
*
|
*
|
||||||
* deletes the currently selected items
|
* deletes the currently selected items
|
||||||
*/
|
*/
|
||||||
static void DoDelete(ItemCmImpl *This)
|
static void DoDelete(ItemMenu *This)
|
||||||
{
|
{
|
||||||
ISFHelper * psfhlp;
|
ISFHelper * psfhlp;
|
||||||
|
|
||||||
@ -281,7 +273,7 @@ static void DoDelete(ItemCmImpl *This)
|
|||||||
*
|
*
|
||||||
* copies the currently selected items into the clipboard
|
* copies the currently selected items into the clipboard
|
||||||
*/
|
*/
|
||||||
static BOOL DoCopyOrCut(ItemCmImpl *This, HWND hwnd, BOOL bCut)
|
static BOOL DoCopyOrCut(ItemMenu *This, HWND hwnd, BOOL bCut)
|
||||||
{
|
{
|
||||||
LPSHELLBROWSER lpSB;
|
LPSHELLBROWSER lpSB;
|
||||||
LPSHELLVIEW lpSV;
|
LPSHELLVIEW lpSV;
|
||||||
@ -322,7 +314,7 @@ static BOOL CALLBACK Properties_AddPropSheetCallback(HPROPSHEETPAGE hpage, LPARA
|
|||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* DoOpenProperties
|
* DoOpenProperties
|
||||||
*/
|
*/
|
||||||
static void DoOpenProperties(ItemCmImpl *This, HWND hwnd)
|
static void DoOpenProperties(ItemMenu *This, HWND hwnd)
|
||||||
{
|
{
|
||||||
static const UINT MAX_PROP_PAGES = 99;
|
static const UINT MAX_PROP_PAGES = 99;
|
||||||
static const WCHAR wszFolder[] = {'F','o','l','d','e','r', 0};
|
static const WCHAR wszFolder[] = {'F','o','l','d','e','r', 0};
|
||||||
@ -423,14 +415,11 @@ static void DoOpenProperties(ItemCmImpl *This, HWND hwnd)
|
|||||||
FIXME("No property pages found.\n");
|
FIXME("No property pages found.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
static HRESULT WINAPI ItemMenu_InvokeCommand(
|
||||||
* ISvItemCm_fnInvokeCommand()
|
|
||||||
*/
|
|
||||||
static HRESULT WINAPI ISvItemCm_fnInvokeCommand(
|
|
||||||
IContextMenu2 *iface,
|
IContextMenu2 *iface,
|
||||||
LPCMINVOKECOMMANDINFO lpcmi)
|
LPCMINVOKECOMMANDINFO lpcmi)
|
||||||
{
|
{
|
||||||
ItemCmImpl *This = impl_from_IContextMenu2(iface);
|
ItemMenu *This = impl_from_IContextMenu2_Item(iface);
|
||||||
|
|
||||||
if (lpcmi->cbSize != sizeof(CMINVOKECOMMANDINFO))
|
if (lpcmi->cbSize != sizeof(CMINVOKECOMMANDINFO))
|
||||||
FIXME("Is an EX structure\n");
|
FIXME("Is an EX structure\n");
|
||||||
@ -511,10 +500,7 @@ static HRESULT WINAPI ISvItemCm_fnInvokeCommand(
|
|||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
static HRESULT WINAPI ItemMenu_GetCommandString(
|
||||||
* ISvItemCm_fnGetCommandString()
|
|
||||||
*/
|
|
||||||
static HRESULT WINAPI ISvItemCm_fnGetCommandString(
|
|
||||||
IContextMenu2 *iface,
|
IContextMenu2 *iface,
|
||||||
UINT_PTR idCommand,
|
UINT_PTR idCommand,
|
||||||
UINT uFlags,
|
UINT uFlags,
|
||||||
@ -522,7 +508,7 @@ static HRESULT WINAPI ISvItemCm_fnGetCommandString(
|
|||||||
LPSTR lpszName,
|
LPSTR lpszName,
|
||||||
UINT uMaxNameLen)
|
UINT uMaxNameLen)
|
||||||
{
|
{
|
||||||
ItemCmImpl *This = impl_from_IContextMenu2(iface);
|
ItemMenu *This = impl_from_IContextMenu2_Item(iface);
|
||||||
|
|
||||||
HRESULT hr = E_INVALIDARG;
|
HRESULT hr = E_INVALIDARG;
|
||||||
|
|
||||||
@ -567,18 +553,17 @@ static HRESULT WINAPI ISvItemCm_fnGetCommandString(
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* ISvItemCm_fnHandleMenuMsg()
|
|
||||||
* NOTES
|
* NOTES
|
||||||
* should be only in IContextMenu2 and IContextMenu3
|
* should be only in IContextMenu2 and IContextMenu3
|
||||||
* is nevertheless called from word95
|
* is nevertheless called from word95
|
||||||
*/
|
*/
|
||||||
static HRESULT WINAPI ISvItemCm_fnHandleMenuMsg(
|
static HRESULT WINAPI ItemMenu_HandleMenuMsg(
|
||||||
IContextMenu2 *iface,
|
IContextMenu2 *iface,
|
||||||
UINT uMsg,
|
UINT uMsg,
|
||||||
WPARAM wParam,
|
WPARAM wParam,
|
||||||
LPARAM lParam)
|
LPARAM lParam)
|
||||||
{
|
{
|
||||||
ItemCmImpl *This = impl_from_IContextMenu2(iface);
|
ItemMenu *This = impl_from_IContextMenu2_Item(iface);
|
||||||
|
|
||||||
TRACE("(%p)->(msg=%x wp=%lx lp=%lx)\n",This, uMsg, wParam, lParam);
|
TRACE("(%p)->(msg=%x wp=%lx lp=%lx)\n",This, uMsg, wParam, lParam);
|
||||||
|
|
||||||
@ -587,20 +572,20 @@ static HRESULT WINAPI ISvItemCm_fnHandleMenuMsg(
|
|||||||
|
|
||||||
static const IContextMenu2Vtbl ItemContextMenuVtbl =
|
static const IContextMenu2Vtbl ItemContextMenuVtbl =
|
||||||
{
|
{
|
||||||
ISvItemCm_fnQueryInterface,
|
ItemMenu_QueryInterface,
|
||||||
ISvItemCm_fnAddRef,
|
ItemMenu_AddRef,
|
||||||
ISvItemCm_fnRelease,
|
ItemMenu_Release,
|
||||||
ISvItemCm_fnQueryContextMenu,
|
ItemMenu_QueryContextMenu,
|
||||||
ISvItemCm_fnInvokeCommand,
|
ItemMenu_InvokeCommand,
|
||||||
ISvItemCm_fnGetCommandString,
|
ItemMenu_GetCommandString,
|
||||||
ISvItemCm_fnHandleMenuMsg
|
ItemMenu_HandleMenuMsg
|
||||||
};
|
};
|
||||||
|
|
||||||
IContextMenu2 *ISvItemCm_Constructor(IShellFolder *parent, LPCITEMIDLIST pidl, const LPCITEMIDLIST *apidl, UINT cidl)
|
IContextMenu2 *ItemMenu_Constructor(IShellFolder *parent, LPCITEMIDLIST pidl, const LPCITEMIDLIST *apidl, UINT cidl)
|
||||||
{ ItemCmImpl* cm;
|
{ ItemMenu* cm;
|
||||||
UINT u;
|
UINT u;
|
||||||
|
|
||||||
cm = HeapAlloc(GetProcessHeap(), 0, sizeof(ItemCmImpl));
|
cm = HeapAlloc(GetProcessHeap(), 0, sizeof(ItemMenu));
|
||||||
cm->menu.IContextMenu2_iface.lpVtbl = &ItemContextMenuVtbl;
|
cm->menu.IContextMenu2_iface.lpVtbl = &ItemContextMenuVtbl;
|
||||||
cm->menu.ref = 1;
|
cm->menu.ref = 1;
|
||||||
cm->menu.verb_offset = 0;
|
cm->menu.verb_offset = 0;
|
||||||
@ -621,3 +606,368 @@ IContextMenu2 *ISvItemCm_Constructor(IShellFolder *parent, LPCITEMIDLIST pidl, c
|
|||||||
|
|
||||||
return &cm->menu.IContextMenu2_iface;
|
return &cm->menu.IContextMenu2_iface;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Background menu implementation */
|
||||||
|
static HRESULT WINAPI BackgroundMenu_QueryInterface(IContextMenu2 *iface, REFIID riid, void **ppvObj)
|
||||||
|
{
|
||||||
|
BackgroundMenu *This = impl_from_IContextMenu2_Back(iface);
|
||||||
|
|
||||||
|
TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppvObj);
|
||||||
|
|
||||||
|
*ppvObj = NULL;
|
||||||
|
|
||||||
|
if(IsEqualIID(riid, &IID_IUnknown) ||
|
||||||
|
IsEqualIID(riid, &IID_IContextMenu) ||
|
||||||
|
IsEqualIID(riid, &IID_IContextMenu2))
|
||||||
|
{
|
||||||
|
*ppvObj = This;
|
||||||
|
}
|
||||||
|
else if(IsEqualIID(riid, &IID_IShellExtInit)) /*IShellExtInit*/
|
||||||
|
{
|
||||||
|
FIXME("-- LPSHELLEXTINIT pointer requested\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
if(*ppvObj)
|
||||||
|
{
|
||||||
|
IUnknown_AddRef((IUnknown*)*ppvObj);
|
||||||
|
TRACE("-- Interface: (%p)->(%p)\n",ppvObj,*ppvObj);
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
TRACE("-- Interface: E_NOINTERFACE\n");
|
||||||
|
return E_NOINTERFACE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static ULONG WINAPI BackgroundMenu_AddRef(IContextMenu2 *iface)
|
||||||
|
{
|
||||||
|
BackgroundMenu *This = impl_from_IContextMenu2_Back(iface);
|
||||||
|
ULONG ref = InterlockedIncrement(&This->menu.ref);
|
||||||
|
TRACE("(%p)->(%u)\n", This, ref);
|
||||||
|
return ref;
|
||||||
|
}
|
||||||
|
|
||||||
|
static ULONG WINAPI BackgroundMenu_Release(IContextMenu2 *iface)
|
||||||
|
{
|
||||||
|
BackgroundMenu *This = impl_from_IContextMenu2_Back(iface);
|
||||||
|
ULONG ref = InterlockedDecrement(&This->menu.ref);
|
||||||
|
|
||||||
|
TRACE("(%p)->(%u)\n", This, ref);
|
||||||
|
|
||||||
|
if (!ref)
|
||||||
|
{
|
||||||
|
if (This->menu.parent)
|
||||||
|
IShellFolder_Release(This->menu.parent);
|
||||||
|
|
||||||
|
HeapFree(GetProcessHeap(), 0, This);
|
||||||
|
}
|
||||||
|
|
||||||
|
return ref;
|
||||||
|
}
|
||||||
|
|
||||||
|
static HRESULT WINAPI BackgroundMenu_QueryContextMenu(
|
||||||
|
IContextMenu2 *iface,
|
||||||
|
HMENU hMenu,
|
||||||
|
UINT indexMenu,
|
||||||
|
UINT idCmdFirst,
|
||||||
|
UINT idCmdLast,
|
||||||
|
UINT uFlags)
|
||||||
|
{
|
||||||
|
BackgroundMenu *This = impl_from_IContextMenu2_Back(iface);
|
||||||
|
HMENU hMyMenu;
|
||||||
|
UINT idMax;
|
||||||
|
HRESULT hr;
|
||||||
|
|
||||||
|
TRACE("(%p)->(hmenu=%p indexmenu=%x cmdfirst=%x cmdlast=%x flags=%x )\n",
|
||||||
|
This, hMenu, indexMenu, idCmdFirst, idCmdLast, uFlags);
|
||||||
|
|
||||||
|
This->menu.verb_offset = idCmdFirst;
|
||||||
|
|
||||||
|
hMyMenu = LoadMenuA(shell32_hInstance, "MENU_002");
|
||||||
|
if (uFlags & CMF_DEFAULTONLY)
|
||||||
|
{
|
||||||
|
HMENU ourMenu = GetSubMenu(hMyMenu,0);
|
||||||
|
UINT oldDef = GetMenuDefaultItem(hMenu,TRUE,GMDI_USEDISABLED);
|
||||||
|
UINT newDef = GetMenuDefaultItem(ourMenu,TRUE,GMDI_USEDISABLED);
|
||||||
|
if (newDef != oldDef)
|
||||||
|
SetMenuDefaultItem(hMenu,newDef,TRUE);
|
||||||
|
if (newDef!=0xFFFFFFFF)
|
||||||
|
hr = MAKE_HRESULT(SEVERITY_SUCCESS, FACILITY_NULL, newDef+1);
|
||||||
|
else
|
||||||
|
hr = MAKE_HRESULT(SEVERITY_SUCCESS, FACILITY_NULL, 0);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
idMax = Shell_MergeMenus (hMenu, GetSubMenu(hMyMenu,0), indexMenu,
|
||||||
|
idCmdFirst, idCmdLast, MM_SUBMENUSHAVEIDS);
|
||||||
|
hr = MAKE_HRESULT(SEVERITY_SUCCESS, FACILITY_NULL, idMax-idCmdFirst);
|
||||||
|
}
|
||||||
|
DestroyMenu(hMyMenu);
|
||||||
|
|
||||||
|
TRACE("(%p)->returning 0x%x\n",This,hr);
|
||||||
|
return hr;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void DoNewFolder(BackgroundMenu *This, IShellView *psv)
|
||||||
|
{
|
||||||
|
ISFHelper * psfhlp;
|
||||||
|
WCHAR wszName[MAX_PATH];
|
||||||
|
|
||||||
|
IShellFolder_QueryInterface(This->menu.parent, &IID_ISFHelper, (LPVOID*)&psfhlp);
|
||||||
|
if (psfhlp)
|
||||||
|
{
|
||||||
|
LPITEMIDLIST pidl;
|
||||||
|
ISFHelper_GetUniqueName(psfhlp, wszName, MAX_PATH);
|
||||||
|
ISFHelper_AddFolder(psfhlp, 0, wszName, &pidl);
|
||||||
|
|
||||||
|
if(psv)
|
||||||
|
{
|
||||||
|
/* if we are in a shellview do labeledit */
|
||||||
|
IShellView_SelectItem(psv,
|
||||||
|
pidl,(SVSI_DESELECTOTHERS | SVSI_EDIT | SVSI_ENSUREVISIBLE
|
||||||
|
|SVSI_FOCUSED|SVSI_SELECT));
|
||||||
|
}
|
||||||
|
SHFree(pidl);
|
||||||
|
|
||||||
|
ISFHelper_Release(psfhlp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static BOOL DoPaste(BackgroundMenu *This)
|
||||||
|
{
|
||||||
|
BOOL bSuccess = FALSE;
|
||||||
|
IDataObject * pda;
|
||||||
|
|
||||||
|
TRACE("\n");
|
||||||
|
|
||||||
|
if(SUCCEEDED(OleGetClipboard(&pda)))
|
||||||
|
{
|
||||||
|
STGMEDIUM medium;
|
||||||
|
FORMATETC formatetc;
|
||||||
|
|
||||||
|
TRACE("pda=%p\n", pda);
|
||||||
|
|
||||||
|
/* Set the FORMATETC structure*/
|
||||||
|
InitFormatEtc(formatetc, RegisterClipboardFormatW(CFSTR_SHELLIDLISTW), TYMED_HGLOBAL);
|
||||||
|
|
||||||
|
/* Get the pidls from IDataObject */
|
||||||
|
if(SUCCEEDED(IDataObject_GetData(pda,&formatetc,&medium)))
|
||||||
|
{
|
||||||
|
LPITEMIDLIST * apidl;
|
||||||
|
LPITEMIDLIST pidl;
|
||||||
|
IShellFolder *psfFrom = NULL, *psfDesktop;
|
||||||
|
|
||||||
|
LPIDA lpcida = GlobalLock(medium.u.hGlobal);
|
||||||
|
TRACE("cida=%p\n", lpcida);
|
||||||
|
|
||||||
|
apidl = _ILCopyCidaToaPidl(&pidl, lpcida);
|
||||||
|
|
||||||
|
/* bind to the source shellfolder */
|
||||||
|
SHGetDesktopFolder(&psfDesktop);
|
||||||
|
if(psfDesktop)
|
||||||
|
{
|
||||||
|
IShellFolder_BindToObject(psfDesktop, pidl, NULL, &IID_IShellFolder, (LPVOID*)&psfFrom);
|
||||||
|
IShellFolder_Release(psfDesktop);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (psfFrom)
|
||||||
|
{
|
||||||
|
/* get source and destination shellfolder */
|
||||||
|
ISFHelper *psfhlpdst, *psfhlpsrc;
|
||||||
|
IShellFolder_QueryInterface(This->menu.parent, &IID_ISFHelper, (LPVOID*)&psfhlpdst);
|
||||||
|
IShellFolder_QueryInterface(psfFrom, &IID_ISFHelper, (LPVOID*)&psfhlpsrc);
|
||||||
|
|
||||||
|
/* do the copy/move */
|
||||||
|
if (psfhlpdst && psfhlpsrc)
|
||||||
|
{
|
||||||
|
ISFHelper_CopyItems(psfhlpdst, psfFrom, lpcida->cidl, (LPCITEMIDLIST*)apidl);
|
||||||
|
/* FIXME handle move
|
||||||
|
ISFHelper_DeleteItems(psfhlpsrc, lpcida->cidl, apidl);
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
if(psfhlpdst) ISFHelper_Release(psfhlpdst);
|
||||||
|
if(psfhlpsrc) ISFHelper_Release(psfhlpsrc);
|
||||||
|
IShellFolder_Release(psfFrom);
|
||||||
|
}
|
||||||
|
|
||||||
|
_ILFreeaPidl(apidl, lpcida->cidl);
|
||||||
|
SHFree(pidl);
|
||||||
|
|
||||||
|
/* release the medium*/
|
||||||
|
ReleaseStgMedium(&medium);
|
||||||
|
}
|
||||||
|
IDataObject_Release(pda);
|
||||||
|
}
|
||||||
|
#if 0
|
||||||
|
HGLOBAL hMem;
|
||||||
|
|
||||||
|
OpenClipboard(NULL);
|
||||||
|
hMem = GetClipboardData(CF_HDROP);
|
||||||
|
|
||||||
|
if(hMem)
|
||||||
|
{
|
||||||
|
char * pDropFiles = GlobalLock(hMem);
|
||||||
|
if(pDropFiles)
|
||||||
|
{
|
||||||
|
int len, offset = sizeof(DROPFILESTRUCT);
|
||||||
|
|
||||||
|
while( pDropFiles[offset] != 0)
|
||||||
|
{
|
||||||
|
len = strlen(pDropFiles + offset);
|
||||||
|
TRACE("%s\n", pDropFiles + offset);
|
||||||
|
offset += len+1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
GlobalUnlock(hMem);
|
||||||
|
}
|
||||||
|
CloseClipboard();
|
||||||
|
#endif
|
||||||
|
return bSuccess;
|
||||||
|
}
|
||||||
|
|
||||||
|
static HRESULT WINAPI BackgroundMenu_InvokeCommand(
|
||||||
|
IContextMenu2 *iface,
|
||||||
|
LPCMINVOKECOMMANDINFO lpcmi)
|
||||||
|
{
|
||||||
|
BackgroundMenu *This = impl_from_IContextMenu2_Back(iface);
|
||||||
|
LPSHELLBROWSER lpSB;
|
||||||
|
LPSHELLVIEW lpSV = NULL;
|
||||||
|
HWND hWndSV = 0;
|
||||||
|
|
||||||
|
TRACE("(%p)->(invcom=%p verb=%p wnd=%p)\n",This,lpcmi,lpcmi->lpVerb, lpcmi->hwnd);
|
||||||
|
|
||||||
|
/* get the active IShellView */
|
||||||
|
if((lpSB = (LPSHELLBROWSER)SendMessageA(lpcmi->hwnd, CWM_GETISHELLBROWSER,0,0)))
|
||||||
|
{
|
||||||
|
if(SUCCEEDED(IShellBrowser_QueryActiveShellView(lpSB, &lpSV)))
|
||||||
|
{
|
||||||
|
IShellView_GetWindow(lpSV, &hWndSV);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(HIWORD(lpcmi->lpVerb))
|
||||||
|
{
|
||||||
|
TRACE("%s\n",lpcmi->lpVerb);
|
||||||
|
|
||||||
|
if (! strcmp(lpcmi->lpVerb,CMDSTR_NEWFOLDERA))
|
||||||
|
{
|
||||||
|
DoNewFolder(This, lpSV);
|
||||||
|
}
|
||||||
|
else if (! strcmp(lpcmi->lpVerb,CMDSTR_VIEWLISTA))
|
||||||
|
{
|
||||||
|
if(hWndSV) SendMessageA(hWndSV, WM_COMMAND, MAKEWPARAM(FCIDM_SHVIEW_LISTVIEW,0),0 );
|
||||||
|
}
|
||||||
|
else if (! strcmp(lpcmi->lpVerb,CMDSTR_VIEWDETAILSA))
|
||||||
|
{
|
||||||
|
if(hWndSV) SendMessageA(hWndSV, WM_COMMAND, MAKEWPARAM(FCIDM_SHVIEW_REPORTVIEW,0),0 );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
FIXME("please report: unknown verb %s\n",lpcmi->lpVerb);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
switch(LOWORD(lpcmi->lpVerb)-This->menu.verb_offset)
|
||||||
|
{
|
||||||
|
case FCIDM_SHVIEW_REFRESH:
|
||||||
|
if (lpSV) IShellView_Refresh(lpSV);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case FCIDM_SHVIEW_NEWFOLDER:
|
||||||
|
DoNewFolder(This, lpSV);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case FCIDM_SHVIEW_INSERT:
|
||||||
|
DoPaste(This);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case FCIDM_SHVIEW_PROPERTIES:
|
||||||
|
if (This->desktop) {
|
||||||
|
ShellExecuteA(lpcmi->hwnd, "open", "rundll32.exe shell32.dll,Control_RunDLL desk.cpl", NULL, NULL, SW_SHOWNORMAL);
|
||||||
|
} else {
|
||||||
|
FIXME("launch item properties dialog\n");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
/* if it's an id just pass it to the parent shv */
|
||||||
|
if (hWndSV) SendMessageA(hWndSV, WM_COMMAND, MAKEWPARAM(LOWORD(lpcmi->lpVerb), 0),0 );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (lpSV)
|
||||||
|
IShellView_Release(lpSV); /* QueryActiveShellView does AddRef */
|
||||||
|
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
static HRESULT WINAPI BackgroundMenu_GetCommandString(
|
||||||
|
IContextMenu2 *iface,
|
||||||
|
UINT_PTR idCommand,
|
||||||
|
UINT uFlags,
|
||||||
|
UINT* lpReserved,
|
||||||
|
LPSTR lpszName,
|
||||||
|
UINT uMaxNameLen)
|
||||||
|
{
|
||||||
|
BackgroundMenu *This = impl_from_IContextMenu2_Back(iface);
|
||||||
|
|
||||||
|
TRACE("(%p)->(idcom=%lx flags=%x %p name=%p len=%x)\n",This, idCommand, uFlags, lpReserved, lpszName, uMaxNameLen);
|
||||||
|
|
||||||
|
/* test the existence of the menu items, the file dialog enables
|
||||||
|
the buttons according to this */
|
||||||
|
if (uFlags == GCS_VALIDATEA)
|
||||||
|
{
|
||||||
|
if(HIWORD(idCommand))
|
||||||
|
{
|
||||||
|
if (!strcmp((LPSTR)idCommand, CMDSTR_VIEWLISTA) ||
|
||||||
|
!strcmp((LPSTR)idCommand, CMDSTR_VIEWDETAILSA) ||
|
||||||
|
!strcmp((LPSTR)idCommand, CMDSTR_NEWFOLDERA))
|
||||||
|
{
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
FIXME("unknown command string\n");
|
||||||
|
return E_FAIL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static HRESULT WINAPI BackgroundMenu_HandleMenuMsg(
|
||||||
|
IContextMenu2 *iface,
|
||||||
|
UINT uMsg,
|
||||||
|
WPARAM wParam,
|
||||||
|
LPARAM lParam)
|
||||||
|
{
|
||||||
|
BackgroundMenu *This = impl_from_IContextMenu2_Back(iface);
|
||||||
|
FIXME("(%p)->(msg=%x wp=%lx lp=%lx)\n",This, uMsg, wParam, lParam);
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static const IContextMenu2Vtbl BackgroundContextMenuVtbl =
|
||||||
|
{
|
||||||
|
BackgroundMenu_QueryInterface,
|
||||||
|
BackgroundMenu_AddRef,
|
||||||
|
BackgroundMenu_Release,
|
||||||
|
BackgroundMenu_QueryContextMenu,
|
||||||
|
BackgroundMenu_InvokeCommand,
|
||||||
|
BackgroundMenu_GetCommandString,
|
||||||
|
BackgroundMenu_HandleMenuMsg
|
||||||
|
};
|
||||||
|
|
||||||
|
IContextMenu2 *BackgroundMenu_Constructor(IShellFolder *parent, BOOL desktop)
|
||||||
|
{
|
||||||
|
BackgroundMenu *cm;
|
||||||
|
|
||||||
|
cm = HeapAlloc(GetProcessHeap(), 0, sizeof(*cm));
|
||||||
|
cm->menu.IContextMenu2_iface.lpVtbl = &BackgroundContextMenuVtbl;
|
||||||
|
cm->menu.ref = 1;
|
||||||
|
cm->menu.parent = parent;
|
||||||
|
cm->menu.verb_offset = 0;
|
||||||
|
|
||||||
|
cm->desktop = desktop;
|
||||||
|
if (parent) IShellFolder_AddRef(parent);
|
||||||
|
|
||||||
|
TRACE("(%p)->()\n", cm);
|
||||||
|
return &cm->menu.IContextMenu2_iface;
|
||||||
|
}
|
@ -1,458 +0,0 @@
|
|||||||
/*
|
|
||||||
* IContextMenu
|
|
||||||
* ShellView Background Context Menu (shv_bg_cm)
|
|
||||||
*
|
|
||||||
* Copyright 1999 Juergen Schmied <juergen.schmied@metronet.de>
|
|
||||||
*
|
|
||||||
* This library is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
|
||||||
* License as published by the Free Software Foundation; either
|
|
||||||
* version 2.1 of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This library is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
|
||||||
* License along with this library; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
||||||
*/
|
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
#define COBJMACROS
|
|
||||||
#define NONAMELESSUNION
|
|
||||||
#define NONAMELESSSTRUCT
|
|
||||||
|
|
||||||
#include "wine/debug.h"
|
|
||||||
|
|
||||||
#include "windef.h"
|
|
||||||
#include "wingdi.h"
|
|
||||||
#include "pidl.h"
|
|
||||||
#include "shlobj.h"
|
|
||||||
|
|
||||||
#include "shell32_main.h"
|
|
||||||
#include "shellfolder.h"
|
|
||||||
#include "undocshell.h"
|
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* IContextMenu Implementation
|
|
||||||
*/
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
IContextMenu2 IContextMenu2_iface;
|
|
||||||
IShellFolder* pSFParent;
|
|
||||||
LONG ref;
|
|
||||||
BOOL bDesktop;
|
|
||||||
UINT verb_offset;
|
|
||||||
} BgCmImpl;
|
|
||||||
|
|
||||||
static inline BgCmImpl *impl_from_IContextMenu2(IContextMenu2 *iface)
|
|
||||||
{
|
|
||||||
return CONTAINING_RECORD(iface, BgCmImpl, IContextMenu2_iface);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* ISVBgCm_fnQueryInterface
|
|
||||||
*/
|
|
||||||
static HRESULT WINAPI ISVBgCm_fnQueryInterface(IContextMenu2 *iface, REFIID riid, LPVOID *ppvObj)
|
|
||||||
{
|
|
||||||
BgCmImpl *This = impl_from_IContextMenu2(iface);
|
|
||||||
|
|
||||||
TRACE("(%p)->(\n\tIID:\t%s,%p)\n",This,debugstr_guid(riid),ppvObj);
|
|
||||||
|
|
||||||
*ppvObj = NULL;
|
|
||||||
|
|
||||||
if(IsEqualIID(riid, &IID_IUnknown) ||
|
|
||||||
IsEqualIID(riid, &IID_IContextMenu) ||
|
|
||||||
IsEqualIID(riid, &IID_IContextMenu2))
|
|
||||||
{
|
|
||||||
*ppvObj = This;
|
|
||||||
}
|
|
||||||
else if(IsEqualIID(riid, &IID_IShellExtInit)) /*IShellExtInit*/
|
|
||||||
{
|
|
||||||
FIXME("-- LPSHELLEXTINIT pointer requested\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
if(*ppvObj)
|
|
||||||
{
|
|
||||||
IUnknown_AddRef((IUnknown*)*ppvObj);
|
|
||||||
TRACE("-- Interface: (%p)->(%p)\n",ppvObj,*ppvObj);
|
|
||||||
return S_OK;
|
|
||||||
}
|
|
||||||
TRACE("-- Interface: E_NOINTERFACE\n");
|
|
||||||
return E_NOINTERFACE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* ISVBgCm_fnAddRef
|
|
||||||
*/
|
|
||||||
static ULONG WINAPI ISVBgCm_fnAddRef(IContextMenu2 *iface)
|
|
||||||
{
|
|
||||||
BgCmImpl *This = impl_from_IContextMenu2(iface);
|
|
||||||
ULONG refCount = InterlockedIncrement(&This->ref);
|
|
||||||
|
|
||||||
TRACE("(%p)->(count=%u)\n", This, refCount - 1);
|
|
||||||
|
|
||||||
return refCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* ISVBgCm_fnRelease
|
|
||||||
*/
|
|
||||||
static ULONG WINAPI ISVBgCm_fnRelease(IContextMenu2 *iface)
|
|
||||||
{
|
|
||||||
BgCmImpl *This = impl_from_IContextMenu2(iface);
|
|
||||||
ULONG refCount = InterlockedDecrement(&This->ref);
|
|
||||||
|
|
||||||
TRACE("(%p)->(count=%i)\n", This, refCount + 1);
|
|
||||||
|
|
||||||
if (!refCount)
|
|
||||||
{
|
|
||||||
TRACE(" destroying IContextMenu(%p)\n",This);
|
|
||||||
|
|
||||||
if(This->pSFParent)
|
|
||||||
IShellFolder_Release(This->pSFParent);
|
|
||||||
|
|
||||||
HeapFree(GetProcessHeap(),0,This);
|
|
||||||
}
|
|
||||||
return refCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* ISVBgCm_fnQueryContextMenu()
|
|
||||||
*/
|
|
||||||
|
|
||||||
static HRESULT WINAPI ISVBgCm_fnQueryContextMenu(
|
|
||||||
IContextMenu2 *iface,
|
|
||||||
HMENU hMenu,
|
|
||||||
UINT indexMenu,
|
|
||||||
UINT idCmdFirst,
|
|
||||||
UINT idCmdLast,
|
|
||||||
UINT uFlags)
|
|
||||||
{
|
|
||||||
BgCmImpl *This = impl_from_IContextMenu2(iface);
|
|
||||||
HMENU hMyMenu;
|
|
||||||
UINT idMax;
|
|
||||||
HRESULT hr;
|
|
||||||
|
|
||||||
TRACE("(%p)->(hmenu=%p indexmenu=%x cmdfirst=%x cmdlast=%x flags=%x )\n",
|
|
||||||
This, hMenu, indexMenu, idCmdFirst, idCmdLast, uFlags);
|
|
||||||
|
|
||||||
This->verb_offset=idCmdFirst;
|
|
||||||
|
|
||||||
hMyMenu = LoadMenuA(shell32_hInstance, "MENU_002");
|
|
||||||
if (uFlags & CMF_DEFAULTONLY)
|
|
||||||
{
|
|
||||||
HMENU ourMenu = GetSubMenu(hMyMenu,0);
|
|
||||||
UINT oldDef = GetMenuDefaultItem(hMenu,TRUE,GMDI_USEDISABLED);
|
|
||||||
UINT newDef = GetMenuDefaultItem(ourMenu,TRUE,GMDI_USEDISABLED);
|
|
||||||
if (newDef != oldDef)
|
|
||||||
SetMenuDefaultItem(hMenu,newDef,TRUE);
|
|
||||||
if (newDef!=0xFFFFFFFF)
|
|
||||||
hr = MAKE_HRESULT(SEVERITY_SUCCESS, FACILITY_NULL, newDef+1);
|
|
||||||
else
|
|
||||||
hr = MAKE_HRESULT(SEVERITY_SUCCESS, FACILITY_NULL, 0);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
idMax = Shell_MergeMenus (hMenu, GetSubMenu(hMyMenu,0), indexMenu,
|
|
||||||
idCmdFirst, idCmdLast, MM_SUBMENUSHAVEIDS);
|
|
||||||
hr = MAKE_HRESULT(SEVERITY_SUCCESS, FACILITY_NULL, idMax-idCmdFirst);
|
|
||||||
}
|
|
||||||
DestroyMenu(hMyMenu);
|
|
||||||
|
|
||||||
TRACE("(%p)->returning 0x%x\n",This,hr);
|
|
||||||
return hr;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* DoNewFolder
|
|
||||||
*/
|
|
||||||
static void DoNewFolder(
|
|
||||||
BgCmImpl *This,
|
|
||||||
IShellView *psv)
|
|
||||||
{
|
|
||||||
ISFHelper * psfhlp;
|
|
||||||
WCHAR wszName[MAX_PATH];
|
|
||||||
|
|
||||||
IShellFolder_QueryInterface(This->pSFParent, &IID_ISFHelper, (LPVOID*)&psfhlp);
|
|
||||||
if (psfhlp)
|
|
||||||
{
|
|
||||||
LPITEMIDLIST pidl;
|
|
||||||
ISFHelper_GetUniqueName(psfhlp, wszName, MAX_PATH);
|
|
||||||
ISFHelper_AddFolder(psfhlp, 0, wszName, &pidl);
|
|
||||||
|
|
||||||
if(psv)
|
|
||||||
{
|
|
||||||
/* if we are in a shellview do labeledit */
|
|
||||||
IShellView_SelectItem(psv,
|
|
||||||
pidl,(SVSI_DESELECTOTHERS | SVSI_EDIT | SVSI_ENSUREVISIBLE
|
|
||||||
|SVSI_FOCUSED|SVSI_SELECT));
|
|
||||||
}
|
|
||||||
SHFree(pidl);
|
|
||||||
|
|
||||||
ISFHelper_Release(psfhlp);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* DoPaste
|
|
||||||
*/
|
|
||||||
static BOOL DoPaste(
|
|
||||||
BgCmImpl *This)
|
|
||||||
{
|
|
||||||
BOOL bSuccess = FALSE;
|
|
||||||
IDataObject * pda;
|
|
||||||
|
|
||||||
TRACE("\n");
|
|
||||||
|
|
||||||
if(SUCCEEDED(OleGetClipboard(&pda)))
|
|
||||||
{
|
|
||||||
STGMEDIUM medium;
|
|
||||||
FORMATETC formatetc;
|
|
||||||
|
|
||||||
TRACE("pda=%p\n", pda);
|
|
||||||
|
|
||||||
/* Set the FORMATETC structure*/
|
|
||||||
InitFormatEtc(formatetc, RegisterClipboardFormatW(CFSTR_SHELLIDLISTW), TYMED_HGLOBAL);
|
|
||||||
|
|
||||||
/* Get the pidls from IDataObject */
|
|
||||||
if(SUCCEEDED(IDataObject_GetData(pda,&formatetc,&medium)))
|
|
||||||
{
|
|
||||||
LPITEMIDLIST * apidl;
|
|
||||||
LPITEMIDLIST pidl;
|
|
||||||
IShellFolder *psfFrom = NULL, *psfDesktop;
|
|
||||||
|
|
||||||
LPIDA lpcida = GlobalLock(medium.u.hGlobal);
|
|
||||||
TRACE("cida=%p\n", lpcida);
|
|
||||||
|
|
||||||
apidl = _ILCopyCidaToaPidl(&pidl, lpcida);
|
|
||||||
|
|
||||||
/* bind to the source shellfolder */
|
|
||||||
SHGetDesktopFolder(&psfDesktop);
|
|
||||||
if(psfDesktop)
|
|
||||||
{
|
|
||||||
IShellFolder_BindToObject(psfDesktop, pidl, NULL, &IID_IShellFolder, (LPVOID*)&psfFrom);
|
|
||||||
IShellFolder_Release(psfDesktop);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (psfFrom)
|
|
||||||
{
|
|
||||||
/* get source and destination shellfolder */
|
|
||||||
ISFHelper *psfhlpdst, *psfhlpsrc;
|
|
||||||
IShellFolder_QueryInterface(This->pSFParent, &IID_ISFHelper, (LPVOID*)&psfhlpdst);
|
|
||||||
IShellFolder_QueryInterface(psfFrom, &IID_ISFHelper, (LPVOID*)&psfhlpsrc);
|
|
||||||
|
|
||||||
/* do the copy/move */
|
|
||||||
if (psfhlpdst && psfhlpsrc)
|
|
||||||
{
|
|
||||||
ISFHelper_CopyItems(psfhlpdst, psfFrom, lpcida->cidl, (LPCITEMIDLIST*)apidl);
|
|
||||||
/* FIXME handle move
|
|
||||||
ISFHelper_DeleteItems(psfhlpsrc, lpcida->cidl, apidl);
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
if(psfhlpdst) ISFHelper_Release(psfhlpdst);
|
|
||||||
if(psfhlpsrc) ISFHelper_Release(psfhlpsrc);
|
|
||||||
IShellFolder_Release(psfFrom);
|
|
||||||
}
|
|
||||||
|
|
||||||
_ILFreeaPidl(apidl, lpcida->cidl);
|
|
||||||
SHFree(pidl);
|
|
||||||
|
|
||||||
/* release the medium*/
|
|
||||||
ReleaseStgMedium(&medium);
|
|
||||||
}
|
|
||||||
IDataObject_Release(pda);
|
|
||||||
}
|
|
||||||
#if 0
|
|
||||||
HGLOBAL hMem;
|
|
||||||
|
|
||||||
OpenClipboard(NULL);
|
|
||||||
hMem = GetClipboardData(CF_HDROP);
|
|
||||||
|
|
||||||
if(hMem)
|
|
||||||
{
|
|
||||||
char * pDropFiles = GlobalLock(hMem);
|
|
||||||
if(pDropFiles)
|
|
||||||
{
|
|
||||||
int len, offset = sizeof(DROPFILESTRUCT);
|
|
||||||
|
|
||||||
while( pDropFiles[offset] != 0)
|
|
||||||
{
|
|
||||||
len = strlen(pDropFiles + offset);
|
|
||||||
TRACE("%s\n", pDropFiles + offset);
|
|
||||||
offset += len+1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
GlobalUnlock(hMem);
|
|
||||||
}
|
|
||||||
CloseClipboard();
|
|
||||||
#endif
|
|
||||||
return bSuccess;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* ISVBgCm_fnInvokeCommand()
|
|
||||||
*/
|
|
||||||
static HRESULT WINAPI ISVBgCm_fnInvokeCommand(
|
|
||||||
IContextMenu2 *iface,
|
|
||||||
LPCMINVOKECOMMANDINFO lpcmi)
|
|
||||||
{
|
|
||||||
BgCmImpl *This = impl_from_IContextMenu2(iface);
|
|
||||||
LPSHELLBROWSER lpSB;
|
|
||||||
LPSHELLVIEW lpSV = NULL;
|
|
||||||
HWND hWndSV = 0;
|
|
||||||
|
|
||||||
TRACE("(%p)->(invcom=%p verb=%p wnd=%p)\n",This,lpcmi,lpcmi->lpVerb, lpcmi->hwnd);
|
|
||||||
|
|
||||||
/* get the active IShellView */
|
|
||||||
if((lpSB = (LPSHELLBROWSER)SendMessageA(lpcmi->hwnd, CWM_GETISHELLBROWSER,0,0)))
|
|
||||||
{
|
|
||||||
if(SUCCEEDED(IShellBrowser_QueryActiveShellView(lpSB, &lpSV)))
|
|
||||||
{
|
|
||||||
IShellView_GetWindow(lpSV, &hWndSV);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if(HIWORD(lpcmi->lpVerb))
|
|
||||||
{
|
|
||||||
TRACE("%s\n",lpcmi->lpVerb);
|
|
||||||
|
|
||||||
if (! strcmp(lpcmi->lpVerb,CMDSTR_NEWFOLDERA))
|
|
||||||
{
|
|
||||||
DoNewFolder(This, lpSV);
|
|
||||||
}
|
|
||||||
else if (! strcmp(lpcmi->lpVerb,CMDSTR_VIEWLISTA))
|
|
||||||
{
|
|
||||||
if(hWndSV) SendMessageA(hWndSV, WM_COMMAND, MAKEWPARAM(FCIDM_SHVIEW_LISTVIEW,0),0 );
|
|
||||||
}
|
|
||||||
else if (! strcmp(lpcmi->lpVerb,CMDSTR_VIEWDETAILSA))
|
|
||||||
{
|
|
||||||
if(hWndSV) SendMessageA(hWndSV, WM_COMMAND, MAKEWPARAM(FCIDM_SHVIEW_REPORTVIEW,0),0 );
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
FIXME("please report: unknown verb %s\n",lpcmi->lpVerb);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
switch(LOWORD(lpcmi->lpVerb)-This->verb_offset)
|
|
||||||
{
|
|
||||||
case FCIDM_SHVIEW_REFRESH:
|
|
||||||
if (lpSV) IShellView_Refresh(lpSV);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case FCIDM_SHVIEW_NEWFOLDER:
|
|
||||||
DoNewFolder(This, lpSV);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case FCIDM_SHVIEW_INSERT:
|
|
||||||
DoPaste(This);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case FCIDM_SHVIEW_PROPERTIES:
|
|
||||||
if (This->bDesktop) {
|
|
||||||
ShellExecuteA(lpcmi->hwnd, "open", "rundll32.exe shell32.dll,Control_RunDLL desk.cpl", NULL, NULL, SW_SHOWNORMAL);
|
|
||||||
} else {
|
|
||||||
FIXME("launch item properties dialog\n");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
/* if it's an id just pass it to the parent shv */
|
|
||||||
if (hWndSV) SendMessageA(hWndSV, WM_COMMAND, MAKEWPARAM(LOWORD(lpcmi->lpVerb), 0),0 );
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (lpSV)
|
|
||||||
IShellView_Release(lpSV); /* QueryActiveShellView does AddRef */
|
|
||||||
|
|
||||||
return S_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* ISVBgCm_fnGetCommandString()
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
static HRESULT WINAPI ISVBgCm_fnGetCommandString(
|
|
||||||
IContextMenu2 *iface,
|
|
||||||
UINT_PTR idCommand,
|
|
||||||
UINT uFlags,
|
|
||||||
UINT* lpReserved,
|
|
||||||
LPSTR lpszName,
|
|
||||||
UINT uMaxNameLen)
|
|
||||||
{
|
|
||||||
BgCmImpl *This = impl_from_IContextMenu2(iface);
|
|
||||||
|
|
||||||
TRACE("(%p)->(idcom=%lx flags=%x %p name=%p len=%x)\n",This, idCommand, uFlags, lpReserved, lpszName, uMaxNameLen);
|
|
||||||
|
|
||||||
/* test the existence of the menu items, the file dialog enables
|
|
||||||
the buttons according to this */
|
|
||||||
if (uFlags == GCS_VALIDATEA)
|
|
||||||
{
|
|
||||||
if(HIWORD(idCommand))
|
|
||||||
{
|
|
||||||
if (!strcmp((LPSTR)idCommand, CMDSTR_VIEWLISTA) ||
|
|
||||||
!strcmp((LPSTR)idCommand, CMDSTR_VIEWDETAILSA) ||
|
|
||||||
!strcmp((LPSTR)idCommand, CMDSTR_NEWFOLDERA))
|
|
||||||
{
|
|
||||||
return S_OK;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
FIXME("unknown command string\n");
|
|
||||||
return E_FAIL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* ISVBgCm_fnHandleMenuMsg()
|
|
||||||
*/
|
|
||||||
static HRESULT WINAPI ISVBgCm_fnHandleMenuMsg(
|
|
||||||
IContextMenu2 *iface,
|
|
||||||
UINT uMsg,
|
|
||||||
WPARAM wParam,
|
|
||||||
LPARAM lParam)
|
|
||||||
{
|
|
||||||
BgCmImpl *This = impl_from_IContextMenu2(iface);
|
|
||||||
|
|
||||||
FIXME("(%p)->(msg=%x wp=%lx lp=%lx)\n",This, uMsg, wParam, lParam);
|
|
||||||
|
|
||||||
return E_NOTIMPL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
* IContextMenu2 VTable
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
static const IContextMenu2Vtbl BackgroundContextMenuVtbl =
|
|
||||||
{
|
|
||||||
ISVBgCm_fnQueryInterface,
|
|
||||||
ISVBgCm_fnAddRef,
|
|
||||||
ISVBgCm_fnRelease,
|
|
||||||
ISVBgCm_fnQueryContextMenu,
|
|
||||||
ISVBgCm_fnInvokeCommand,
|
|
||||||
ISVBgCm_fnGetCommandString,
|
|
||||||
ISVBgCm_fnHandleMenuMsg
|
|
||||||
};
|
|
||||||
|
|
||||||
IContextMenu2 *ISvBgCm_Constructor(IShellFolder *pSFParent, BOOL bDesktop)
|
|
||||||
{
|
|
||||||
BgCmImpl *cm;
|
|
||||||
|
|
||||||
cm = HeapAlloc(GetProcessHeap(), 0, sizeof(*cm));
|
|
||||||
cm->IContextMenu2_iface.lpVtbl = &BackgroundContextMenuVtbl;
|
|
||||||
cm->ref = 1;
|
|
||||||
cm->pSFParent = pSFParent;
|
|
||||||
cm->bDesktop = bDesktop;
|
|
||||||
cm->verb_offset = 0;
|
|
||||||
if(pSFParent) IShellFolder_AddRef(pSFParent);
|
|
||||||
|
|
||||||
TRACE("(%p)->()\n", cm);
|
|
||||||
return &cm->IContextMenu2_iface;
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user