2 * see www.geocities.com/SiliconValley/4942/filemenu.html
4 * Copyright 1999, 2000 Juergen Schmied
5 * Copyright 2011 Jay Yang
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
33 #include "undocshell.h"
35 #include "shell32_main.h"
38 #include "wine/debug.h"
44 #define FM_SEPARATOR (LPCWSTR)1
46 static BOOL
FileMenu_AppendItemW(HMENU hMenu
, LPCWSTR lpText
, UINT uID
, int icon
,
47 HMENU hMenuPopup
, int nItemHeight
);
54 COLORREF crBorderColor
;
58 /* insert using pidl */
63 LPFNFMCALLBACK lpfnCallback
;
73 static BOOL bAbortInit
;
75 #define CCH_MAXITEMTEXT 256
77 WINE_DEFAULT_DEBUG_CHANNEL(shell
);
79 static LPFMINFO
FM_GetMenuInfo(HMENU hmenu
)
84 MenuInfo
.cbSize
= sizeof(MENUINFO
);
85 MenuInfo
.fMask
= MIM_MENUDATA
;
87 if (! GetMenuInfo(hmenu
, &MenuInfo
))
90 menudata
= (LPFMINFO
)MenuInfo
.dwMenuData
;
92 if ((menudata
== 0) || (MenuInfo
.cbSize
!= sizeof(MENUINFO
)))
94 ERR("menudata corrupt: %p %u\n", menudata
, MenuInfo
.cbSize
);
101 /*************************************************************************
102 * FM_SetMenuParameter [internal]
105 static LPFMINFO
FM_SetMenuParameter(
111 LPFNFMCALLBACK lpfnCallback
)
117 menudata
= FM_GetMenuInfo(hmenu
);
119 SHFree(menudata
->pidl
);
122 menudata
->pidl
= ILClone(pidl
);
123 menudata
->uFlags
= uFlags
;
124 menudata
->uEnumFlags
= uEnumFlags
;
125 menudata
->lpfnCallback
= lpfnCallback
;
130 /*************************************************************************
131 * FM_InitMenuPopup [internal]
134 static int FM_InitMenuPopup(HMENU hmenu
, LPCITEMIDLIST pAlternatePidl
)
135 { IShellFolder
*lpsf
, *lpsf2
;
136 ULONG ulItemAttr
= SFGAO_FOLDER
;
137 UINT uID
, uEnumFlags
;
138 LPFNFMCALLBACK lpfnCallback
;
140 WCHAR sTemp
[MAX_PATH
];
141 int NumberOfItems
= 0, iIcon
;
145 TRACE("%p %p\n", hmenu
, pAlternatePidl
);
147 MenuInfo
.cbSize
= sizeof(MENUINFO
);
148 MenuInfo
.fMask
= MIM_MENUDATA
;
150 if (! GetMenuInfo(hmenu
, &MenuInfo
))
153 menudata
= (LPFMINFO
)MenuInfo
.dwMenuData
;
155 if ((menudata
== 0) || (MenuInfo
.cbSize
!= sizeof(MENUINFO
)))
157 ERR("menudata corrupt: %p %u\n", menudata
, MenuInfo
.cbSize
);
161 if (menudata
->bInitialized
)
164 pidl
= (pAlternatePidl
? pAlternatePidl
: menudata
->pidl
);
169 uEnumFlags
= menudata
->uEnumFlags
;
170 lpfnCallback
= menudata
->lpfnCallback
;
171 menudata
->bInitialized
= FALSE
;
173 SetMenuInfo(hmenu
, &MenuInfo
);
175 if (SUCCEEDED (SHGetDesktopFolder(&lpsf
)))
177 if (SUCCEEDED(IShellFolder_BindToObject(lpsf
, pidl
,0,&IID_IShellFolder
,(LPVOID
*)&lpsf2
)))
179 IEnumIDList
*lpe
= NULL
;
181 if (SUCCEEDED (IShellFolder_EnumObjects(lpsf2
, 0, uEnumFlags
, &lpe
)))
184 LPITEMIDLIST pidlTemp
= NULL
;
187 while ((!bAbortInit
) && (NOERROR
== IEnumIDList_Next(lpe
,1,&pidlTemp
,&ulFetched
)))
189 if (SUCCEEDED (IShellFolder_GetAttributesOf(lpsf
, 1, (LPCITEMIDLIST
*)&pidlTemp
, &ulItemAttr
)))
191 ILGetDisplayNameExW(NULL
, pidlTemp
, sTemp
, ILGDN_FORPARSING
);
192 if (! (PidlToSicIndex(lpsf
, pidlTemp
, FALSE
, 0, &iIcon
)))
193 iIcon
= FM_BLANK_ICON
;
194 if ( SFGAO_FOLDER
& ulItemAttr
)
198 HMENU hMenuPopup
= CreatePopupMenu();
200 lpFmMi
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(FMINFO
));
202 lpFmMi
->pidl
= ILCombine(pidl
, pidlTemp
);
203 lpFmMi
->uEnumFlags
= SHCONTF_FOLDERS
| SHCONTF_NONFOLDERS
;
205 MenuInfo
.cbSize
= sizeof(MENUINFO
);
206 MenuInfo
.fMask
= MIM_MENUDATA
;
207 MenuInfo
.dwMenuData
= (ULONG_PTR
) lpFmMi
;
208 SetMenuInfo (hMenuPopup
, &MenuInfo
);
210 FileMenu_AppendItemW (hmenu
, sTemp
, uID
, iIcon
, hMenuPopup
, FM_DEFAULT_HEIGHT
);
214 LPWSTR pExt
= PathFindExtensionW(sTemp
);
217 FileMenu_AppendItemW (hmenu
, sTemp
, uID
, iIcon
, 0, FM_DEFAULT_HEIGHT
);
223 TRACE("enter callback\n");
224 lpfnCallback ( pidl
, pidlTemp
);
225 TRACE("leave callback\n");
230 IEnumIDList_Release (lpe
);
232 IShellFolder_Release(lpsf2
);
234 IShellFolder_Release(lpsf
);
237 if ( GetMenuItemCount (hmenu
) == 0 )
239 static const WCHAR szEmpty
[] = { '(','e','m','p','t','y',')',0 };
240 FileMenu_AppendItemW (hmenu
, szEmpty
, uID
, FM_BLANK_ICON
, 0, FM_DEFAULT_HEIGHT
);
244 menudata
->bInitialized
= TRUE
;
245 SetMenuInfo(hmenu
, &MenuInfo
);
247 return NumberOfItems
;
249 /*************************************************************************
250 * FileMenu_Create [SHELL32.114]
253 * for non-root menus values are
254 * (ffffffff,00000000,00000000,00000000,00000000)
256 HMENU WINAPI
FileMenu_Create (
257 COLORREF crBorderColor
,
266 HMENU hMenu
= CreatePopupMenu();
268 TRACE("0x%08x 0x%08x %p 0x%08x 0x%08x hMenu=%p\n",
269 crBorderColor
, nBorderWidth
, hBorderBmp
, nSelHeight
, uFlags
, hMenu
);
271 menudata
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(FMINFO
));
272 menudata
->crBorderColor
= crBorderColor
;
273 menudata
->nBorderWidth
= nBorderWidth
;
274 menudata
->hBorderBmp
= hBorderBmp
;
276 MenuInfo
.cbSize
= sizeof(MENUINFO
);
277 MenuInfo
.fMask
= MIM_MENUDATA
;
278 MenuInfo
.dwMenuData
= (ULONG_PTR
) menudata
;
279 SetMenuInfo (hMenu
, &MenuInfo
);
284 /*************************************************************************
285 * FileMenu_Destroy [SHELL32.118]
290 void WINAPI
FileMenu_Destroy (HMENU hmenu
)
294 TRACE("%p\n", hmenu
);
296 FileMenu_DeleteAllItems (hmenu
);
298 menudata
= FM_GetMenuInfo(hmenu
);
300 SHFree( menudata
->pidl
);
301 HeapFree(GetProcessHeap(), 0, menudata
);
306 /*************************************************************************
307 * FileMenu_AppendItem [SHELL32.115]
310 static BOOL
FileMenu_AppendItemW(
324 TRACE("%p %s 0x%08x 0x%08x %p 0x%08x\n",
325 hMenu
, (lpText
!=FM_SEPARATOR
) ? debugstr_w(lpText
) : NULL
,
326 uID
, icon
, hMenuPopup
, nItemHeight
);
328 ZeroMemory (&mii
, sizeof(MENUITEMINFOW
));
330 mii
.cbSize
= sizeof(MENUITEMINFOW
);
332 if (lpText
!= FM_SEPARATOR
)
334 int len
= strlenW (lpText
);
335 myItem
= SHAlloc(sizeof(FMITEM
) + len
*sizeof(WCHAR
));
336 strcpyW (myItem
->szItemText
, lpText
);
337 myItem
->cchItemText
= len
;
338 myItem
->iIconIndex
= icon
;
339 myItem
->hMenu
= hMenu
;
340 mii
.fMask
= MIIM_DATA
;
341 mii
.dwItemData
= (ULONG_PTR
) myItem
;
346 mii
.fMask
|= MIIM_TYPE
| MIIM_SUBMENU
;
347 mii
.fType
= MFT_OWNERDRAW
;
348 mii
.hSubMenu
= hMenuPopup
;
350 else if (lpText
== FM_SEPARATOR
)
351 { mii
.fMask
|= MIIM_ID
| MIIM_TYPE
;
352 mii
.fType
= MFT_SEPARATOR
;
356 mii
.fMask
|= MIIM_ID
| MIIM_TYPE
| MIIM_STATE
;
357 mii
.fState
= MFS_ENABLED
| MFS_DEFAULT
;
358 mii
.fType
= MFT_OWNERDRAW
;
362 InsertMenuItemW (hMenu
, (UINT
)-1, TRUE
, &mii
);
364 /* set bFixedItems to true */
365 MenuInfo
.cbSize
= sizeof(MENUINFO
);
366 MenuInfo
.fMask
= MIM_MENUDATA
;
368 if (! GetMenuInfo(hMenu
, &MenuInfo
))
371 menudata
= (LPFMINFO
)MenuInfo
.dwMenuData
;
372 if ((menudata
== 0) || (MenuInfo
.cbSize
!= sizeof(MENUINFO
)))
374 ERR("menudata corrupt: %p %u\n", menudata
, MenuInfo
.cbSize
);
378 menudata
->bFixedItems
= TRUE
;
379 SetMenuInfo(hMenu
, &MenuInfo
);
385 /**********************************************************************/
387 BOOL WINAPI
FileMenu_AppendItemAW(
397 if (!lpText
) return FALSE
;
399 if (SHELL_OsIsUnicode() || lpText
== FM_SEPARATOR
)
400 ret
= FileMenu_AppendItemW(hMenu
, lpText
, uID
, icon
, hMenuPopup
, nItemHeight
);
403 DWORD len
= MultiByteToWideChar( CP_ACP
, 0, lpText
, -1, NULL
, 0 );
404 LPWSTR lpszText
= HeapAlloc ( GetProcessHeap(), 0, len
*sizeof(WCHAR
) );
405 if (!lpszText
) return FALSE
;
406 MultiByteToWideChar( CP_ACP
, 0, lpText
, -1, lpszText
, len
);
407 ret
= FileMenu_AppendItemW(hMenu
, lpszText
, uID
, icon
, hMenuPopup
, nItemHeight
);
408 HeapFree( GetProcessHeap(), 0, lpszText
);
414 /*************************************************************************
415 * FileMenu_InsertUsingPidl [SHELL32.110]
418 * uEnumFlags any SHCONTF flag
420 int WINAPI
FileMenu_InsertUsingPidl (
426 LPFNFMCALLBACK lpfnCallback
)
428 TRACE("%p 0x%08x %p 0x%08x 0x%08x %p\n",
429 hmenu
, uID
, pidl
, uFlags
, uEnumFlags
, lpfnCallback
);
435 FM_SetMenuParameter(hmenu
, uID
, pidl
, uFlags
, uEnumFlags
, lpfnCallback
);
437 return FM_InitMenuPopup(hmenu
, NULL
);
440 /*************************************************************************
441 * FileMenu_ReplaceUsingPidl [SHELL32.113]
443 * FIXME: the static items are deleted but won't be refreshed
445 int WINAPI
FileMenu_ReplaceUsingPidl(
450 LPFNFMCALLBACK lpfnCallback
)
452 TRACE("%p 0x%08x %p 0x%08x %p\n",
453 hmenu
, uID
, pidl
, uEnumFlags
, lpfnCallback
);
455 FileMenu_DeleteAllItems (hmenu
);
457 FM_SetMenuParameter(hmenu
, uID
, pidl
, 0, uEnumFlags
, lpfnCallback
);
459 return FM_InitMenuPopup(hmenu
, NULL
);
462 /*************************************************************************
463 * FileMenu_Invalidate [SHELL32.111]
465 void WINAPI
FileMenu_Invalidate (HMENU hMenu
)
470 /*************************************************************************
471 * FileMenu_FindSubMenuByPidl [SHELL32.106]
473 HMENU WINAPI
FileMenu_FindSubMenuByPidl(
477 FIXME("%p %p\n",hMenu
, pidl
);
481 /*************************************************************************
482 * FileMenu_AppendFilesForPidl [SHELL32.124]
484 int WINAPI
FileMenu_AppendFilesForPidl(
491 menudata
= FM_GetMenuInfo(hmenu
);
493 menudata
->bInitialized
= FALSE
;
495 FM_InitMenuPopup(hmenu
, pidl
);
498 FileMenu_AppendItemW (hmenu
, FM_SEPARATOR
, 0, 0, 0, FM_DEFAULT_HEIGHT
);
500 TRACE("%p %p 0x%08x\n",hmenu
, pidl
,bAddSeparator
);
504 /*************************************************************************
505 * FileMenu_AddFilesForPidl [SHELL32.125]
508 * uEnumFlags any SHCONTF flag
510 int WINAPI
FileMenu_AddFilesForPidl (
517 LPFNFMCALLBACK lpfnCallback
)
519 TRACE("%p 0x%08x 0x%08x %p 0x%08x 0x%08x %p\n",
520 hmenu
, uReserved
, uID
, pidl
, uFlags
, uEnumFlags
, lpfnCallback
);
522 return FileMenu_InsertUsingPidl ( hmenu
, uID
, pidl
, uFlags
, uEnumFlags
, lpfnCallback
);
527 /*************************************************************************
528 * FileMenu_TrackPopupMenuEx [SHELL32.116]
530 BOOL WINAPI
FileMenu_TrackPopupMenuEx (
538 TRACE("%p 0x%08x 0x%x 0x%x %p %p\n",
539 hMenu
, uFlags
, x
, y
, hWnd
, lptpm
);
540 return TrackPopupMenuEx(hMenu
, uFlags
, x
, y
, hWnd
, lptpm
);
543 /*************************************************************************
544 * FileMenu_GetLastSelectedItemPidls [SHELL32.107]
546 BOOL WINAPI
FileMenu_GetLastSelectedItemPidls(
548 LPCITEMIDLIST
*ppidlFolder
,
549 LPCITEMIDLIST
*ppidlItem
)
551 FIXME("0x%08x %p %p\n",uReserved
, ppidlFolder
, ppidlItem
);
555 #define FM_ICON_SIZE 16
559 #define FM_LEFTBORDER 2
560 #define FM_RIGHTBORDER 8
561 /*************************************************************************
562 * FileMenu_MeasureItem [SHELL32.112]
564 LRESULT WINAPI
FileMenu_MeasureItem(
566 LPMEASUREITEMSTRUCT lpmis
)
568 LPFMITEM pMyItem
= (LPFMITEM
)(lpmis
->itemData
);
569 HDC hdc
= GetDC(hWnd
);
573 TRACE("%p %p %s\n", hWnd
, lpmis
, debugstr_w(pMyItem
->szItemText
));
575 GetTextExtentPoint32W(hdc
, pMyItem
->szItemText
, pMyItem
->cchItemText
, &size
);
577 lpmis
->itemWidth
= size
.cx
+ FM_LEFTBORDER
+ FM_ICON_SIZE
+ FM_SPACE1
+ FM_SPACE2
+ FM_RIGHTBORDER
;
578 lpmis
->itemHeight
= (size
.cy
> (FM_ICON_SIZE
+ FM_Y_SPACE
)) ? size
.cy
: (FM_ICON_SIZE
+ FM_Y_SPACE
);
580 /* add the menubitmap */
581 menuinfo
= FM_GetMenuInfo(pMyItem
->hMenu
);
582 if (menuinfo
->nBorderWidth
)
583 lpmis
->itemWidth
+= menuinfo
->nBorderWidth
;
585 TRACE("-- 0x%04x 0x%04x\n", lpmis
->itemWidth
, lpmis
->itemHeight
);
586 ReleaseDC (hWnd
, hdc
);
589 /*************************************************************************
590 * FileMenu_DrawItem [SHELL32.105]
592 LRESULT WINAPI
FileMenu_DrawItem(
594 LPDRAWITEMSTRUCT lpdis
)
596 LPFMITEM pMyItem
= (LPFMITEM
)(lpdis
->itemData
);
597 COLORREF clrPrevText
, clrPrevBkgnd
;
599 HIMAGELIST hImageList
;
603 TRACE("%p %p %s\n", hWnd
, lpdis
, debugstr_w(pMyItem
->szItemText
));
605 if (lpdis
->itemState
& ODS_SELECTED
)
607 clrPrevText
= SetTextColor(lpdis
->hDC
, GetSysColor (COLOR_HIGHLIGHTTEXT
));
608 clrPrevBkgnd
= SetBkColor(lpdis
->hDC
, GetSysColor (COLOR_HIGHLIGHT
));
612 clrPrevText
= SetTextColor(lpdis
->hDC
, GetSysColor (COLOR_MENUTEXT
));
613 clrPrevBkgnd
= SetBkColor(lpdis
->hDC
, GetSysColor (COLOR_MENU
));
616 CopyRect(&TextRect
, &(lpdis
->rcItem
));
618 /* add the menubitmap */
619 menuinfo
= FM_GetMenuInfo(pMyItem
->hMenu
);
620 if (menuinfo
->nBorderWidth
)
621 TextRect
.left
+= menuinfo
->nBorderWidth
;
623 TextRect
.left
+= FM_LEFTBORDER
;
624 xi
= TextRect
.left
+ FM_SPACE1
;
625 yi
= TextRect
.top
+ FM_Y_SPACE
/2;
626 TextRect
.bottom
-= FM_Y_SPACE
/2;
628 xt
= xi
+ FM_ICON_SIZE
+ FM_SPACE2
;
631 ExtTextOutW (lpdis
->hDC
, xt
, yt
, ETO_OPAQUE
, &TextRect
, pMyItem
->szItemText
, pMyItem
->cchItemText
, NULL
);
633 Shell_GetImageLists(0, &hImageList
);
634 ImageList_Draw(hImageList
, pMyItem
->iIconIndex
, lpdis
->hDC
, xi
, yi
, ILD_NORMAL
);
636 TRACE("-- 0x%04x 0x%04x 0x%04x 0x%04x\n", TextRect
.left
, TextRect
.top
, TextRect
.right
, TextRect
.bottom
);
638 SetTextColor(lpdis
->hDC
, clrPrevText
);
639 SetBkColor(lpdis
->hDC
, clrPrevBkgnd
);
644 /*************************************************************************
645 * FileMenu_InitMenuPopup [SHELL32.109]
648 * The filemenu is an ownerdrawn menu. Call this function responding to
652 BOOL WINAPI
FileMenu_InitMenuPopup (HMENU hmenu
)
654 FM_InitMenuPopup(hmenu
, NULL
);
658 /*************************************************************************
659 * FileMenu_HandleMenuChar [SHELL32.108]
661 LRESULT WINAPI
FileMenu_HandleMenuChar(
665 FIXME("%p 0x%08lx\n",hMenu
,wParam
);
669 /*************************************************************************
670 * FileMenu_DeleteAllItems [SHELL32.104]
675 BOOL WINAPI
FileMenu_DeleteAllItems (HMENU hmenu
)
682 TRACE("%p\n", hmenu
);
684 ZeroMemory ( &mii
, sizeof(MENUITEMINFOW
));
685 mii
.cbSize
= sizeof(MENUITEMINFOW
);
686 mii
.fMask
= MIIM_SUBMENU
|MIIM_DATA
;
688 for (i
= 0; i
< GetMenuItemCount( hmenu
); i
++)
689 { GetMenuItemInfoW(hmenu
, i
, TRUE
, &mii
);
691 SHFree((LPFMINFO
)mii
.dwItemData
);
694 FileMenu_Destroy(mii
.hSubMenu
);
697 while (DeleteMenu (hmenu
, 0, MF_BYPOSITION
)){};
699 menudata
= FM_GetMenuInfo(hmenu
);
701 menudata
->bInitialized
= FALSE
;
706 /*************************************************************************
707 * FileMenu_DeleteItemByCmd [SHELL32.117]
710 BOOL WINAPI
FileMenu_DeleteItemByCmd (HMENU hMenu
, UINT uID
)
714 TRACE("%p 0x%08x\n", hMenu
, uID
);
716 ZeroMemory ( &mii
, sizeof(MENUITEMINFOW
));
717 mii
.cbSize
= sizeof(MENUITEMINFOW
);
718 mii
.fMask
= MIIM_SUBMENU
;
720 GetMenuItemInfoW(hMenu
, uID
, FALSE
, &mii
);
723 /* FIXME: Do what? */
726 DeleteMenu(hMenu
, MF_BYCOMMAND
, uID
);
730 /*************************************************************************
731 * FileMenu_DeleteItemByIndex [SHELL32.140]
733 BOOL WINAPI
FileMenu_DeleteItemByIndex ( HMENU hMenu
, UINT uPos
)
737 TRACE("%p 0x%08x\n", hMenu
, uPos
);
739 ZeroMemory ( &mii
, sizeof(MENUITEMINFOW
));
740 mii
.cbSize
= sizeof(MENUITEMINFOW
);
741 mii
.fMask
= MIIM_SUBMENU
;
743 GetMenuItemInfoW(hMenu
, uPos
, TRUE
, &mii
);
746 /* FIXME: Do what? */
749 DeleteMenu(hMenu
, MF_BYPOSITION
, uPos
);
753 /*************************************************************************
754 * FileMenu_DeleteItemByFirstID [SHELL32.141]
756 BOOL WINAPI
FileMenu_DeleteItemByFirstID(
760 TRACE("%p 0x%08x\n", hMenu
, uID
);
764 /*************************************************************************
765 * FileMenu_DeleteSeparator [SHELL32.142]
767 BOOL WINAPI
FileMenu_DeleteSeparator(HMENU hMenu
)
769 TRACE("%p\n", hMenu
);
773 /*************************************************************************
774 * FileMenu_EnableItemByCmd [SHELL32.143]
776 BOOL WINAPI
FileMenu_EnableItemByCmd(
781 TRACE("%p 0x%08x 0x%08x\n", hMenu
, uID
,bEnable
);
785 /*************************************************************************
786 * FileMenu_GetItemExtent [SHELL32.144]
789 * if the menu is too big, entries are getting cut away!!
791 DWORD WINAPI
FileMenu_GetItemExtent (HMENU hMenu
, UINT uPos
)
794 FIXME("%p 0x%08x\n", hMenu
, uPos
);
796 if (GetMenuItemRect(0, hMenu
, uPos
, &rect
))
797 { FIXME("0x%04x 0x%04x 0x%04x 0x%04x\n",
798 rect
.right
, rect
.left
, rect
.top
, rect
.bottom
);
799 return ((rect
.right
-rect
.left
)<<16) + (rect
.top
-rect
.bottom
);
801 return 0x00100010; /*FIXME*/
804 /*************************************************************************
805 * FileMenu_AbortInitMenu [SHELL32.120]
808 void WINAPI
FileMenu_AbortInitMenu (void)
813 /*************************************************************************
814 * SHFind_InitMenuPopup [SHELL32.149]
816 * Get the IContextMenu instance for the submenu of options displayed
817 * for the Search entry in the Classic style Start menu.
820 * hMenu [in] handle of menu previously created
821 * hWndParent [in] parent window
822 * w [in] no pointer (0x209 over here) perhaps menu IDs ???
823 * x [in] no pointer (0x226 over here)
826 * LPXXXXX pointer to struct containing a func addr at offset 8
827 * or NULL at failure.
829 LPVOID WINAPI
SHFind_InitMenuPopup (HMENU hMenu
, HWND hWndParent
, DWORD w
, DWORD x
)
831 FIXME("hmenu=%p hwnd=%p 0x%08x 0x%08x stub\n",
832 hMenu
,hWndParent
,w
,x
);
833 return NULL
; /* this is supposed to be a pointer */
836 /*************************************************************************
837 * _SHIsMenuSeparator (internal)
839 static BOOL
_SHIsMenuSeparator(HMENU hm
, int i
)
843 mii
.cbSize
= sizeof(MENUITEMINFOW
);
844 mii
.fMask
= MIIM_TYPE
;
845 mii
.cch
= 0; /* WARNING: We MUST initialize it to 0*/
846 if (!GetMenuItemInfoW(hm
, i
, TRUE
, &mii
))
851 if (mii
.fType
& MFT_SEPARATOR
)
859 /*************************************************************************
860 * Shell_MergeMenus [SHELL32.67]
862 UINT WINAPI
Shell_MergeMenus (HMENU hmDst
, HMENU hmSrc
, UINT uInsert
, UINT uIDAdjust
, UINT uIDAdjustMax
, ULONG uFlags
)
865 BOOL bAlreadySeparated
;
866 MENUITEMINFOW miiSrc
;
868 UINT uTemp
, uIDMax
= uIDAdjust
;
870 TRACE("hmenu1=%p hmenu2=%p 0x%04x 0x%04x 0x%04x 0x%04x\n",
871 hmDst
, hmSrc
, uInsert
, uIDAdjust
, uIDAdjustMax
, uFlags
);
873 if (!hmDst
|| !hmSrc
)
876 nItem
= GetMenuItemCount(hmDst
);
880 if (uInsert
>= (UINT
)nItem
) /* insert position inside menu? */
882 uInsert
= (UINT
)nItem
; /* append on the end */
883 bAlreadySeparated
= TRUE
;
887 bAlreadySeparated
= _SHIsMenuSeparator(hmDst
, uInsert
);
890 if ((uFlags
& MM_ADDSEPARATOR
) && !bAlreadySeparated
)
892 /* Add a separator between the menus */
893 InsertMenuA(hmDst
, uInsert
, MF_BYPOSITION
| MF_SEPARATOR
, 0, NULL
);
894 bAlreadySeparated
= TRUE
;
898 /* Go through the menu items and clone them*/
899 for (nItem
= GetMenuItemCount(hmSrc
) - 1; nItem
>= 0; nItem
--)
901 miiSrc
.cbSize
= sizeof(MENUITEMINFOW
);
902 miiSrc
.fMask
= MIIM_STATE
| MIIM_ID
| MIIM_SUBMENU
| MIIM_CHECKMARKS
| MIIM_TYPE
| MIIM_DATA
;
904 /* We need to reset this every time through the loop in case menus DON'T have IDs*/
905 miiSrc
.fType
= MFT_STRING
;
906 miiSrc
.dwTypeData
= szName
;
907 miiSrc
.dwItemData
= 0;
908 miiSrc
.cch
= sizeof(szName
)/sizeof(WCHAR
);
910 if (!GetMenuItemInfoW(hmSrc
, nItem
, TRUE
, &miiSrc
))
915 /* TRACE("found menu=0x%04x %s id=0x%04x mask=0x%08x smenu=0x%04x\n", hmSrc, debugstr_a(miiSrc.dwTypeData), miiSrc.wID, miiSrc.fMask, miiSrc.hSubMenu);
917 if (miiSrc
.fType
& MFT_SEPARATOR
)
919 /* This is a separator; don't put two of them in a row */
920 if (bAlreadySeparated
)
923 bAlreadySeparated
= TRUE
;
925 else if (miiSrc
.hSubMenu
)
927 if (uFlags
& MM_SUBMENUSHAVEIDS
)
929 miiSrc
.wID
+= uIDAdjust
; /* add uIDAdjust to the ID */
931 if (miiSrc
.wID
> uIDAdjustMax
) /* skip IDs higher than uIDAdjustMax */
934 if (uIDMax
<= miiSrc
.wID
) /* remember the highest ID */
935 uIDMax
= miiSrc
.wID
+ 1;
939 miiSrc
.fMask
&= ~MIIM_ID
; /* Don't set IDs for submenus that didn't have them already */
941 hmSubMenu
= miiSrc
.hSubMenu
;
943 miiSrc
.hSubMenu
= CreatePopupMenu();
945 if (!miiSrc
.hSubMenu
) return(uIDMax
);
947 uTemp
= Shell_MergeMenus(miiSrc
.hSubMenu
, hmSubMenu
, 0, uIDAdjust
, uIDAdjustMax
, uFlags
& MM_SUBMENUSHAVEIDS
);
952 bAlreadySeparated
= FALSE
;
954 else /* normal menu item */
956 miiSrc
.wID
+= uIDAdjust
; /* add uIDAdjust to the ID */
958 if (miiSrc
.wID
> uIDAdjustMax
) /* skip IDs higher than uIDAdjustMax */
961 if (uIDMax
<= miiSrc
.wID
) /* remember the highest ID */
962 uIDMax
= miiSrc
.wID
+ 1;
964 bAlreadySeparated
= FALSE
;
967 /* TRACE("inserting menu=0x%04x %s id=0x%04x mask=0x%08x smenu=0x%04x\n", hmDst, debugstr_a(miiSrc.dwTypeData), miiSrc.wID, miiSrc.fMask, miiSrc.hSubMenu);
969 if (!InsertMenuItemW(hmDst
, uInsert
, TRUE
, &miiSrc
))
975 /* Ensure the correct number of separators at the beginning of the
976 inserted menu items*/
979 if (bAlreadySeparated
)
981 DeleteMenu(hmDst
, uInsert
, MF_BYPOSITION
);
986 if (_SHIsMenuSeparator(hmDst
, uInsert
-1))
988 if (bAlreadySeparated
)
990 DeleteMenu(hmDst
, uInsert
, MF_BYPOSITION
);
995 if ((uFlags
& MM_ADDSEPARATOR
) && !bAlreadySeparated
)
997 /* Add a separator between the menus*/
998 InsertMenuW(hmDst
, uInsert
, MF_BYPOSITION
| MF_SEPARATOR
, 0, NULL
);
1007 IContextMenu3 IContextMenu3_iface
;
1008 IContextMenu
**menus
;
1014 static const IContextMenu3Vtbl CompositeCMenuVtbl
;
1016 static CompositeCMenu
* impl_from_IContextMenu3(IContextMenu3
* iface
)
1018 return CONTAINING_RECORD(iface
, CompositeCMenu
, IContextMenu3_iface
);
1021 static HRESULT
CompositeCMenu_Constructor(IContextMenu
**menus
,UINT menu_count
, REFIID riid
, void **ppv
)
1023 CompositeCMenu
*ret
= HeapAlloc(GetProcessHeap(),0,sizeof(CompositeCMenu
));
1025 TRACE("(%p,%u,%s,%p)\n",menus
,menu_count
,shdebugstr_guid(riid
),ppv
);
1027 return E_OUTOFMEMORY
;
1028 ret
->IContextMenu3_iface
.lpVtbl
= &CompositeCMenuVtbl
;
1029 ret
->menu_count
= menu_count
;
1030 ret
->menus
= HeapAlloc(GetProcessHeap(),0,menu_count
*sizeof(IContextMenu
*));
1033 HeapFree(GetProcessHeap(),0,ret
);
1034 return E_OUTOFMEMORY
;
1036 ret
->offsets
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,menu_count
*sizeof(UINT
));
1039 HeapFree(GetProcessHeap(),0,ret
->menus
);
1040 HeapFree(GetProcessHeap(),0,ret
);
1041 return E_OUTOFMEMORY
;
1044 memcpy(ret
->menus
,menus
,menu_count
*sizeof(IContextMenu
*));
1045 for(i
=0;i
<menu_count
;i
++)
1046 IContextMenu_AddRef(menus
[i
]);
1047 return IContextMenu3_QueryInterface(&(ret
->IContextMenu3_iface
),riid
,ppv
);
1050 static void CompositeCMenu_Destroy(CompositeCMenu
*This
)
1053 for(i
=0;i
<This
->menu_count
;i
++)
1054 IContextMenu_Release(This
->menus
[i
]);
1055 HeapFree(GetProcessHeap(),0,This
->menus
);
1056 HeapFree(GetProcessHeap(),0,This
->offsets
);
1057 HeapFree(GetProcessHeap(),0,This
);
1060 static HRESULT WINAPI
CompositeCMenu_QueryInterface(IContextMenu3
*iface
, REFIID riid
, void **ppv
)
1062 TRACE("(%p)->(%s,%p)\n",iface
,shdebugstr_guid(riid
),ppv
);
1064 return E_INVALIDARG
;
1065 if(IsEqualIID(riid
,&IID_IUnknown
) || IsEqualIID(riid
,&IID_IContextMenu
) ||
1066 IsEqualIID(riid
,&IID_IContextMenu2
) || IsEqualIID(riid
,&IID_IContextMenu3
))
1069 return E_NOINTERFACE
;
1070 IContextMenu3_AddRef(iface
);
1074 static ULONG WINAPI
CompositeCMenu_AddRef(IContextMenu3
*iface
)
1076 CompositeCMenu
*This
= impl_from_IContextMenu3(iface
);
1077 TRACE("(%p)->()\n",iface
);
1078 return ++This
->refCount
;
1081 static ULONG WINAPI
CompositeCMenu_Release(IContextMenu3
*iface
)
1083 CompositeCMenu
*This
= impl_from_IContextMenu3(iface
);
1084 TRACE("(%p)->()\n",iface
);
1085 if(--This
->refCount
)
1086 return This
->refCount
;
1087 CompositeCMenu_Destroy(This
);
1091 static UINT
CompositeCMenu_GetIndexForCommandId(CompositeCMenu
*This
,UINT id
)
1094 UINT high
=This
->menu_count
;
1097 UINT i
=(high
+low
)/2;
1098 if(This
->offsets
[i
]<=id
)
1106 static HRESULT WINAPI
CompositeCMenu_GetCommandString(IContextMenu3
* iface
, UINT_PTR idCmd
, UINT uFlags
, UINT
*pwReserved
, LPSTR pszName
, UINT cchMax
)
1108 CompositeCMenu
*This
= impl_from_IContextMenu3(iface
);
1109 UINT index
= CompositeCMenu_GetIndexForCommandId(This
,idCmd
);
1110 TRACE("(%p)->(%lx,%x,%p,%s,%u)\n",iface
,idCmd
,uFlags
,pwReserved
,pszName
,cchMax
);
1111 return IContextMenu_GetCommandString(This
->menus
[index
],idCmd
,uFlags
,pwReserved
,pszName
,cchMax
);
1114 static HRESULT WINAPI
CompositeCMenu_InvokeCommand(IContextMenu3
* iface
,LPCMINVOKECOMMANDINFO pici
)
1116 CompositeCMenu
*This
= impl_from_IContextMenu3(iface
);
1117 TRACE("(%p)->(%p)\n",iface
,pici
);
1118 if(HIWORD(pici
->lpVerb
))
1120 /*call each handler until one of them succeeds*/
1122 for(;i
<This
->menu_count
;i
++)
1125 if(SUCCEEDED(hres
=IContextMenu_InvokeCommand(This
->menus
[i
],pici
)))
1132 UINT id
= (UINT_PTR
)pici
->lpVerb
;
1133 UINT index
= CompositeCMenu_GetIndexForCommandId(This
,id
);
1134 return IContextMenu_InvokeCommand(This
->menus
[index
],pici
);
1138 static HRESULT WINAPI
CompositeCMenu_QueryContextMenu(IContextMenu3
*iface
, HMENU hmenu
,UINT indexMenu
, UINT idCmdFirst
, UINT idCmdLast
, UINT uFlags
)
1140 CompositeCMenu
*This
= impl_from_IContextMenu3(iface
);
1142 UINT id_offset
=idCmdFirst
;
1143 TRACE("(%p)->(%p,%u,%u,%u,%x)\n",iface
,hmenu
,indexMenu
,idCmdFirst
,idCmdLast
,uFlags
);
1144 for(;i
<This
->menu_count
;i
++)
1147 This
->offsets
[i
]=id_offset
;
1148 hres
= IContextMenu_QueryContextMenu(This
->menus
[i
],hmenu
,indexMenu
,id_offset
,idCmdLast
,uFlags
);
1152 return MAKE_HRESULT(SEVERITY_SUCCESS
, FACILITY_NULL
, id_offset
-idCmdFirst
);
1155 static HRESULT WINAPI
CompositeCMenu_HandleMenuMsg(IContextMenu3
*iface
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
1157 CompositeCMenu
*This
= impl_from_IContextMenu3(iface
);
1161 IContextMenu2
*handler
;
1163 TRACE("(%p)->(%x,%lx,%lx)\n",iface
,uMsg
,wParam
,lParam
);
1166 case WM_INITMENUPOPUP
:
1167 menu
= (HMENU
)wParam
;
1168 id
= GetMenuItemID(menu
,LOWORD(lParam
));
1171 id
= ((DRAWITEMSTRUCT
*)lParam
)->itemID
;
1173 case WM_MEASUREITEM
:
1174 id
= ((MEASUREITEMSTRUCT
*)lParam
)->itemID
;
1177 WARN("Unimplemented uMsg: 0x%x\n",uMsg
);
1180 index
= CompositeCMenu_GetIndexForCommandId(This
,id
);
1181 hres
= IContextMenu_QueryInterface(This
->menus
[index
],&IID_IContextMenu2
,
1184 return IContextMenu2_HandleMenuMsg(handler
,uMsg
,wParam
,lParam
);
1188 static HRESULT WINAPI
CompositeCMenu_HandleMenuMsg2(IContextMenu3
*iface
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
,LRESULT
*plResult
)
1190 CompositeCMenu
*This
= impl_from_IContextMenu3(iface
);
1194 IContextMenu3
*handler
;
1197 TRACE("(%p)->(%x,%lx,%lx,%p)\n",iface
,uMsg
,wParam
,lParam
,plResult
);
1202 case WM_INITMENUPOPUP
:
1203 menu
= (HMENU
)wParam
;
1204 id
= GetMenuItemID(menu
,LOWORD(lParam
));
1207 id
= ((DRAWITEMSTRUCT
*)lParam
)->itemID
;
1209 case WM_MEASUREITEM
:
1210 id
= ((MEASUREITEMSTRUCT
*)lParam
)->itemID
;
1215 for(;i
<This
->menu_count
;i
++)
1217 hres
= IContextMenu_QueryInterface(This
->menus
[i
],&IID_IContextMenu3
,(void**)&handler
);
1220 hres
= IContextMenu3_HandleMenuMsg2(handler
,uMsg
,wParam
,lParam
,plResult
);
1221 if(SUCCEEDED(hres
) && HIWORD(*plResult
))
1227 WARN("Unimplemented uMsg: 0x%x\n",uMsg
);
1230 index
= CompositeCMenu_GetIndexForCommandId(This
,id
);
1231 hres
= IContextMenu_QueryInterface(This
->menus
[index
],&IID_IContextMenu3
,(void**)&handler
);
1233 return IContextMenu3_HandleMenuMsg2(handler
,uMsg
,wParam
,lParam
,plResult
);
1237 static const IContextMenu3Vtbl CompositeCMenuVtbl
=
1239 CompositeCMenu_QueryInterface
,
1240 CompositeCMenu_AddRef
,
1241 CompositeCMenu_Release
,
1242 CompositeCMenu_QueryContextMenu
,
1243 CompositeCMenu_InvokeCommand
,
1244 CompositeCMenu_GetCommandString
,
1245 CompositeCMenu_HandleMenuMsg
,
1246 CompositeCMenu_HandleMenuMsg2
1249 static HRESULT
SHELL_CreateContextMenu(HWND hwnd
, IContextMenu
* system_menu
,
1250 IShellFolder
*folder
, LPCITEMIDLIST folder_pidl
,
1251 LPCITEMIDLIST
*apidl
, UINT cidl
, const HKEY
*aKeys
,
1252 UINT cKeys
,REFIID riid
, void** ppv
)
1255 TRACE("(%p,%p,%p,%p,%p,%u,%p,%u,%s,%p)\n",hwnd
,system_menu
,folder
,folder_pidl
,apidl
,cidl
,aKeys
,cKeys
,shdebugstr_guid(riid
),ppv
);
1256 ret
= CompositeCMenu_Constructor(&system_menu
,1,riid
,ppv
);
1260 HRESULT WINAPI
CDefFolderMenu_Create2(LPCITEMIDLIST pidlFolder
, HWND hwnd
, UINT cidl
,
1261 LPCITEMIDLIST
*apidl
, IShellFolder
*psf
,
1262 LPFNDFMCALLBACK lpfn
, UINT nKeys
, const HKEY
*ahkeys
,
1263 IContextMenu
**ppcm
)
1265 IContextMenu
*system_menu
;
1267 LPITEMIDLIST folder_pidl
;
1268 TRACE("(%p,%p,%u,%p,%p,%u,%p,%p)\n",pidlFolder
,hwnd
,cidl
,apidl
,psf
,nKeys
,ahkeys
,ppcm
);
1271 IPersistFolder2
*persist
;
1272 IShellFolder_QueryInterface(psf
,&IID_IPersistFolder2
,(void**)&persist
);
1273 IPersistFolder2_GetCurFolder(persist
,&folder_pidl
);
1274 IPersistFolder2_Release(persist
);
1277 folder_pidl
=ILClone(pidlFolder
);
1278 system_menu
= (IContextMenu
*)ISvItemCm_Constructor(psf
,folder_pidl
,(const LPCITEMIDLIST
*)apidl
,cidl
);
1279 hres
= SHELL_CreateContextMenu(hwnd
,system_menu
,psf
,folder_pidl
,apidl
,cidl
,ahkeys
,nKeys
,&IID_IContextMenu
,(void**)ppcm
);
1280 IContextMenu_Release(system_menu
);
1281 ILFree(folder_pidl
);
1285 HRESULT WINAPI
SHCreateDefaultContextMenu(const DEFCONTEXTMENU
*pdcm
, REFIID riid
, void **ppv
)
1287 IShellFolder
*folder
=pdcm
->psf
;
1288 LPITEMIDLIST folder_pidl
;
1290 IContextMenu
*system_menu
;
1291 TRACE("(%p,%s,%p)\n",pdcm
,shdebugstr_guid(riid
),ppv
);
1292 if(!pdcm
->pidlFolder
)
1294 IPersistFolder2
*persist
;
1295 IShellFolder_QueryInterface(folder
,&IID_IPersistFolder2
,(void**)&persist
);
1296 IPersistFolder2_GetCurFolder(persist
,&folder_pidl
);
1297 IPersistFolder2_Release(persist
);
1300 folder_pidl
=ILClone(pdcm
->pidlFolder
);
1302 FIXME("Loading shell extensions using IQueryAssociations not yet supported\n");
1303 system_menu
= (IContextMenu
*)ISvItemCm_Constructor(folder
,folder_pidl
,(const LPCITEMIDLIST
*)pdcm
->apidl
,pdcm
->cidl
);
1304 ret
= SHELL_CreateContextMenu(pdcm
->hwnd
,system_menu
,folder
,folder_pidl
,(LPCITEMIDLIST
*)pdcm
->apidl
,pdcm
->cidl
,pdcm
->aKeys
,pdcm
->cKeys
,riid
,ppv
);
1305 IContextMenu_Release(system_menu
);
1306 ILFree(folder_pidl
);