mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Implement SetMenuItemBitmaps and fix bool flags.
svn path=/trunk/; revision=16891
This commit is contained in:
parent
af30e6342b
commit
050a6ba318
1 changed files with 22 additions and 7 deletions
|
@ -4327,7 +4327,7 @@ ModifyMenuA(
|
|||
|
||||
if(!GetMenuItemInfoA( hMnu,
|
||||
uPosition,
|
||||
(BOOL)!(MF_BYPOSITION & uFlags),
|
||||
(BOOL)(MF_BYPOSITION & uFlags),
|
||||
&mii)) return FALSE;
|
||||
|
||||
if(uFlags & MF_BITMAP)
|
||||
|
@ -4397,7 +4397,7 @@ ModifyMenuA(
|
|||
|
||||
return SetMenuItemInfoA( hMnu,
|
||||
uPosition,
|
||||
(BOOL)!(MF_BYPOSITION & uFlags),
|
||||
(BOOL)(MF_BYPOSITION & uFlags),
|
||||
&mii);
|
||||
}
|
||||
|
||||
|
@ -4424,7 +4424,7 @@ ModifyMenuW(
|
|||
|
||||
if(!NtUserMenuItemInfo( hMnu,
|
||||
uPosition,
|
||||
(BOOL)!(MF_BYPOSITION & uFlags),
|
||||
(BOOL)(MF_BYPOSITION & uFlags),
|
||||
(PROSMENUITEMINFO) &mii,
|
||||
FALSE)) return FALSE;
|
||||
|
||||
|
@ -4494,7 +4494,7 @@ ModifyMenuW(
|
|||
|
||||
return SetMenuItemInfoW( hMnu,
|
||||
uPosition,
|
||||
(BOOL)!(MF_BYPOSITION & uFlags),
|
||||
(BOOL)(MF_BYPOSITION & uFlags),
|
||||
&mii);
|
||||
}
|
||||
|
||||
|
@ -4558,7 +4558,7 @@ SetMenuInfo(
|
|||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
BOOL
|
||||
STDCALL
|
||||
|
@ -4569,8 +4569,23 @@ SetMenuItemBitmaps(
|
|||
HBITMAP hBitmapUnchecked,
|
||||
HBITMAP hBitmapChecked)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
ROSMENUITEMINFO uItem;
|
||||
|
||||
if(!(NtUserMenuItemInfo(hMenu, uPosition,
|
||||
(BOOL)(MF_BYPOSITION & uFlags), &uItem, FALSE))) return FALSE;
|
||||
|
||||
if (!hBitmapChecked && !hBitmapUnchecked)
|
||||
{
|
||||
uItem.fState &= ~MF_USECHECKBITMAPS;
|
||||
}
|
||||
else /* Install new bitmaps */
|
||||
{
|
||||
uItem.hbmpChecked = hBitmapChecked;
|
||||
uItem.hbmpUnchecked = hBitmapUnchecked;
|
||||
uItem.fState |= MF_USECHECKBITMAPS;
|
||||
}
|
||||
return NtUserMenuItemInfo(hMenu, uPosition,
|
||||
(BOOL)(MF_BYPOSITION & uFlags), &uItem, TRUE);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue