2 * see www.geocities.com/SiliconValley/4942/filemenu.html
4 * Copyright 1999, 2000 Juergen Schmied
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
32 #include "undocshell.h"
34 #include "shell32_main.h"
38 #include "wine/debug.h"
43 #define FM_SEPARATOR (LPCWSTR)1
45 static BOOL
FileMenu_AppendItemW(HMENU hMenu
, LPCWSTR lpText
, UINT uID
, int icon
,
46 HMENU hMenuPopup
, int nItemHeight
);
53 COLORREF crBorderColor
;
57 /* insert using pidl */
62 LPFNFMCALLBACK lpfnCallback
;
72 static BOOL bAbortInit
;
74 #define CCH_MAXITEMTEXT 256
76 WINE_DEFAULT_DEBUG_CHANNEL(shell
);
78 static LPFMINFO
FM_GetMenuInfo(HMENU hmenu
)
83 MenuInfo
.cbSize
= sizeof(MENUINFO
);
84 MenuInfo
.fMask
= MIM_MENUDATA
;
86 if (! GetMenuInfo(hmenu
, &MenuInfo
))
89 menudata
= (LPFMINFO
)MenuInfo
.dwMenuData
;
91 if ((menudata
== 0) || (MenuInfo
.cbSize
!= sizeof(MENUINFO
)))
93 ERR("menudata corrupt: %p %u\n", menudata
, MenuInfo
.cbSize
);
100 /*************************************************************************
101 * FM_SetMenuParameter [internal]
104 static LPFMINFO
FM_SetMenuParameter(
110 LPFNFMCALLBACK lpfnCallback
)
116 menudata
= FM_GetMenuInfo(hmenu
);
118 SHFree(menudata
->pidl
);
121 menudata
->pidl
= ILClone(pidl
);
122 menudata
->uFlags
= uFlags
;
123 menudata
->uEnumFlags
= uEnumFlags
;
124 menudata
->lpfnCallback
= lpfnCallback
;
129 /*************************************************************************
130 * FM_InitMenuPopup [internal]
133 static int FM_InitMenuPopup(HMENU hmenu
, LPCITEMIDLIST pAlternatePidl
)
134 { IShellFolder
*lpsf
, *lpsf2
;
135 ULONG ulItemAttr
= SFGAO_FOLDER
;
136 UINT uID
, uFlags
, uEnumFlags
;
137 LPFNFMCALLBACK lpfnCallback
;
139 WCHAR sTemp
[MAX_PATH
];
140 int NumberOfItems
= 0, iIcon
;
144 TRACE("%p %p\n", hmenu
, pAlternatePidl
);
146 MenuInfo
.cbSize
= sizeof(MENUINFO
);
147 MenuInfo
.fMask
= MIM_MENUDATA
;
149 if (! GetMenuInfo(hmenu
, &MenuInfo
))
152 menudata
= (LPFMINFO
)MenuInfo
.dwMenuData
;
154 if ((menudata
== 0) || (MenuInfo
.cbSize
!= sizeof(MENUINFO
)))
156 ERR("menudata corrupt: %p %u\n", menudata
, MenuInfo
.cbSize
);
160 if (menudata
->bInitialized
)
163 pidl
= (pAlternatePidl
? pAlternatePidl
: menudata
->pidl
);
168 uFlags
= menudata
->uFlags
;
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,(REFIID
)&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
= (LPFMITEM
) 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 ((SHELL_OsIsUnicode() && (lpText
!=FM_SEPARATOR
)) || (lpText
== NULL
))
398 ret
= FileMenu_AppendItemW(hMenu
, lpText
, uID
, icon
, hMenuPopup
, nItemHeight
);
401 DWORD len
= MultiByteToWideChar( CP_ACP
, 0, lpText
, -1, NULL
, 0 );
402 LPWSTR lpszText
= HeapAlloc ( GetProcessHeap(), 0, len
*sizeof(WCHAR
) );
403 MultiByteToWideChar( CP_ACP
, 0, lpText
, -1, lpszText
, len
);
404 ret
= FileMenu_AppendItemW(hMenu
, lpszText
, uID
, icon
, hMenuPopup
, nItemHeight
);
405 HeapFree( GetProcessHeap(), 0, lpszText
);
411 /*************************************************************************
412 * FileMenu_InsertUsingPidl [SHELL32.110]
415 * uEnumFlags any SHCONTF flag
417 int WINAPI
FileMenu_InsertUsingPidl (
423 LPFNFMCALLBACK lpfnCallback
)
425 TRACE("%p 0x%08x %p 0x%08x 0x%08x %p\n",
426 hmenu
, uID
, pidl
, uFlags
, uEnumFlags
, lpfnCallback
);
432 FM_SetMenuParameter(hmenu
, uID
, pidl
, uFlags
, uEnumFlags
, lpfnCallback
);
434 return FM_InitMenuPopup(hmenu
, NULL
);
437 /*************************************************************************
438 * FileMenu_ReplaceUsingPidl [SHELL32.113]
440 * FIXME: the static items are deleted but won't be refreshed
442 int WINAPI
FileMenu_ReplaceUsingPidl(
447 LPFNFMCALLBACK lpfnCallback
)
449 TRACE("%p 0x%08x %p 0x%08x %p\n",
450 hmenu
, uID
, pidl
, uEnumFlags
, lpfnCallback
);
452 FileMenu_DeleteAllItems (hmenu
);
454 FM_SetMenuParameter(hmenu
, uID
, pidl
, 0, uEnumFlags
, lpfnCallback
);
456 return FM_InitMenuPopup(hmenu
, NULL
);
459 /*************************************************************************
460 * FileMenu_Invalidate [SHELL32.111]
462 void WINAPI
FileMenu_Invalidate (HMENU hMenu
)
467 /*************************************************************************
468 * FileMenu_FindSubMenuByPidl [SHELL32.106]
470 HMENU WINAPI
FileMenu_FindSubMenuByPidl(
474 FIXME("%p %p\n",hMenu
, pidl
);
478 /*************************************************************************
479 * FileMenu_AppendFilesForPidl [SHELL32.124]
481 int WINAPI
FileMenu_AppendFilesForPidl(
488 menudata
= FM_GetMenuInfo(hmenu
);
490 menudata
->bInitialized
= FALSE
;
492 FM_InitMenuPopup(hmenu
, pidl
);
495 FileMenu_AppendItemW (hmenu
, FM_SEPARATOR
, 0, 0, 0, FM_DEFAULT_HEIGHT
);
497 TRACE("%p %p 0x%08x\n",hmenu
, pidl
,bAddSeparator
);
501 /*************************************************************************
502 * FileMenu_AddFilesForPidl [SHELL32.125]
505 * uEnumFlags any SHCONTF flag
507 int WINAPI
FileMenu_AddFilesForPidl (
514 LPFNFMCALLBACK lpfnCallback
)
516 TRACE("%p 0x%08x 0x%08x %p 0x%08x 0x%08x %p\n",
517 hmenu
, uReserved
, uID
, pidl
, uFlags
, uEnumFlags
, lpfnCallback
);
519 return FileMenu_InsertUsingPidl ( hmenu
, uID
, pidl
, uFlags
, uEnumFlags
, lpfnCallback
);
524 /*************************************************************************
525 * FileMenu_TrackPopupMenuEx [SHELL32.116]
527 BOOL WINAPI
FileMenu_TrackPopupMenuEx (
535 TRACE("%p 0x%08x 0x%x 0x%x %p %p\n",
536 hMenu
, uFlags
, x
, y
, hWnd
, lptpm
);
537 return TrackPopupMenuEx(hMenu
, uFlags
, x
, y
, hWnd
, lptpm
);
540 /*************************************************************************
541 * FileMenu_GetLastSelectedItemPidls [SHELL32.107]
543 BOOL WINAPI
FileMenu_GetLastSelectedItemPidls(
545 LPCITEMIDLIST
*ppidlFolder
,
546 LPCITEMIDLIST
*ppidlItem
)
548 FIXME("0x%08x %p %p\n",uReserved
, ppidlFolder
, ppidlItem
);
552 #define FM_ICON_SIZE 16
556 #define FM_LEFTBORDER 2
557 #define FM_RIGHTBORDER 8
558 /*************************************************************************
559 * FileMenu_MeasureItem [SHELL32.112]
561 LRESULT WINAPI
FileMenu_MeasureItem(
563 LPMEASUREITEMSTRUCT lpmis
)
565 LPFMITEM pMyItem
= (LPFMITEM
)(lpmis
->itemData
);
566 HDC hdc
= GetDC(hWnd
);
570 TRACE("%p %p %s\n", hWnd
, lpmis
, debugstr_w(pMyItem
->szItemText
));
572 GetTextExtentPoint32W(hdc
, pMyItem
->szItemText
, pMyItem
->cchItemText
, &size
);
574 lpmis
->itemWidth
= size
.cx
+ FM_LEFTBORDER
+ FM_ICON_SIZE
+ FM_SPACE1
+ FM_SPACE2
+ FM_RIGHTBORDER
;
575 lpmis
->itemHeight
= (size
.cy
> (FM_ICON_SIZE
+ FM_Y_SPACE
)) ? size
.cy
: (FM_ICON_SIZE
+ FM_Y_SPACE
);
577 /* add the menubitmap */
578 menuinfo
= FM_GetMenuInfo(pMyItem
->hMenu
);
579 if (menuinfo
->nBorderWidth
)
580 lpmis
->itemWidth
+= menuinfo
->nBorderWidth
;
582 TRACE("-- 0x%04x 0x%04x\n", lpmis
->itemWidth
, lpmis
->itemHeight
);
583 ReleaseDC (hWnd
, hdc
);
586 /*************************************************************************
587 * FileMenu_DrawItem [SHELL32.105]
589 LRESULT WINAPI
FileMenu_DrawItem(
591 LPDRAWITEMSTRUCT lpdis
)
593 LPFMITEM pMyItem
= (LPFMITEM
)(lpdis
->itemData
);
594 COLORREF clrPrevText
, clrPrevBkgnd
;
596 HIMAGELIST hImageList
;
597 RECT TextRect
, BorderRect
;
600 TRACE("%p %p %s\n", hWnd
, lpdis
, debugstr_w(pMyItem
->szItemText
));
602 if (lpdis
->itemState
& ODS_SELECTED
)
604 clrPrevText
= SetTextColor(lpdis
->hDC
, GetSysColor (COLOR_HIGHLIGHTTEXT
));
605 clrPrevBkgnd
= SetBkColor(lpdis
->hDC
, GetSysColor (COLOR_HIGHLIGHT
));
609 clrPrevText
= SetTextColor(lpdis
->hDC
, GetSysColor (COLOR_MENUTEXT
));
610 clrPrevBkgnd
= SetBkColor(lpdis
->hDC
, GetSysColor (COLOR_MENU
));
613 CopyRect(&TextRect
, &(lpdis
->rcItem
));
615 /* add the menubitmap */
616 menuinfo
= FM_GetMenuInfo(pMyItem
->hMenu
);
617 if (menuinfo
->nBorderWidth
)
618 TextRect
.left
+= menuinfo
->nBorderWidth
;
620 BorderRect
.right
= menuinfo
->nBorderWidth
;
621 /* FillRect(lpdis->hDC, &BorderRect, CreateSolidBrush( menuinfo->crBorderColor));
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_GetImageList(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%08x\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 HRESULT 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
)
877 nItem
= GetMenuItemCount(hmDst
);
879 if (uInsert
>= (UINT
)nItem
) /* insert position inside menu? */
881 uInsert
= (UINT
)nItem
; /* append on the end */
882 bAlreadySeparated
= TRUE
;
886 bAlreadySeparated
= _SHIsMenuSeparator(hmDst
, uInsert
);
889 if ((uFlags
& MM_ADDSEPARATOR
) && !bAlreadySeparated
)
891 /* Add a separator between the menus */
892 InsertMenuA(hmDst
, uInsert
, MF_BYPOSITION
| MF_SEPARATOR
, 0, NULL
);
893 bAlreadySeparated
= TRUE
;
897 /* Go through the menu items and clone them*/
898 for (nItem
= GetMenuItemCount(hmSrc
) - 1; nItem
>= 0; nItem
--)
900 miiSrc
.cbSize
= sizeof(MENUITEMINFOW
);
901 miiSrc
.fMask
= MIIM_STATE
| MIIM_ID
| MIIM_SUBMENU
| MIIM_CHECKMARKS
| MIIM_TYPE
| MIIM_DATA
;
903 /* We need to reset this every time through the loop in case menus DON'T have IDs*/
904 miiSrc
.fType
= MFT_STRING
;
905 miiSrc
.dwTypeData
= szName
;
906 miiSrc
.dwItemData
= 0;
907 miiSrc
.cch
= sizeof(szName
)/sizeof(WCHAR
);
909 if (!GetMenuItemInfoW(hmSrc
, nItem
, TRUE
, &miiSrc
))
914 /* 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);
916 if (miiSrc
.fType
& MFT_SEPARATOR
)
918 /* This is a separator; don't put two of them in a row */
919 if (bAlreadySeparated
)
922 bAlreadySeparated
= TRUE
;
924 else if (miiSrc
.hSubMenu
)
926 if (uFlags
& MM_SUBMENUSHAVEIDS
)
928 miiSrc
.wID
+= uIDAdjust
; /* add uIDAdjust to the ID */
930 if (miiSrc
.wID
> uIDAdjustMax
) /* skip ID's higher uIDAdjustMax */
933 if (uIDMax
<= miiSrc
.wID
) /* remember the highest ID */
934 uIDMax
= miiSrc
.wID
+ 1;
938 miiSrc
.fMask
&= ~MIIM_ID
; /* Don't set IDs for submenus that didn't have them already */
940 hmSubMenu
= miiSrc
.hSubMenu
;
942 miiSrc
.hSubMenu
= CreatePopupMenu();
944 if (!miiSrc
.hSubMenu
) return(uIDMax
);
946 uTemp
= Shell_MergeMenus(miiSrc
.hSubMenu
, hmSubMenu
, 0, uIDAdjust
, uIDAdjustMax
, uFlags
& MM_SUBMENUSHAVEIDS
);
951 bAlreadySeparated
= FALSE
;
953 else /* normal menu item */
955 miiSrc
.wID
+= uIDAdjust
; /* add uIDAdjust to the ID */
957 if (miiSrc
.wID
> uIDAdjustMax
) /* skip ID's higher uIDAdjustMax */
960 if (uIDMax
<= miiSrc
.wID
) /* remember the highest ID */
961 uIDMax
= miiSrc
.wID
+ 1;
963 bAlreadySeparated
= FALSE
;
966 /* 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);
968 if (!InsertMenuItemW(hmDst
, uInsert
, TRUE
, &miiSrc
))
974 /* Ensure the correct number of separators at the beginning of the
975 inserted menu items*/
978 if (bAlreadySeparated
)
980 DeleteMenu(hmDst
, uInsert
, MF_BYPOSITION
);
985 if (_SHIsMenuSeparator(hmDst
, uInsert
-1))
987 if (bAlreadySeparated
)
989 DeleteMenu(hmDst
, uInsert
, MF_BYPOSITION
);
994 if ((uFlags
& MM_ADDSEPARATOR
) && !bAlreadySeparated
)
996 /* Add a separator between the menus*/
997 InsertMenuW(hmDst
, uInsert
, MF_BYPOSITION
| MF_SEPARATOR
, 0, NULL
);