Make sure that HWND comparisons are always done with full 32-bit
[wine/multimedia.git] / controls / menu.c
blob675026d72e7a34cd83cad65bcac5660763c36148
1 /*
2 * Menu functions
4 * Copyright 1993 Martin Ayotte
5 * Copyright 1994 Alexandre Julliard
6 * Copyright 1997 Morten Welinder
7 */
9 /*
10 * Note: the style MF_MOUSESELECT is used to mark popup items that
11 * have been selected, i.e. their popup menu is currently displayed.
12 * This is probably not the meaning this style has in MS-Windows.
15 #include <assert.h>
16 #include <ctype.h>
17 #include <stdlib.h>
18 #include <string.h>
20 #include "windef.h"
21 #include "winnls.h"
22 #include "wingdi.h"
23 #include "wine/winbase16.h"
24 #include "wine/winuser16.h"
25 #include "wine/unicode.h"
26 #include "wine/port.h"
27 #include "win.h"
28 #include "controls.h"
29 #include "nonclient.h"
30 #include "user.h"
31 #include "message.h"
33 #include "debugtools.h"
35 DEFAULT_DEBUG_CHANNEL(menu);
36 DECLARE_DEBUG_CHANNEL(accel);
38 /* internal popup menu window messages */
40 #define MM_SETMENUHANDLE (WM_USER + 0)
41 #define MM_GETMENUHANDLE (WM_USER + 1)
43 /* Menu item structure */
44 typedef struct {
45 /* ----------- MENUITEMINFO Stuff ----------- */
46 UINT fType; /* Item type. */
47 UINT fState; /* Item state. */
48 UINT wID; /* Item id. */
49 HMENU hSubMenu; /* Pop-up menu. */
50 HBITMAP hCheckBit; /* Bitmap when checked. */
51 HBITMAP hUnCheckBit; /* Bitmap when unchecked. */
52 LPWSTR text; /* Item text or bitmap handle. */
53 DWORD dwItemData; /* Application defined. */
54 DWORD dwTypeData; /* depends on fMask */
55 HBITMAP hbmpItem; /* bitmap in win98 style menus */
56 /* ----------- Wine stuff ----------- */
57 RECT rect; /* Item area (relative to menu window) */
58 UINT xTab; /* X position of text after Tab */
59 } MENUITEM;
61 /* Popup menu structure */
62 typedef struct {
63 WORD wFlags; /* Menu flags (MF_POPUP, MF_SYSMENU) */
64 WORD wMagic; /* Magic number */
65 WORD Width; /* Width of the whole menu */
66 WORD Height; /* Height of the whole menu */
67 UINT nItems; /* Number of items in the menu */
68 HWND hWnd; /* Window containing the menu */
69 MENUITEM *items; /* Array of menu items */
70 UINT FocusedItem; /* Currently focused item */
71 HWND hwndOwner; /* window receiving the messages for ownerdraw */
72 BOOL bTimeToHide; /* Request hiding when receiving a second click in the top-level menu item */
73 /* ------------ MENUINFO members ------ */
74 DWORD dwStyle; /* Extended mennu style */
75 UINT cyMax; /* max hight of the whole menu, 0 is screen hight */
76 HBRUSH hbrBack; /* brush for menu background */
77 DWORD dwContextHelpID;
78 DWORD dwMenuData; /* application defined value */
79 HMENU hSysMenuOwner; /* Handle to the dummy sys menu holder */
80 } POPUPMENU, *LPPOPUPMENU;
82 /* internal flags for menu tracking */
84 #define TF_ENDMENU 0x0001
85 #define TF_SUSPENDPOPUP 0x0002
86 #define TF_SKIPREMOVE 0x0004
88 typedef struct
90 UINT trackFlags;
91 HMENU hCurrentMenu; /* current submenu (can be equal to hTopMenu)*/
92 HMENU hTopMenu; /* initial menu */
93 HWND hOwnerWnd; /* where notifications are sent */
94 POINT pt;
95 } MTRACKER;
97 #define MENU_MAGIC 0x554d /* 'MU' */
99 #define ITEM_PREV -1
100 #define ITEM_NEXT 1
102 /* Internal MENU_TrackMenu() flags */
103 #define TPM_INTERNAL 0xF0000000
104 #define TPM_ENTERIDLEEX 0x80000000 /* set owner window for WM_ENTERIDLE */
105 #define TPM_BUTTONDOWN 0x40000000 /* menu was clicked before tracking */
106 #define TPM_POPUPMENU 0x20000000 /* menu is a popup menu */
108 /* popup menu shade thickness */
109 #define POPUP_XSHADE 4
110 #define POPUP_YSHADE 4
112 /* Space between 2 menu bar items */
113 #define MENU_BAR_ITEMS_SPACE 12
115 /* Minimum width of a tab character */
116 #define MENU_TAB_SPACE 8
118 /* Height of a separator item */
119 #define SEPARATOR_HEIGHT 5
121 /* (other menu->FocusedItem values give the position of the focused item) */
122 #define NO_SELECTED_ITEM 0xffff
124 #define MENU_ITEM_TYPE(flags) \
125 ((flags) & (MF_STRING | MF_BITMAP | MF_OWNERDRAW | MF_SEPARATOR))
127 #define IS_STRING_ITEM(flags) (MENU_ITEM_TYPE ((flags)) == MF_STRING)
128 #define IS_BITMAP_ITEM(flags) (MENU_ITEM_TYPE ((flags)) == MF_BITMAP)
129 #define IS_MAGIC_ITEM(text) (LOWORD((int)text)<12)
131 #define IS_SYSTEM_MENU(menu) \
132 (!((menu)->wFlags & MF_POPUP) && (menu)->wFlags & MF_SYSMENU)
134 #define IS_SYSTEM_POPUP(menu) \
135 ((menu)->wFlags & MF_POPUP && (menu)->wFlags & MF_SYSMENU)
137 #define TYPE_MASK (MFT_STRING | MFT_BITMAP | MFT_OWNERDRAW | MFT_SEPARATOR | \
138 MFT_MENUBARBREAK | MFT_MENUBREAK | MFT_RADIOCHECK | \
139 MFT_RIGHTORDER | MFT_RIGHTJUSTIFY | \
140 MF_POPUP | MF_SYSMENU | MF_HELP)
141 #define STATE_MASK (~TYPE_MASK)
143 /* Dimension of the menu bitmaps */
144 static WORD arrow_bitmap_width = 0, arrow_bitmap_height = 0;
146 static HBITMAP hStdMnArrow = 0;
148 /* Minimze/restore/close buttons to be inserted in menubar */
149 static HBITMAP hBmpMinimize = 0;
150 static HBITMAP hBmpMinimizeD = 0;
151 static HBITMAP hBmpMaximize = 0;
152 static HBITMAP hBmpMaximizeD = 0;
153 static HBITMAP hBmpClose = 0;
154 static HBITMAP hBmpCloseD = 0;
157 static HBRUSH hShadeBrush = 0;
158 static HFONT hMenuFont = 0;
159 static HFONT hMenuFontBold = 0;
161 static HMENU MENU_DefSysPopup = 0; /* Default system menu popup */
163 /* Use global popup window because there's no way 2 menus can
164 * be tracked at the same time. */
165 static HWND top_popup;
167 /* Flag set by EndMenu() to force an exit from menu tracking */
168 static BOOL fEndMenu = FALSE;
170 static LRESULT WINAPI PopupMenuWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam );
173 /*********************************************************************
174 * menu class descriptor
176 const struct builtin_class_descr MENU_builtin_class =
178 POPUPMENU_CLASS_ATOM, /* name */
179 CS_GLOBALCLASS | CS_SAVEBITS, /* style */
180 NULL, /* procA (winproc is Unicode only) */
181 PopupMenuWndProc, /* procW */
182 sizeof(HMENU), /* extra */
183 IDC_ARROWA, /* cursor */
184 COLOR_MENU+1 /* brush */
188 /***********************************************************************
189 * debug_print_menuitem
191 * Print a menuitem in readable form.
194 #define debug_print_menuitem(pre, mp, post) \
195 if(!TRACE_ON(menu)) ; else do_debug_print_menuitem(pre, mp, post)
197 #define MENUOUT(text) \
198 DPRINTF("%s%s", (count++ ? "," : ""), (text))
200 #define MENUFLAG(bit,text) \
201 do { \
202 if (flags & (bit)) { flags &= ~(bit); MENUOUT ((text)); } \
203 } while (0)
205 static void do_debug_print_menuitem(const char *prefix, MENUITEM * mp,
206 const char *postfix)
208 TRACE("%s ", prefix);
209 if (mp) {
210 UINT flags = mp->fType;
211 int typ = MENU_ITEM_TYPE(flags);
212 DPRINTF( "{ ID=0x%x", mp->wID);
213 if (flags & MF_POPUP)
214 DPRINTF( ", Sub=0x%x", mp->hSubMenu);
215 if (flags) {
216 int count = 0;
217 DPRINTF( ", Typ=");
218 if (typ == MFT_STRING)
219 /* Nothing */ ;
220 else if (typ == MFT_SEPARATOR)
221 MENUOUT("sep");
222 else if (typ == MFT_OWNERDRAW)
223 MENUOUT("own");
224 else if (typ == MFT_BITMAP)
225 MENUOUT("bit");
226 else
227 MENUOUT("???");
228 flags -= typ;
230 MENUFLAG(MF_POPUP, "pop");
231 MENUFLAG(MFT_MENUBARBREAK, "barbrk");
232 MENUFLAG(MFT_MENUBREAK, "brk");
233 MENUFLAG(MFT_RADIOCHECK, "radio");
234 MENUFLAG(MFT_RIGHTORDER, "rorder");
235 MENUFLAG(MF_SYSMENU, "sys");
236 MENUFLAG(MFT_RIGHTJUSTIFY, "right"); /* same as MF_HELP */
238 if (flags)
239 DPRINTF( "+0x%x", flags);
241 flags = mp->fState;
242 if (flags) {
243 int count = 0;
244 DPRINTF( ", State=");
245 MENUFLAG(MFS_GRAYED, "grey");
246 MENUFLAG(MFS_DEFAULT, "default");
247 MENUFLAG(MFS_DISABLED, "dis");
248 MENUFLAG(MFS_CHECKED, "check");
249 MENUFLAG(MFS_HILITE, "hi");
250 MENUFLAG(MF_USECHECKBITMAPS, "usebit");
251 MENUFLAG(MF_MOUSESELECT, "mouse");
252 if (flags)
253 DPRINTF( "+0x%x", flags);
255 if (mp->hCheckBit)
256 DPRINTF( ", Chk=0x%x", mp->hCheckBit);
257 if (mp->hUnCheckBit)
258 DPRINTF( ", Unc=0x%x", mp->hUnCheckBit);
260 if (typ == MFT_STRING) {
261 if (mp->text)
262 DPRINTF( ", Text=%s", debugstr_w(mp->text));
263 else
264 DPRINTF( ", Text=Null");
265 } else if (mp->text == NULL)
266 /* Nothing */ ;
267 else
268 DPRINTF( ", Text=%p", mp->text);
269 if (mp->dwItemData)
270 DPRINTF( ", ItemData=0x%08lx", mp->dwItemData);
271 DPRINTF( " }");
272 } else {
273 DPRINTF( "NULL");
276 DPRINTF(" %s\n", postfix);
279 #undef MENUOUT
280 #undef MENUFLAG
283 /***********************************************************************
284 * MENU_GetMenu
286 * Validate the given menu handle and returns the menu structure pointer.
288 static POPUPMENU *MENU_GetMenu(HMENU hMenu)
290 POPUPMENU *menu = USER_HEAP_LIN_ADDR(hMenu);
291 if (!menu || menu->wMagic != MENU_MAGIC)
293 WARN("invalid menu handle=%x, ptr=%p, magic=%x\n", hMenu, menu, menu? menu->wMagic:0);
294 menu = NULL;
296 return menu;
299 /***********************************************************************
300 * get_win_sys_menu
302 * Get the system menu of a window
304 static HMENU get_win_sys_menu( HWND hwnd )
306 HMENU ret = 0;
307 WND *win = WIN_FindWndPtr( hwnd );
308 if (win)
310 ret = win->hSysMenu;
311 WIN_ReleaseWndPtr( win );
313 return ret;
316 /***********************************************************************
317 * MENU_CopySysPopup
319 * Return the default system menu.
321 static HMENU MENU_CopySysPopup(void)
323 HMENU hMenu = LoadMenuA(GetModuleHandleA("USER32"), "SYSMENU");
325 if( hMenu ) {
326 POPUPMENU* menu = MENU_GetMenu(hMenu);
327 menu->wFlags |= MF_SYSMENU | MF_POPUP;
328 SetMenuDefaultItem(hMenu, SC_CLOSE, FALSE);
330 else
331 ERR("Unable to load default system menu\n" );
333 TRACE("returning %x.\n", hMenu );
335 return hMenu;
339 /**********************************************************************
340 * MENU_GetSysMenu
342 * Create a copy of the system menu. System menu in Windows is
343 * a special menu bar with the single entry - system menu popup.
344 * This popup is presented to the outside world as a "system menu".
345 * However, the real system menu handle is sometimes seen in the
346 * WM_MENUSELECT parameters (and Word 6 likes it this way).
348 HMENU MENU_GetSysMenu( HWND hWnd, HMENU hPopupMenu )
350 HMENU hMenu;
352 if ((hMenu = CreateMenu()))
354 POPUPMENU *menu = MENU_GetMenu(hMenu);
355 menu->wFlags = MF_SYSMENU;
356 menu->hWnd = WIN_GetFullHandle( hWnd );
358 if (hPopupMenu == (HMENU)(-1))
359 hPopupMenu = MENU_CopySysPopup();
360 else if( !hPopupMenu ) hPopupMenu = MENU_DefSysPopup;
362 if (hPopupMenu)
364 InsertMenuA( hMenu, -1, MF_SYSMENU | MF_POPUP | MF_BYPOSITION, hPopupMenu, NULL );
366 menu->items[0].fType = MF_SYSMENU | MF_POPUP;
367 menu->items[0].fState = 0;
368 if ((menu = MENU_GetMenu(hPopupMenu))) menu->wFlags |= MF_SYSMENU;
370 TRACE("GetSysMenu hMenu=%04x (%04x)\n", hMenu, hPopupMenu );
371 return hMenu;
373 DestroyMenu( hMenu );
375 ERR("failed to load system menu!\n");
376 return 0;
380 /***********************************************************************
381 * MENU_Init
383 * Menus initialisation.
385 BOOL MENU_Init()
387 HBITMAP hBitmap;
388 NONCLIENTMETRICSA ncm;
390 static unsigned char shade_bits[16] = { 0x55, 0, 0xAA, 0,
391 0x55, 0, 0xAA, 0,
392 0x55, 0, 0xAA, 0,
393 0x55, 0, 0xAA, 0 };
395 /* Load menu bitmaps */
396 hStdMnArrow = LoadBitmapA(0, MAKEINTRESOURCEA(OBM_MNARROW));
397 /* Load system buttons bitmaps */
398 hBmpMinimize = LoadBitmapA(0,MAKEINTRESOURCEA(OBM_REDUCE));
399 hBmpMinimizeD = LoadBitmapA(0,MAKEINTRESOURCEA(OBM_REDUCED));
400 hBmpMaximize = LoadBitmapA(0,MAKEINTRESOURCEA(OBM_RESTORE));
401 hBmpMaximizeD = LoadBitmapA(0,MAKEINTRESOURCEA(OBM_RESTORED));
402 hBmpClose = LoadBitmapA(0,MAKEINTRESOURCEA(OBM_CLOSE));
403 hBmpCloseD = LoadBitmapA(0,MAKEINTRESOURCEA(OBM_CLOSED));
405 if (hStdMnArrow)
407 BITMAP bm;
408 GetObjectA( hStdMnArrow, sizeof(bm), &bm );
409 arrow_bitmap_width = bm.bmWidth;
410 arrow_bitmap_height = bm.bmHeight;
411 } else
412 return FALSE;
414 if (! (hBitmap = CreateBitmap( 8, 8, 1, 1, shade_bits)))
415 return FALSE;
417 if(!(hShadeBrush = CreatePatternBrush( hBitmap )))
418 return FALSE;
420 DeleteObject( hBitmap );
421 if (!(MENU_DefSysPopup = MENU_CopySysPopup()))
422 return FALSE;
424 ncm.cbSize = sizeof (NONCLIENTMETRICSA);
425 if (!(SystemParametersInfoA(SPI_GETNONCLIENTMETRICS, sizeof(NONCLIENTMETRICSA), &ncm, 0)))
426 return FALSE;
428 if (!(hMenuFont = CreateFontIndirectA( &ncm.lfMenuFont )))
429 return FALSE;
431 ncm.lfMenuFont.lfWeight += 300;
432 if ( ncm.lfMenuFont.lfWeight > 1000)
433 ncm.lfMenuFont.lfWeight = 1000;
435 if (!(hMenuFontBold = CreateFontIndirectA( &ncm.lfMenuFont )))
436 return FALSE;
438 return TRUE;
441 /***********************************************************************
442 * MENU_InitSysMenuPopup
444 * Grey the appropriate items in System menu.
446 static void MENU_InitSysMenuPopup( HMENU hmenu, DWORD style, DWORD clsStyle )
448 BOOL gray;
450 gray = !(style & WS_THICKFRAME) || (style & (WS_MAXIMIZE | WS_MINIMIZE));
451 EnableMenuItem( hmenu, SC_SIZE, (gray ? MF_GRAYED : MF_ENABLED) );
452 gray = ((style & WS_MAXIMIZE) != 0);
453 EnableMenuItem( hmenu, SC_MOVE, (gray ? MF_GRAYED : MF_ENABLED) );
454 gray = !(style & WS_MINIMIZEBOX) || (style & WS_MINIMIZE);
455 EnableMenuItem( hmenu, SC_MINIMIZE, (gray ? MF_GRAYED : MF_ENABLED) );
456 gray = !(style & WS_MAXIMIZEBOX) || (style & WS_MAXIMIZE);
457 EnableMenuItem( hmenu, SC_MAXIMIZE, (gray ? MF_GRAYED : MF_ENABLED) );
458 gray = !(style & (WS_MAXIMIZE | WS_MINIMIZE));
459 EnableMenuItem( hmenu, SC_RESTORE, (gray ? MF_GRAYED : MF_ENABLED) );
460 gray = (clsStyle & CS_NOCLOSE) != 0;
462 /* The menu item must keep its state if it's disabled */
463 if(gray)
464 EnableMenuItem( hmenu, SC_CLOSE, MF_GRAYED);
468 /******************************************************************************
470 * UINT MENU_GetStartOfNextColumn(
471 * HMENU hMenu )
473 *****************************************************************************/
475 static UINT MENU_GetStartOfNextColumn(
476 HMENU hMenu )
478 POPUPMENU *menu = MENU_GetMenu(hMenu);
479 UINT i;
481 if(!menu)
482 return NO_SELECTED_ITEM;
484 i = menu->FocusedItem + 1;
485 if( i == NO_SELECTED_ITEM )
486 return i;
488 for( ; i < menu->nItems; ++i ) {
489 if (menu->items[i].fType & MF_MENUBARBREAK)
490 return i;
493 return NO_SELECTED_ITEM;
497 /******************************************************************************
499 * UINT MENU_GetStartOfPrevColumn(
500 * HMENU hMenu )
502 *****************************************************************************/
504 static UINT MENU_GetStartOfPrevColumn(
505 HMENU hMenu )
507 POPUPMENU *menu = MENU_GetMenu(hMenu);
508 UINT i;
510 if( !menu )
511 return NO_SELECTED_ITEM;
513 if( menu->FocusedItem == 0 || menu->FocusedItem == NO_SELECTED_ITEM )
514 return NO_SELECTED_ITEM;
516 /* Find the start of the column */
518 for(i = menu->FocusedItem; i != 0 &&
519 !(menu->items[i].fType & MF_MENUBARBREAK);
520 --i); /* empty */
522 if(i == 0)
523 return NO_SELECTED_ITEM;
525 for(--i; i != 0; --i) {
526 if (menu->items[i].fType & MF_MENUBARBREAK)
527 break;
530 TRACE("ret %d.\n", i );
532 return i;
537 /***********************************************************************
538 * MENU_FindItem
540 * Find a menu item. Return a pointer on the item, and modifies *hmenu
541 * in case the item was in a sub-menu.
543 static MENUITEM *MENU_FindItem( HMENU *hmenu, UINT *nPos, UINT wFlags )
545 POPUPMENU *menu;
546 UINT i;
548 if (((*hmenu)==0xffff) || (!(menu = MENU_GetMenu(*hmenu)))) return NULL;
549 if (wFlags & MF_BYPOSITION)
551 if (*nPos >= menu->nItems) return NULL;
552 return &menu->items[*nPos];
554 else
556 MENUITEM *item = menu->items;
557 for (i = 0; i < menu->nItems; i++, item++)
559 if (item->wID == *nPos)
561 *nPos = i;
562 return item;
564 else if (item->fType & MF_POPUP)
566 HMENU hsubmenu = item->hSubMenu;
567 MENUITEM *subitem = MENU_FindItem( &hsubmenu, nPos, wFlags );
568 if (subitem)
570 *hmenu = hsubmenu;
571 return subitem;
576 return NULL;
579 /***********************************************************************
580 * MENU_FindSubMenu
582 * Find a Sub menu. Return the position of the submenu, and modifies
583 * *hmenu in case it is found in another sub-menu.
584 * If the submenu cannot be found, NO_SELECTED_ITEM is returned.
586 UINT MENU_FindSubMenu( HMENU *hmenu, HMENU hSubTarget )
588 POPUPMENU *menu;
589 UINT i;
590 MENUITEM *item;
591 if (((*hmenu)==0xffff) ||
592 (!(menu = MENU_GetMenu(*hmenu))))
593 return NO_SELECTED_ITEM;
594 item = menu->items;
595 for (i = 0; i < menu->nItems; i++, item++) {
596 if(!(item->fType & MF_POPUP)) continue;
597 if (item->hSubMenu == hSubTarget) {
598 return i;
600 else {
601 HMENU hsubmenu = item->hSubMenu;
602 UINT pos = MENU_FindSubMenu( &hsubmenu, hSubTarget );
603 if (pos != NO_SELECTED_ITEM) {
604 *hmenu = hsubmenu;
605 return pos;
609 return NO_SELECTED_ITEM;
612 /***********************************************************************
613 * MENU_FreeItemData
615 static void MENU_FreeItemData( MENUITEM* item )
617 /* delete text */
618 if (IS_STRING_ITEM(item->fType) && item->text)
619 HeapFree( GetProcessHeap(), 0, item->text );
622 /***********************************************************************
623 * MENU_FindItemByCoords
625 * Find the item at the specified coordinates (screen coords). Does
626 * not work for child windows and therefore should not be called for
627 * an arbitrary system menu.
629 static MENUITEM *MENU_FindItemByCoords( POPUPMENU *menu,
630 POINT pt, UINT *pos )
632 MENUITEM *item;
633 UINT i;
634 RECT wrect;
636 if (!GetWindowRect(menu->hWnd,&wrect)) return NULL;
637 pt.x -= wrect.left;pt.y -= wrect.top;
638 item = menu->items;
639 for (i = 0; i < menu->nItems; i++, item++)
641 if ((pt.x >= item->rect.left) && (pt.x < item->rect.right) &&
642 (pt.y >= item->rect.top) && (pt.y < item->rect.bottom))
644 if (pos) *pos = i;
645 return item;
648 return NULL;
652 /***********************************************************************
653 * MENU_FindItemByKey
655 * Find the menu item selected by a key press.
656 * Return item id, -1 if none, -2 if we should close the menu.
658 static UINT MENU_FindItemByKey( HWND hwndOwner, HMENU hmenu,
659 UINT key, BOOL forceMenuChar )
661 TRACE("\tlooking for '%c' in [%04x]\n", (char)key, (UINT16)hmenu );
663 if (!IsMenu( hmenu )) hmenu = GetSubMenu( get_win_sys_menu(hwndOwner), 0);
665 if (hmenu)
667 POPUPMENU *menu = MENU_GetMenu( hmenu );
668 MENUITEM *item = menu->items;
669 LONG menuchar;
671 if( !forceMenuChar )
673 UINT i;
675 key = toupper(key);
676 for (i = 0; i < menu->nItems; i++, item++)
678 if (item->text && (IS_STRING_ITEM(item->fType)))
680 WCHAR *p = item->text - 2;
683 p = strchrW (p + 2, '&');
685 while (p != NULL && p [1] == '&');
686 if (p && (toupper(p[1]) == key)) return i;
690 menuchar = SendMessageA( hwndOwner, WM_MENUCHAR,
691 MAKEWPARAM( key, menu->wFlags ), hmenu );
692 if (HIWORD(menuchar) == 2) return LOWORD(menuchar);
693 if (HIWORD(menuchar) == 1) return (UINT)(-2);
695 return (UINT)(-1);
697 /***********************************************************************
698 * MENU_LoadMagicItem
700 * Load the bitmap associated with the magic menu item and its style
703 static HBITMAP MENU_LoadMagicItem(UINT id, BOOL hilite, DWORD dwItemData)
706 * Magic menu item id's section
707 * These magic id's are used by windows to insert "standard" mdi
708 * buttons (minimize,restore,close) on menu. Under windows,
709 * these magic id's make sure the right things appear when those
710 * bitmap buttons are pressed/selected/released.
713 switch(id & 0xffff)
714 { case HBMMENU_SYSTEM:
715 return (dwItemData) ?
716 (HBITMAP)dwItemData :
717 (hilite ? hBmpMinimizeD : hBmpMinimize);
718 case HBMMENU_MBAR_RESTORE:
719 return (hilite ? hBmpMaximizeD: hBmpMaximize);
720 case HBMMENU_MBAR_MINIMIZE:
721 return (hilite ? hBmpMinimizeD : hBmpMinimize);
722 case HBMMENU_MBAR_CLOSE:
723 return (hilite ? hBmpCloseD : hBmpClose);
724 case HBMMENU_CALLBACK:
725 case HBMMENU_MBAR_CLOSE_D:
726 case HBMMENU_MBAR_MINIMIZE_D:
727 case HBMMENU_POPUP_CLOSE:
728 case HBMMENU_POPUP_RESTORE:
729 case HBMMENU_POPUP_MAXIMIZE:
730 case HBMMENU_POPUP_MINIMIZE:
731 default:
732 FIXME("Magic 0x%08x not implemented\n", id);
733 return 0;
738 /***********************************************************************
739 * MENU_CalcItemSize
741 * Calculate the size of the menu item and store it in lpitem->rect.
743 static void MENU_CalcItemSize( HDC hdc, MENUITEM *lpitem, HWND hwndOwner,
744 INT orgX, INT orgY, BOOL menuBar )
746 WCHAR *p;
747 UINT check_bitmap_width = GetSystemMetrics( SM_CXMENUCHECK );
749 TRACE("dc=0x%04x owner=0x%04x (%d,%d)\n", hdc, hwndOwner, orgX, orgY);
750 debug_print_menuitem("MENU_CalcItemSize: menuitem:", lpitem,
751 (menuBar ? " (MenuBar)" : ""));
753 SetRect( &lpitem->rect, orgX, orgY, orgX, orgY );
755 if (lpitem->fType & MF_OWNERDRAW)
758 ** Experimentation under Windows reveals that an owner-drawn
759 ** menu is expected to return the size of the content part of
760 ** the menu item, not including the checkmark nor the submenu
761 ** arrow. Windows adds those values itself and returns the
762 ** enlarged rectangle on subsequent WM_DRAWITEM messages.
764 MEASUREITEMSTRUCT mis;
765 mis.CtlType = ODT_MENU;
766 mis.CtlID = 0;
767 mis.itemID = lpitem->wID;
768 mis.itemData = (DWORD)lpitem->dwItemData;
769 mis.itemHeight = 0;
770 mis.itemWidth = 0;
771 SendMessageA( hwndOwner, WM_MEASUREITEM, 0, (LPARAM)&mis );
772 lpitem->rect.right += mis.itemWidth;
774 if (menuBar)
776 lpitem->rect.right += MENU_BAR_ITEMS_SPACE;
779 /* under at least win95 you seem to be given a standard
780 height for the menu and the height value is ignored */
782 if (TWEAK_WineLook == WIN31_LOOK)
783 lpitem->rect.bottom += GetSystemMetrics(SM_CYMENU);
784 else
785 lpitem->rect.bottom += GetSystemMetrics(SM_CYMENU)-1;
787 else
788 lpitem->rect.bottom += mis.itemHeight;
790 TRACE("id=%04x size=%dx%d\n",
791 lpitem->wID, mis.itemWidth, mis.itemHeight);
792 /* Fall through to get check/arrow width calculation. */
795 if (lpitem->fType & MF_SEPARATOR)
797 lpitem->rect.bottom += SEPARATOR_HEIGHT;
798 return;
801 if (!menuBar)
803 lpitem->rect.right += 2 * check_bitmap_width;
804 if (lpitem->fType & MF_POPUP)
805 lpitem->rect.right += arrow_bitmap_width;
808 if (lpitem->fType & MF_OWNERDRAW)
809 return;
811 if (IS_BITMAP_ITEM(lpitem->fType))
813 BITMAP bm;
814 HBITMAP resBmp = 0;
816 /* Check if there is a magic menu item associated with this item */
817 if (IS_MAGIC_ITEM(lpitem->text))
819 resBmp = MENU_LoadMagicItem((int)lpitem->text, (lpitem->fType & MF_HILITE),
820 lpitem->dwItemData);
822 else
823 resBmp = (HBITMAP)lpitem->text;
825 if (GetObjectA(resBmp, sizeof(bm), &bm ))
827 lpitem->rect.right += bm.bmWidth;
828 lpitem->rect.bottom += bm.bmHeight;
829 if (TWEAK_WineLook == WIN98_LOOK) {
830 /* Leave space for the sunken border */
831 lpitem->rect.right += 2;
832 lpitem->rect.bottom += 2;
839 /* it must be a text item - unless it's the system menu */
840 if (!(lpitem->fType & MF_SYSMENU) && IS_STRING_ITEM( lpitem->fType ))
841 { SIZE size;
843 GetTextExtentPoint32W(hdc, lpitem->text, strlenW(lpitem->text), &size);
845 lpitem->rect.right += size.cx;
846 if (TWEAK_WineLook == WIN31_LOOK)
847 lpitem->rect.bottom += max( size.cy, GetSystemMetrics(SM_CYMENU) );
848 else
849 lpitem->rect.bottom += max(size.cy, GetSystemMetrics(SM_CYMENU)-1);
850 lpitem->xTab = 0;
852 if (menuBar)
854 lpitem->rect.right += MENU_BAR_ITEMS_SPACE;
856 else if ((p = strchrW( lpitem->text, '\t' )) != NULL)
858 /* Item contains a tab (only meaningful in popup menus) */
859 GetTextExtentPoint32W(hdc, lpitem->text, (int)(p - lpitem->text) , &size);
860 lpitem->xTab = check_bitmap_width + MENU_TAB_SPACE + size.cx;
861 lpitem->rect.right += MENU_TAB_SPACE;
863 else
865 if (strchrW( lpitem->text, '\b' ))
866 lpitem->rect.right += MENU_TAB_SPACE;
867 lpitem->xTab = lpitem->rect.right - check_bitmap_width
868 - arrow_bitmap_width;
871 TRACE("(%d,%d)-(%d,%d)\n", lpitem->rect.left, lpitem->rect.top, lpitem->rect.right, lpitem->rect.bottom);
875 /***********************************************************************
876 * MENU_PopupMenuCalcSize
878 * Calculate the size of a popup menu.
880 static void MENU_PopupMenuCalcSize( LPPOPUPMENU lppop, HWND hwndOwner )
882 MENUITEM *lpitem;
883 HDC hdc;
884 int start, i;
885 int orgX, orgY, maxX, maxTab, maxTabWidth;
887 lppop->Width = lppop->Height = 0;
888 if (lppop->nItems == 0) return;
889 hdc = GetDC( 0 );
891 SelectObject( hdc, hMenuFont);
893 start = 0;
894 maxX = (TWEAK_WineLook == WIN31_LOOK) ? GetSystemMetrics(SM_CXBORDER) : 2+1 ;
896 while (start < lppop->nItems)
898 lpitem = &lppop->items[start];
899 orgX = maxX;
900 orgY = (TWEAK_WineLook == WIN31_LOOK) ? GetSystemMetrics(SM_CYBORDER) : 2;
902 maxTab = maxTabWidth = 0;
904 /* Parse items until column break or end of menu */
905 for (i = start; i < lppop->nItems; i++, lpitem++)
907 if ((i != start) &&
908 (lpitem->fType & (MF_MENUBREAK | MF_MENUBARBREAK))) break;
910 MENU_CalcItemSize( hdc, lpitem, hwndOwner, orgX, orgY, FALSE );
912 if (lpitem->fType & MF_MENUBARBREAK) orgX++;
913 maxX = max( maxX, lpitem->rect.right );
914 orgY = lpitem->rect.bottom;
915 if (IS_STRING_ITEM(lpitem->fType) && lpitem->xTab)
917 maxTab = max( maxTab, lpitem->xTab );
918 maxTabWidth = max(maxTabWidth,lpitem->rect.right-lpitem->xTab);
922 /* Finish the column (set all items to the largest width found) */
923 maxX = max( maxX, maxTab + maxTabWidth );
924 for (lpitem = &lppop->items[start]; start < i; start++, lpitem++)
926 lpitem->rect.right = maxX;
927 if (IS_STRING_ITEM(lpitem->fType) && lpitem->xTab)
928 lpitem->xTab = maxTab;
931 lppop->Height = max( lppop->Height, orgY );
934 lppop->Width = maxX;
936 /* space for 3d border */
937 if(TWEAK_WineLook > WIN31_LOOK)
939 lppop->Height += 2;
940 lppop->Width += 2;
943 ReleaseDC( 0, hdc );
947 /***********************************************************************
948 * MENU_MenuBarCalcSize
950 * FIXME: Word 6 implements its own MDI and its own 'close window' bitmap
951 * height is off by 1 pixel which causes lengthy window relocations when
952 * active document window is maximized/restored.
954 * Calculate the size of the menu bar.
956 static void MENU_MenuBarCalcSize( HDC hdc, LPRECT lprect,
957 LPPOPUPMENU lppop, HWND hwndOwner )
959 MENUITEM *lpitem;
960 int start, i, orgX, orgY, maxY, helpPos;
962 if ((lprect == NULL) || (lppop == NULL)) return;
963 if (lppop->nItems == 0) return;
964 TRACE("left=%d top=%d right=%d bottom=%d\n",
965 lprect->left, lprect->top, lprect->right, lprect->bottom);
966 lppop->Width = lprect->right - lprect->left;
967 lppop->Height = 0;
968 maxY = lprect->top+1;
969 start = 0;
970 helpPos = -1;
971 while (start < lppop->nItems)
973 lpitem = &lppop->items[start];
974 orgX = lprect->left;
975 orgY = maxY;
977 /* Parse items until line break or end of menu */
978 for (i = start; i < lppop->nItems; i++, lpitem++)
980 if ((helpPos == -1) && (lpitem->fType & MF_RIGHTJUSTIFY)) helpPos = i;
981 if ((i != start) &&
982 (lpitem->fType & (MF_MENUBREAK | MF_MENUBARBREAK))) break;
984 TRACE("calling MENU_CalcItemSize org=(%d, %d)\n",
985 orgX, orgY );
986 debug_print_menuitem (" item: ", lpitem, "");
987 MENU_CalcItemSize( hdc, lpitem, hwndOwner, orgX, orgY, TRUE );
989 if (lpitem->rect.right > lprect->right)
991 if (i != start) break;
992 else lpitem->rect.right = lprect->right;
994 maxY = max( maxY, lpitem->rect.bottom );
995 orgX = lpitem->rect.right;
998 /* Finish the line (set all items to the largest height found) */
999 while (start < i) lppop->items[start++].rect.bottom = maxY;
1002 lprect->bottom = maxY;
1003 lppop->Height = lprect->bottom - lprect->top;
1005 /* Flush right all items between the MF_RIGHTJUSTIFY and */
1006 /* the last item (if several lines, only move the last line) */
1007 lpitem = &lppop->items[lppop->nItems-1];
1008 orgY = lpitem->rect.top;
1009 orgX = lprect->right;
1010 for (i = lppop->nItems - 1; i >= helpPos; i--, lpitem--) {
1011 if ( (helpPos==-1) || (helpPos>i) )
1012 break; /* done */
1013 if (lpitem->rect.top != orgY) break; /* Other line */
1014 if (lpitem->rect.right >= orgX) break; /* Too far right already */
1015 lpitem->rect.left += orgX - lpitem->rect.right;
1016 lpitem->rect.right = orgX;
1017 orgX = lpitem->rect.left;
1021 /***********************************************************************
1022 * MENU_DrawMenuItem
1024 * Draw a single menu item.
1026 static void MENU_DrawMenuItem( HWND hwnd, HMENU hmenu, HWND hwndOwner, HDC hdc, MENUITEM *lpitem,
1027 UINT height, BOOL menuBar, UINT odaction )
1029 RECT rect;
1031 debug_print_menuitem("MENU_DrawMenuItem: ", lpitem, "");
1033 if (lpitem->fType & MF_SYSMENU)
1035 if( !IsIconic(hwnd) ) {
1036 if (TWEAK_WineLook > WIN31_LOOK)
1037 NC_DrawSysButton95( hwnd, hdc,
1038 lpitem->fState &
1039 (MF_HILITE | MF_MOUSESELECT) );
1040 else
1041 NC_DrawSysButton( hwnd, hdc,
1042 lpitem->fState &
1043 (MF_HILITE | MF_MOUSESELECT) );
1046 return;
1049 if (lpitem->fType & MF_OWNERDRAW)
1052 ** Experimentation under Windows reveals that an owner-drawn
1053 ** menu is given the rectangle which includes the space it requested
1054 ** in its response to WM_MEASUREITEM _plus_ width for a checkmark
1055 ** and a popup-menu arrow. This is the value of lpitem->rect.
1056 ** Windows will leave all drawing to the application except for
1057 ** the popup-menu arrow. Windows always draws that itself, after
1058 ** the menu owner has finished drawing.
1060 DRAWITEMSTRUCT dis;
1062 dis.CtlType = ODT_MENU;
1063 dis.CtlID = 0;
1064 dis.itemID = lpitem->wID;
1065 dis.itemData = (DWORD)lpitem->dwItemData;
1066 dis.itemState = 0;
1067 if (lpitem->fState & MF_CHECKED) dis.itemState |= ODS_CHECKED;
1068 if (lpitem->fState & MF_GRAYED) dis.itemState |= ODS_GRAYED;
1069 if (lpitem->fState & MF_HILITE) dis.itemState |= ODS_SELECTED;
1070 dis.itemAction = odaction; /* ODA_DRAWENTIRE | ODA_SELECT | ODA_FOCUS; */
1071 dis.hwndItem = hmenu;
1072 dis.hDC = hdc;
1073 dis.rcItem = lpitem->rect;
1074 TRACE("Ownerdraw: owner=%04x itemID=%d, itemState=%d, itemAction=%d, "
1075 "hwndItem=%04x, hdc=%04x, rcItem={%d,%d,%d,%d}\n", hwndOwner,
1076 dis.itemID, dis.itemState, dis.itemAction, dis.hwndItem,
1077 dis.hDC, dis.rcItem.left, dis.rcItem.top, dis.rcItem.right,
1078 dis.rcItem.bottom);
1079 SendMessageA( hwndOwner, WM_DRAWITEM, 0, (LPARAM)&dis );
1080 /* Fall through to draw popup-menu arrow */
1083 TRACE("rect={%d,%d,%d,%d}\n", lpitem->rect.left, lpitem->rect.top,
1084 lpitem->rect.right,lpitem->rect.bottom);
1086 if (menuBar && (lpitem->fType & MF_SEPARATOR)) return;
1088 rect = lpitem->rect;
1090 if (!(lpitem->fType & MF_OWNERDRAW))
1092 if (lpitem->fState & MF_HILITE)
1094 if(TWEAK_WineLook == WIN98_LOOK)
1096 if(menuBar)
1097 DrawEdge(hdc, &rect, BDR_SUNKENOUTER, BF_RECT);
1098 else
1099 FillRect(hdc, &rect, GetSysColorBrush(COLOR_HIGHLIGHT));
1101 else /* Not Win98 Look */
1103 if(!IS_BITMAP_ITEM(lpitem->fType))
1104 FillRect(hdc, &rect, GetSysColorBrush(COLOR_HIGHLIGHT));
1107 else
1108 FillRect( hdc, &rect, GetSysColorBrush(COLOR_MENU) );
1111 SetBkMode( hdc, TRANSPARENT );
1113 if (!(lpitem->fType & MF_OWNERDRAW))
1115 /* vertical separator */
1116 if (!menuBar && (lpitem->fType & MF_MENUBARBREAK))
1118 if (TWEAK_WineLook > WIN31_LOOK)
1120 RECT rc = rect;
1121 rc.top = 3;
1122 rc.bottom = height - 3;
1123 DrawEdge (hdc, &rc, EDGE_ETCHED, BF_LEFT);
1125 else
1127 SelectObject( hdc, GetSysColorPen(COLOR_WINDOWFRAME) );
1128 MoveToEx( hdc, rect.left, 0, NULL );
1129 LineTo( hdc, rect.left, height );
1133 /* horizontal separator */
1134 if (lpitem->fType & MF_SEPARATOR)
1136 if (TWEAK_WineLook > WIN31_LOOK)
1138 RECT rc = rect;
1139 rc.left++;
1140 rc.right--;
1141 rc.top += SEPARATOR_HEIGHT / 2;
1142 DrawEdge (hdc, &rc, EDGE_ETCHED, BF_TOP);
1144 else
1146 SelectObject( hdc, GetSysColorPen(COLOR_WINDOWFRAME) );
1147 MoveToEx( hdc, rect.left, rect.top + SEPARATOR_HEIGHT/2, NULL );
1148 LineTo( hdc, rect.right, rect.top + SEPARATOR_HEIGHT/2 );
1150 return;
1154 /* Setup colors */
1156 if (lpitem->fState & MF_HILITE)
1158 if(TWEAK_WineLook == WIN98_LOOK)
1160 if(menuBar) {
1161 SetTextColor(hdc, GetSysColor(COLOR_MENUTEXT));
1162 SetBkColor(hdc, GetSysColor(COLOR_MENU));
1163 } else {
1164 if(lpitem->fState & MF_GRAYED)
1165 SetTextColor(hdc, GetSysColor(COLOR_GRAYTEXT));
1166 else
1167 SetTextColor(hdc, GetSysColor(COLOR_HIGHLIGHTTEXT));
1168 SetBkColor(hdc, GetSysColor(COLOR_HIGHLIGHT));
1171 else /* Not Win98 Look */
1173 SetTextColor(hdc, GetSysColor(COLOR_HIGHLIGHTTEXT));
1174 if(!IS_BITMAP_ITEM(lpitem->fType))
1175 SetBkColor(hdc, GetSysColor(COLOR_HIGHLIGHT));
1178 else
1180 if (lpitem->fState & MF_GRAYED)
1181 SetTextColor( hdc, GetSysColor( COLOR_GRAYTEXT ) );
1182 else
1183 SetTextColor( hdc, GetSysColor( COLOR_MENUTEXT ) );
1184 SetBkColor( hdc, GetSysColor( COLOR_MENU ) );
1187 /* helper lines for debugging */
1188 /* FrameRect(hdc, &rect, GetStockObject(BLACK_BRUSH));
1189 SelectObject( hdc, GetSysColorPen(COLOR_WINDOWFRAME) );
1190 MoveToEx( hdc, rect.left, (rect.top + rect.bottom)/2, NULL );
1191 LineTo( hdc, rect.right, (rect.top + rect.bottom)/2 );
1194 if (!menuBar)
1196 INT y = rect.top + rect.bottom;
1197 UINT check_bitmap_width = GetSystemMetrics( SM_CXMENUCHECK );
1198 UINT check_bitmap_height = GetSystemMetrics( SM_CYMENUCHECK );
1200 if (!(lpitem->fType & MF_OWNERDRAW))
1202 /* Draw the check mark
1204 * FIXME:
1205 * Custom checkmark bitmaps are monochrome but not always 1bpp.
1207 HBITMAP bm = (lpitem->fState & MF_CHECKED) ? lpitem->hCheckBit : lpitem->hUnCheckBit;
1208 if (bm) /* we have a custom bitmap */
1210 HDC hdcMem = CreateCompatibleDC( hdc );
1211 SelectObject( hdcMem, bm );
1212 BitBlt( hdc, rect.left, (y - check_bitmap_height) / 2,
1213 check_bitmap_width, check_bitmap_height,
1214 hdcMem, 0, 0, SRCCOPY );
1215 DeleteDC( hdcMem );
1217 else if (lpitem->fState & MF_CHECKED) /* standard bitmaps */
1219 RECT r;
1220 HBITMAP bm = CreateBitmap( check_bitmap_width, check_bitmap_height, 1, 1, NULL );
1221 HDC hdcMem = CreateCompatibleDC( hdc );
1222 SelectObject( hdcMem, bm );
1223 SetRect( &r, 0, 0, check_bitmap_width, check_bitmap_height );
1224 DrawFrameControl( hdcMem, &r, DFC_MENU,
1225 (lpitem->fType & MFT_RADIOCHECK) ?
1226 DFCS_MENUBULLET : DFCS_MENUCHECK );
1227 BitBlt( hdc, rect.left, (y - r.bottom) / 2, r.right, r.bottom,
1228 hdcMem, 0, 0, SRCCOPY );
1229 DeleteDC( hdcMem );
1230 DeleteObject( bm );
1234 /* Draw the popup-menu arrow */
1235 if (lpitem->fType & MF_POPUP)
1237 HDC hdcMem = CreateCompatibleDC( hdc );
1238 HBITMAP hOrigBitmap;
1240 hOrigBitmap = SelectObject( hdcMem, hStdMnArrow );
1241 BitBlt( hdc, rect.right - arrow_bitmap_width - 1,
1242 (y - arrow_bitmap_height) / 2,
1243 arrow_bitmap_width, arrow_bitmap_height,
1244 hdcMem, 0, 0, SRCCOPY );
1245 SelectObject( hdcMem, hOrigBitmap );
1246 DeleteDC( hdcMem );
1249 rect.left += check_bitmap_width;
1250 rect.right -= arrow_bitmap_width;
1253 /* Done for owner-drawn */
1254 if (lpitem->fType & MF_OWNERDRAW)
1255 return;
1257 /* Draw the item text or bitmap */
1258 if (IS_BITMAP_ITEM(lpitem->fType))
1260 int left,top,w,h;
1261 DWORD rop;
1263 HBITMAP resBmp = 0;
1265 HDC hdcMem = CreateCompatibleDC( hdc );
1268 * Check if there is a magic menu item associated with this item
1269 * and load the appropriate bitmap
1271 if (IS_MAGIC_ITEM(lpitem->text))
1273 resBmp = MENU_LoadMagicItem((int)lpitem->text, (lpitem->fState & MF_HILITE),
1274 lpitem->dwItemData);
1276 else
1277 resBmp = (HBITMAP)lpitem->text;
1279 if (resBmp)
1281 BITMAP bm;
1282 GetObjectA( resBmp, sizeof(bm), &bm );
1284 SelectObject(hdcMem,resBmp );
1286 /* handle fontsize > bitmap_height */
1287 h=rect.bottom - rect.top;
1288 top = (h>bm.bmHeight) ?
1289 rect.top+(h-bm.bmHeight)/2 : rect.top;
1290 w=rect.right - rect.left;
1291 left=rect.left;
1292 if (TWEAK_WineLook == WIN95_LOOK) {
1293 rop=((lpitem->fState & MF_HILITE) && !IS_MAGIC_ITEM(lpitem->text)) ? NOTSRCCOPY : SRCCOPY;
1294 if ((lpitem->fState & MF_HILITE) && IS_BITMAP_ITEM(lpitem->fType))
1295 SetBkColor(hdc, GetSysColor(COLOR_HIGHLIGHT));
1296 } else {
1297 left++;
1298 w-=2;
1299 rop=((lpitem->fState & MF_HILITE) && !IS_MAGIC_ITEM(lpitem->text) && (!menuBar)) ? MERGEPAINT : SRCCOPY;
1301 BitBlt( hdc, left, top, w,
1302 h, hdcMem, 0, 0,
1303 rop);
1305 DeleteDC( hdcMem );
1307 return;
1310 /* No bitmap - process text if present */
1311 else if (IS_STRING_ITEM(lpitem->fType))
1313 register int i;
1314 HFONT hfontOld = 0;
1316 UINT uFormat = (menuBar) ?
1317 DT_CENTER | DT_VCENTER | DT_SINGLELINE :
1318 DT_LEFT | DT_VCENTER | DT_SINGLELINE;
1320 if ( lpitem->fState & MFS_DEFAULT )
1322 hfontOld = SelectObject( hdc, hMenuFontBold);
1325 if (menuBar)
1327 rect.left += MENU_BAR_ITEMS_SPACE / 2;
1328 rect.right -= MENU_BAR_ITEMS_SPACE / 2;
1329 i = strlenW( lpitem->text );
1331 else
1333 for (i = 0; lpitem->text[i]; i++)
1334 if ((lpitem->text[i] == '\t') || (lpitem->text[i] == '\b'))
1335 break;
1338 if( !(TWEAK_WineLook == WIN31_LOOK) && (lpitem->fState & MF_GRAYED))
1340 if (!(lpitem->fState & MF_HILITE) )
1342 ++rect.left; ++rect.top; ++rect.right; ++rect.bottom;
1343 SetTextColor(hdc, RGB(0xff, 0xff, 0xff));
1344 DrawTextW( hdc, lpitem->text, i, &rect, uFormat );
1345 --rect.left; --rect.top; --rect.right; --rect.bottom;
1347 SetTextColor(hdc, RGB(0x80, 0x80, 0x80));
1350 DrawTextW( hdc, lpitem->text, i, &rect, uFormat);
1352 /* paint the shortcut text */
1353 if (lpitem->text[i]) /* There's a tab or flush-right char */
1355 if (lpitem->text[i] == '\t')
1357 rect.left = lpitem->xTab;
1358 uFormat = DT_LEFT | DT_VCENTER | DT_SINGLELINE;
1360 else
1362 uFormat = DT_RIGHT | DT_VCENTER | DT_SINGLELINE;
1365 if( !(TWEAK_WineLook == WIN31_LOOK) && (lpitem->fState & MF_GRAYED))
1367 if (!(lpitem->fState & MF_HILITE) )
1369 ++rect.left; ++rect.top; ++rect.right; ++rect.bottom;
1370 SetTextColor(hdc, RGB(0xff, 0xff, 0xff));
1371 DrawTextW( hdc, lpitem->text + i + 1, -1, &rect, uFormat );
1372 --rect.left; --rect.top; --rect.right; --rect.bottom;
1374 SetTextColor(hdc, RGB(0x80, 0x80, 0x80));
1376 DrawTextW( hdc, lpitem->text + i + 1, -1, &rect, uFormat );
1379 if (hfontOld)
1380 SelectObject (hdc, hfontOld);
1385 /***********************************************************************
1386 * MENU_DrawPopupMenu
1388 * Paint a popup menu.
1390 static void MENU_DrawPopupMenu( HWND hwnd, HDC hdc, HMENU hmenu )
1392 HBRUSH hPrevBrush = 0;
1393 RECT rect;
1395 TRACE("wnd=0x%04x dc=0x%04x menu=0x%04x\n", hwnd, hdc, hmenu);
1397 GetClientRect( hwnd, &rect );
1399 if(TWEAK_WineLook == WIN31_LOOK)
1401 rect.bottom -= POPUP_YSHADE * GetSystemMetrics(SM_CYBORDER);
1402 rect.right -= POPUP_XSHADE * GetSystemMetrics(SM_CXBORDER);
1405 if((hPrevBrush = SelectObject( hdc, GetSysColorBrush(COLOR_MENU) ))
1406 && (SelectObject( hdc, hMenuFont)))
1408 HPEN hPrevPen;
1410 Rectangle( hdc, rect.left, rect.top, rect.right, rect.bottom );
1412 hPrevPen = SelectObject( hdc, GetStockObject( NULL_PEN ) );
1413 if( hPrevPen )
1415 INT ropPrev, i;
1416 POPUPMENU *menu;
1418 /* draw 3-d shade */
1419 if(TWEAK_WineLook == WIN31_LOOK) {
1420 SelectObject( hdc, hShadeBrush );
1421 SetBkMode( hdc, TRANSPARENT );
1422 ropPrev = SetROP2( hdc, R2_MASKPEN );
1424 i = rect.right; /* why SetBrushOrg() doesn't? */
1425 PatBlt( hdc, i & 0xfffffffe,
1426 rect.top + POPUP_YSHADE*GetSystemMetrics(SM_CYBORDER),
1427 i%2 + POPUP_XSHADE*GetSystemMetrics(SM_CXBORDER),
1428 rect.bottom - rect.top, 0x00a000c9 );
1429 i = rect.bottom;
1430 PatBlt( hdc, rect.left + POPUP_XSHADE*GetSystemMetrics(SM_CXBORDER),
1431 i & 0xfffffffe,rect.right - rect.left,
1432 i%2 + POPUP_YSHADE*GetSystemMetrics(SM_CYBORDER), 0x00a000c9 );
1433 SelectObject( hdc, hPrevPen );
1434 SelectObject( hdc, hPrevBrush );
1435 SetROP2( hdc, ropPrev );
1437 else
1438 DrawEdge (hdc, &rect, EDGE_RAISED, BF_RECT);
1440 /* draw menu items */
1442 menu = MENU_GetMenu( hmenu );
1443 if (menu && menu->nItems)
1445 MENUITEM *item;
1446 UINT u;
1448 for (u = menu->nItems, item = menu->items; u > 0; u--, item++)
1449 MENU_DrawMenuItem( hwnd, hmenu, menu->hwndOwner, hdc, item,
1450 menu->Height, FALSE, ODA_DRAWENTIRE );
1453 } else
1455 SelectObject( hdc, hPrevBrush );
1460 /***********************************************************************
1461 * MENU_DrawMenuBar
1463 * Paint a menu bar. Returns the height of the menu bar.
1464 * called from [windows/nonclient.c]
1466 UINT MENU_DrawMenuBar( HDC hDC, LPRECT lprect, HWND hwnd,
1467 BOOL suppress_draw)
1469 LPPOPUPMENU lppop;
1470 UINT i,retvalue;
1471 HFONT hfontOld = 0;
1472 HMENU hMenu = GetMenu(hwnd);
1474 lppop = MENU_GetMenu( hMenu );
1475 if (lppop == NULL || lprect == NULL)
1477 retvalue = GetSystemMetrics(SM_CYMENU);
1478 goto END;
1481 TRACE("(%04x, %p, %p)\n", hDC, lprect, lppop);
1483 hfontOld = SelectObject( hDC, hMenuFont);
1485 if (lppop->Height == 0)
1486 MENU_MenuBarCalcSize(hDC, lprect, lppop, hwnd);
1488 lprect->bottom = lprect->top + lppop->Height;
1490 if (suppress_draw)
1492 retvalue = lppop->Height;
1493 goto END;
1496 FillRect(hDC, lprect, GetSysColorBrush(COLOR_MENU) );
1498 if (TWEAK_WineLook == WIN31_LOOK)
1500 SelectObject( hDC, GetSysColorPen(COLOR_WINDOWFRAME) );
1501 MoveToEx( hDC, lprect->left, lprect->bottom, NULL );
1502 LineTo( hDC, lprect->right, lprect->bottom );
1504 else
1506 SelectObject( hDC, GetSysColorPen(COLOR_3DFACE));
1507 MoveToEx( hDC, lprect->left, lprect->bottom, NULL );
1508 LineTo( hDC, lprect->right, lprect->bottom );
1511 if (lppop->nItems == 0)
1513 retvalue = GetSystemMetrics(SM_CYMENU);
1514 goto END;
1517 for (i = 0; i < lppop->nItems; i++)
1519 MENU_DrawMenuItem( hwnd, hMenu, hwnd,
1520 hDC, &lppop->items[i], lppop->Height, TRUE, ODA_DRAWENTIRE );
1522 retvalue = lppop->Height;
1524 END:
1525 if (hfontOld) SelectObject (hDC, hfontOld);
1526 return retvalue;
1530 /***********************************************************************
1531 * MENU_ShowPopup
1533 * Display a popup menu.
1535 static BOOL MENU_ShowPopup( HWND hwndOwner, HMENU hmenu, UINT id,
1536 INT x, INT y, INT xanchor, INT yanchor )
1538 POPUPMENU *menu;
1539 UINT width, height;
1541 TRACE("owner=0x%04x hmenu=0x%04x id=0x%04x x=0x%04x y=0x%04x xa=0x%04x ya=0x%04x\n",
1542 hwndOwner, hmenu, id, x, y, xanchor, yanchor);
1544 if (!(menu = MENU_GetMenu( hmenu ))) return FALSE;
1545 if (menu->FocusedItem != NO_SELECTED_ITEM)
1547 menu->items[menu->FocusedItem].fState &= ~(MF_HILITE|MF_MOUSESELECT);
1548 menu->FocusedItem = NO_SELECTED_ITEM;
1551 /* store the owner for DrawItem */
1552 menu->hwndOwner = hwndOwner;
1555 MENU_PopupMenuCalcSize( menu, hwndOwner );
1557 /* adjust popup menu pos so that it fits within the desktop */
1559 width = menu->Width + GetSystemMetrics(SM_CXBORDER);
1560 height = menu->Height + GetSystemMetrics(SM_CYBORDER);
1562 if( x + width > GetSystemMetrics(SM_CXSCREEN ))
1564 if( xanchor )
1565 x -= width - xanchor;
1566 if( x + width > GetSystemMetrics(SM_CXSCREEN))
1567 x = GetSystemMetrics(SM_CXSCREEN) - width;
1569 if( x < 0 ) x = 0;
1571 if( y + height > GetSystemMetrics(SM_CYSCREEN ))
1573 if( yanchor )
1574 y -= height + yanchor;
1575 if( y + height > GetSystemMetrics(SM_CYSCREEN ))
1576 y = GetSystemMetrics(SM_CYSCREEN) - height;
1578 if( y < 0 ) y = 0;
1580 if( TWEAK_WineLook == WIN31_LOOK )
1582 width += POPUP_XSHADE * GetSystemMetrics(SM_CXBORDER); /* add space for shading */
1583 height += POPUP_YSHADE * GetSystemMetrics(SM_CYBORDER);
1586 /* NOTE: In Windows, top menu popup is not owned. */
1587 menu->hWnd = CreateWindowA( POPUPMENU_CLASS_ATOM, NULL,
1588 WS_POPUP, x, y, width, height,
1589 hwndOwner, 0, GetWindowLongA(hwndOwner,GWL_HINSTANCE),
1590 (LPVOID)hmenu );
1591 if( !menu->hWnd ) return FALSE;
1592 if (!top_popup) top_popup = menu->hWnd;
1594 /* Display the window */
1596 SetWindowPos( menu->hWnd, HWND_TOP, 0, 0, 0, 0,
1597 SWP_SHOWWINDOW | SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE );
1598 UpdateWindow( menu->hWnd );
1599 return TRUE;
1603 /***********************************************************************
1604 * MENU_SelectItem
1606 static void MENU_SelectItem( HWND hwndOwner, HMENU hmenu, UINT wIndex,
1607 BOOL sendMenuSelect, HMENU topmenu )
1609 LPPOPUPMENU lppop;
1610 HDC hdc;
1612 TRACE("owner=0x%04x menu=0x%04x index=0x%04x select=0x%04x\n", hwndOwner, hmenu, wIndex, sendMenuSelect);
1614 lppop = MENU_GetMenu( hmenu );
1615 if ((!lppop) || (!lppop->nItems) || (!lppop->hWnd)) return;
1617 if (lppop->FocusedItem == wIndex) return;
1618 if (lppop->wFlags & MF_POPUP) hdc = GetDC( lppop->hWnd );
1619 else hdc = GetDCEx( lppop->hWnd, 0, DCX_CACHE | DCX_WINDOW);
1621 SelectObject( hdc, hMenuFont);
1623 /* Clear previous highlighted item */
1624 if (lppop->FocusedItem != NO_SELECTED_ITEM)
1626 lppop->items[lppop->FocusedItem].fState &= ~(MF_HILITE|MF_MOUSESELECT);
1627 MENU_DrawMenuItem(lppop->hWnd, hmenu, hwndOwner, hdc,&lppop->items[lppop->FocusedItem],
1628 lppop->Height, !(lppop->wFlags & MF_POPUP),
1629 ODA_SELECT );
1632 /* Highlight new item (if any) */
1633 lppop->FocusedItem = wIndex;
1634 if (lppop->FocusedItem != NO_SELECTED_ITEM)
1636 if(!(lppop->items[wIndex].fType & MF_SEPARATOR)) {
1637 lppop->items[wIndex].fState |= MF_HILITE;
1638 MENU_DrawMenuItem( lppop->hWnd, hmenu, hwndOwner, hdc,
1639 &lppop->items[wIndex], lppop->Height,
1640 !(lppop->wFlags & MF_POPUP), ODA_SELECT );
1642 if (sendMenuSelect)
1644 MENUITEM *ip = &lppop->items[lppop->FocusedItem];
1645 SendMessageA( hwndOwner, WM_MENUSELECT,
1646 MAKELONG(ip->fType & MF_POPUP ? wIndex: ip->wID,
1647 ip->fType | ip->fState | MF_MOUSESELECT |
1648 (lppop->wFlags & MF_SYSMENU)), hmenu);
1651 else if (sendMenuSelect) {
1652 if(topmenu){
1653 int pos;
1654 if((pos=MENU_FindSubMenu(&topmenu, hmenu))!=NO_SELECTED_ITEM){
1655 POPUPMENU *ptm = MENU_GetMenu( topmenu );
1656 MENUITEM *ip = &ptm->items[pos];
1657 SendMessageA( hwndOwner, WM_MENUSELECT, MAKELONG(pos,
1658 ip->fType | ip->fState | MF_MOUSESELECT |
1659 (ptm->wFlags & MF_SYSMENU)), topmenu);
1663 ReleaseDC( lppop->hWnd, hdc );
1667 /***********************************************************************
1668 * MENU_MoveSelection
1670 * Moves currently selected item according to the offset parameter.
1671 * If there is no selection then it should select the last item if
1672 * offset is ITEM_PREV or the first item if offset is ITEM_NEXT.
1674 static void MENU_MoveSelection( HWND hwndOwner, HMENU hmenu, INT offset )
1676 INT i;
1677 POPUPMENU *menu;
1679 TRACE("hwnd=0x%04x hmenu=0x%04x off=0x%04x\n", hwndOwner, hmenu, offset);
1681 menu = MENU_GetMenu( hmenu );
1682 if ((!menu) || (!menu->items)) return;
1684 if ( menu->FocusedItem != NO_SELECTED_ITEM )
1686 if( menu->nItems == 1 ) return; else
1687 for (i = menu->FocusedItem + offset ; i >= 0 && i < menu->nItems
1688 ; i += offset)
1689 if (!(menu->items[i].fType & MF_SEPARATOR))
1691 MENU_SelectItem( hwndOwner, hmenu, i, TRUE, 0 );
1692 return;
1696 for ( i = (offset > 0) ? 0 : menu->nItems - 1;
1697 i >= 0 && i < menu->nItems ; i += offset)
1698 if (!(menu->items[i].fType & MF_SEPARATOR))
1700 MENU_SelectItem( hwndOwner, hmenu, i, TRUE, 0 );
1701 return;
1706 /**********************************************************************
1707 * MENU_SetItemData
1709 * Set an item flags, id and text ptr. Called by InsertMenu() and
1710 * ModifyMenu().
1712 static BOOL MENU_SetItemData( MENUITEM *item, UINT flags, UINT id,
1713 LPCWSTR str )
1715 LPWSTR prevText = IS_STRING_ITEM(item->fType) ? item->text : NULL;
1717 debug_print_menuitem("MENU_SetItemData from: ", item, "");
1718 TRACE("flags=%x str=%p\n", flags, str);
1720 if (IS_STRING_ITEM(flags))
1722 if (!str)
1724 flags |= MF_SEPARATOR;
1725 item->text = NULL;
1727 else
1729 LPWSTR text;
1730 /* Item beginning with a backspace is a help item */
1731 if (*str == '\b')
1733 flags |= MF_HELP;
1734 str++;
1736 if (!(text = HeapAlloc( GetProcessHeap(), 0, (strlenW(str)+1) * sizeof(WCHAR) )))
1737 return FALSE;
1738 strcpyW( text, str );
1739 item->text = text;
1742 else if (IS_BITMAP_ITEM(flags))
1743 item->text = (LPWSTR)(HBITMAP)LOWORD(str);
1744 else item->text = NULL;
1746 if (flags & MF_OWNERDRAW)
1747 item->dwItemData = (DWORD)str;
1748 else
1749 item->dwItemData = 0;
1751 if ((item->fType & MF_POPUP) && (flags & MF_POPUP) && (item->hSubMenu != id) )
1752 DestroyMenu( item->hSubMenu ); /* ModifyMenu() spec */
1754 if (flags & MF_POPUP)
1756 POPUPMENU *menu = MENU_GetMenu((UINT16)id);
1757 if (menu) menu->wFlags |= MF_POPUP;
1758 else
1760 item->wID = 0;
1761 item->hSubMenu = 0;
1762 item->fType = 0;
1763 item->fState = 0;
1764 return FALSE;
1768 item->wID = id;
1769 if (flags & MF_POPUP)
1770 item->hSubMenu = id;
1772 if ((item->fType & MF_POPUP) && !(flags & MF_POPUP) )
1773 flags |= MF_POPUP; /* keep popup */
1775 item->fType = flags & TYPE_MASK;
1776 item->fState = (flags & STATE_MASK) &
1777 ~(MF_HILITE | MF_MOUSESELECT | MF_BYPOSITION);
1780 /* Don't call SetRectEmpty here! */
1783 if (prevText) HeapFree( GetProcessHeap(), 0, prevText );
1785 debug_print_menuitem("MENU_SetItemData to : ", item, "");
1786 return TRUE;
1790 /**********************************************************************
1791 * MENU_InsertItem
1793 * Insert a new item into a menu.
1795 static MENUITEM *MENU_InsertItem( HMENU hMenu, UINT pos, UINT flags )
1797 MENUITEM *newItems;
1798 POPUPMENU *menu;
1800 if (!(menu = MENU_GetMenu(hMenu)))
1801 return NULL;
1803 /* Find where to insert new item */
1805 if (flags & MF_BYPOSITION) {
1806 if (pos > menu->nItems)
1807 pos = menu->nItems;
1808 } else {
1809 if (!MENU_FindItem( &hMenu, &pos, flags ))
1810 pos = menu->nItems;
1811 else {
1812 if (!(menu = MENU_GetMenu( hMenu )))
1813 return NULL;
1817 /* Create new items array */
1819 newItems = HeapAlloc( GetProcessHeap(), 0, sizeof(MENUITEM) * (menu->nItems+1) );
1820 if (!newItems)
1822 WARN("allocation failed\n" );
1823 return NULL;
1825 if (menu->nItems > 0)
1827 /* Copy the old array into the new one */
1828 if (pos > 0) memcpy( newItems, menu->items, pos * sizeof(MENUITEM) );
1829 if (pos < menu->nItems) memcpy( &newItems[pos+1], &menu->items[pos],
1830 (menu->nItems-pos)*sizeof(MENUITEM) );
1831 HeapFree( GetProcessHeap(), 0, menu->items );
1833 menu->items = newItems;
1834 menu->nItems++;
1835 memset( &newItems[pos], 0, sizeof(*newItems) );
1836 menu->Height = 0; /* force size recalculate */
1837 return &newItems[pos];
1841 /**********************************************************************
1842 * MENU_ParseResource
1844 * Parse a standard menu resource and add items to the menu.
1845 * Return a pointer to the end of the resource.
1847 static LPCSTR MENU_ParseResource( LPCSTR res, HMENU hMenu, BOOL unicode )
1849 WORD flags, id = 0;
1850 LPCSTR str;
1854 flags = GET_WORD(res);
1855 res += sizeof(WORD);
1856 if (!(flags & MF_POPUP))
1858 id = GET_WORD(res);
1859 res += sizeof(WORD);
1861 if (!IS_STRING_ITEM(flags))
1862 ERR("not a string item %04x\n", flags );
1863 str = res;
1864 if (!unicode) res += strlen(str) + 1;
1865 else res += (strlenW((LPCWSTR)str) + 1) * sizeof(WCHAR);
1866 if (flags & MF_POPUP)
1868 HMENU hSubMenu = CreatePopupMenu();
1869 if (!hSubMenu) return NULL;
1870 if (!(res = MENU_ParseResource( res, hSubMenu, unicode )))
1871 return NULL;
1872 if (!unicode) AppendMenuA( hMenu, flags, (UINT)hSubMenu, str );
1873 else AppendMenuW( hMenu, flags, (UINT)hSubMenu, (LPCWSTR)str );
1875 else /* Not a popup */
1877 if (!unicode) AppendMenuA( hMenu, flags, id, *str ? str : NULL );
1878 else AppendMenuW( hMenu, flags, id,
1879 *(LPCWSTR)str ? (LPCWSTR)str : NULL );
1881 } while (!(flags & MF_END));
1882 return res;
1886 /**********************************************************************
1887 * MENUEX_ParseResource
1889 * Parse an extended menu resource and add items to the menu.
1890 * Return a pointer to the end of the resource.
1892 static LPCSTR MENUEX_ParseResource( LPCSTR res, HMENU hMenu)
1894 WORD resinfo;
1895 do {
1896 MENUITEMINFOW mii;
1898 mii.cbSize = sizeof(mii);
1899 mii.fMask = MIIM_STATE | MIIM_ID | MIIM_TYPE;
1900 mii.fType = GET_DWORD(res);
1901 res += sizeof(DWORD);
1902 mii.fState = GET_DWORD(res);
1903 res += sizeof(DWORD);
1904 mii.wID = GET_DWORD(res);
1905 res += sizeof(DWORD);
1906 resinfo = GET_WORD(res); /* FIXME: for 16-bit apps this is a byte. */
1907 res += sizeof(WORD);
1908 /* Align the text on a word boundary. */
1909 res += (~((int)res - 1)) & 1;
1910 mii.dwTypeData = (LPWSTR) res;
1911 res += (1 + strlenW(mii.dwTypeData)) * sizeof(WCHAR);
1912 /* Align the following fields on a dword boundary. */
1913 res += (~((int)res - 1)) & 3;
1915 TRACE("Menu item: [%08x,%08x,%04x,%04x,%s]\n",
1916 mii.fType, mii.fState, mii.wID, resinfo, debugstr_w(mii.dwTypeData));
1918 if (resinfo & 1) { /* Pop-up? */
1919 /* DWORD helpid = GET_DWORD(res); FIXME: use this. */
1920 res += sizeof(DWORD);
1921 mii.hSubMenu = CreatePopupMenu();
1922 if (!mii.hSubMenu)
1923 return NULL;
1924 if (!(res = MENUEX_ParseResource(res, mii.hSubMenu))) {
1925 DestroyMenu(mii.hSubMenu);
1926 return NULL;
1928 mii.fMask |= MIIM_SUBMENU;
1929 mii.fType |= MF_POPUP;
1931 InsertMenuItemW(hMenu, -1, MF_BYPOSITION, &mii);
1932 } while (!(resinfo & MF_END));
1933 return res;
1937 /***********************************************************************
1938 * MENU_GetSubPopup
1940 * Return the handle of the selected sub-popup menu (if any).
1942 static HMENU MENU_GetSubPopup( HMENU hmenu )
1944 POPUPMENU *menu;
1945 MENUITEM *item;
1947 menu = MENU_GetMenu( hmenu );
1949 if ((!menu) || (menu->FocusedItem == NO_SELECTED_ITEM)) return 0;
1951 item = &menu->items[menu->FocusedItem];
1952 if ((item->fType & MF_POPUP) && (item->fState & MF_MOUSESELECT))
1953 return item->hSubMenu;
1954 return 0;
1958 /***********************************************************************
1959 * MENU_HideSubPopups
1961 * Hide the sub-popup menus of this menu.
1963 static void MENU_HideSubPopups( HWND hwndOwner, HMENU hmenu,
1964 BOOL sendMenuSelect )
1966 POPUPMENU *menu = MENU_GetMenu( hmenu );
1968 TRACE("owner=0x%04x hmenu=0x%04x 0x%04x\n", hwndOwner, hmenu, sendMenuSelect);
1970 if (menu && top_popup)
1972 HMENU hsubmenu;
1973 POPUPMENU *submenu;
1974 MENUITEM *item;
1976 if (menu->FocusedItem != NO_SELECTED_ITEM)
1978 item = &menu->items[menu->FocusedItem];
1979 if (!(item->fType & MF_POPUP) ||
1980 !(item->fState & MF_MOUSESELECT)) return;
1981 item->fState &= ~MF_MOUSESELECT;
1982 hsubmenu = item->hSubMenu;
1983 } else return;
1985 submenu = MENU_GetMenu( hsubmenu );
1986 MENU_HideSubPopups( hwndOwner, hsubmenu, FALSE );
1987 MENU_SelectItem( hwndOwner, hsubmenu, NO_SELECTED_ITEM, sendMenuSelect, 0 );
1988 DestroyWindow( submenu->hWnd );
1989 submenu->hWnd = 0;
1994 /***********************************************************************
1995 * MENU_ShowSubPopup
1997 * Display the sub-menu of the selected item of this menu.
1998 * Return the handle of the submenu, or hmenu if no submenu to display.
2000 static HMENU MENU_ShowSubPopup( HWND hwndOwner, HMENU hmenu,
2001 BOOL selectFirst, UINT wFlags )
2003 RECT rect;
2004 POPUPMENU *menu;
2005 MENUITEM *item;
2006 HDC hdc;
2008 TRACE("owner=0x%04x hmenu=0x%04x 0x%04x\n", hwndOwner, hmenu, selectFirst);
2010 if (!(menu = MENU_GetMenu( hmenu ))) return hmenu;
2012 if (menu->FocusedItem == NO_SELECTED_ITEM) return hmenu;
2014 item = &menu->items[menu->FocusedItem];
2015 if (!(item->fType & MF_POPUP) || (item->fState & (MF_GRAYED | MF_DISABLED)))
2016 return hmenu;
2018 /* message must be sent before using item,
2019 because nearly everything may be changed by the application ! */
2021 /* Send WM_INITMENUPOPUP message only if TPM_NONOTIFY flag is not specified */
2022 if (!(wFlags & TPM_NONOTIFY))
2023 SendMessageA( hwndOwner, WM_INITMENUPOPUP, item->hSubMenu,
2024 MAKELONG( menu->FocusedItem, IS_SYSTEM_MENU(menu) ));
2026 item = &menu->items[menu->FocusedItem];
2027 rect = item->rect;
2029 /* correct item if modified as a reaction to WM_INITMENUPOPUP message */
2030 if (!(item->fState & MF_HILITE))
2032 if (menu->wFlags & MF_POPUP) hdc = GetDC( menu->hWnd );
2033 else hdc = GetDCEx( menu->hWnd, 0, DCX_CACHE | DCX_WINDOW);
2035 SelectObject( hdc, hMenuFont);
2037 item->fState |= MF_HILITE;
2038 MENU_DrawMenuItem( menu->hWnd, hmenu, hwndOwner, hdc, item, menu->Height, !(menu->wFlags & MF_POPUP), ODA_DRAWENTIRE );
2039 ReleaseDC( menu->hWnd, hdc );
2041 if (!item->rect.top && !item->rect.left && !item->rect.bottom && !item->rect.right)
2042 item->rect = rect;
2044 item->fState |= MF_MOUSESELECT;
2046 if (IS_SYSTEM_MENU(menu))
2048 MENU_InitSysMenuPopup(item->hSubMenu,
2049 GetWindowLongA( menu->hWnd, GWL_STYLE ),
2050 GetClassLongA( menu->hWnd, GCL_STYLE));
2052 NC_GetSysPopupPos( menu->hWnd, &rect );
2053 rect.top = rect.bottom;
2054 rect.right = GetSystemMetrics(SM_CXSIZE);
2055 rect.bottom = GetSystemMetrics(SM_CYSIZE);
2057 else
2059 GetWindowRect( menu->hWnd, &rect );
2060 if (menu->wFlags & MF_POPUP)
2062 rect.left += item->rect.right - GetSystemMetrics(SM_CXBORDER);
2063 rect.top += item->rect.top;
2064 rect.right = item->rect.left - item->rect.right + GetSystemMetrics(SM_CXBORDER);
2065 rect.bottom = item->rect.top - item->rect.bottom;
2067 else
2069 rect.left += item->rect.left;
2070 rect.top += item->rect.bottom;
2071 rect.right = item->rect.right - item->rect.left;
2072 rect.bottom = item->rect.bottom - item->rect.top;
2076 MENU_ShowPopup( hwndOwner, item->hSubMenu, menu->FocusedItem,
2077 rect.left, rect.top, rect.right, rect.bottom );
2078 if (selectFirst)
2079 MENU_MoveSelection( hwndOwner, item->hSubMenu, ITEM_NEXT );
2080 return item->hSubMenu;
2085 /**********************************************************************
2086 * MENU_IsMenuActive
2088 BOOL MENU_IsMenuActive(void)
2090 return (top_popup != 0);
2093 /***********************************************************************
2094 * MENU_PtMenu
2096 * Walks menu chain trying to find a menu pt maps to.
2098 static HMENU MENU_PtMenu( HMENU hMenu, POINT pt )
2100 POPUPMENU *menu = MENU_GetMenu( hMenu );
2101 UINT item = menu->FocusedItem;
2102 HMENU ret;
2104 /* try subpopup first (if any) */
2105 ret = (item != NO_SELECTED_ITEM &&
2106 (menu->items[item].fType & MF_POPUP) &&
2107 (menu->items[item].fState & MF_MOUSESELECT))
2108 ? MENU_PtMenu(menu->items[item].hSubMenu, pt) : 0;
2110 if (!ret) /* check the current window (avoiding WM_HITTEST) */
2112 INT ht = NC_HandleNCHitTest( menu->hWnd, pt );
2113 if( menu->wFlags & MF_POPUP )
2115 if (ht != HTNOWHERE && ht != HTERROR) ret = hMenu;
2117 else if (ht == HTSYSMENU)
2118 ret = get_win_sys_menu( menu->hWnd );
2119 else if (ht == HTMENU)
2120 ret = GetMenu( menu->hWnd );
2122 return ret;
2125 /***********************************************************************
2126 * MENU_ExecFocusedItem
2128 * Execute a menu item (for instance when user pressed Enter).
2129 * Return the wID of the executed item. Otherwise, -1 indicating
2130 * that no menu item was executed;
2131 * Have to receive the flags for the TrackPopupMenu options to avoid
2132 * sending unwanted message.
2135 static INT MENU_ExecFocusedItem( MTRACKER* pmt, HMENU hMenu, UINT wFlags )
2137 MENUITEM *item;
2138 POPUPMENU *menu = MENU_GetMenu( hMenu );
2140 TRACE("%p hmenu=0x%04x\n", pmt, hMenu);
2142 if (!menu || !menu->nItems ||
2143 (menu->FocusedItem == NO_SELECTED_ITEM)) return -1;
2145 item = &menu->items[menu->FocusedItem];
2147 TRACE("%08x %08x %08x\n",
2148 hMenu, item->wID, item->hSubMenu);
2150 if (!(item->fType & MF_POPUP))
2152 if (!(item->fState & (MF_GRAYED | MF_DISABLED)) && !(item->fType & MF_SEPARATOR))
2154 /* If TPM_RETURNCMD is set you return the id, but
2155 do not send a message to the owner */
2156 if(!(wFlags & TPM_RETURNCMD))
2158 if( menu->wFlags & MF_SYSMENU )
2159 PostMessageA( pmt->hOwnerWnd, WM_SYSCOMMAND, item->wID,
2160 MAKELPARAM((INT16)pmt->pt.x, (INT16)pmt->pt.y) );
2161 else
2162 PostMessageA( pmt->hOwnerWnd, WM_COMMAND, item->wID, 0 );
2164 return item->wID;
2167 else
2168 pmt->hCurrentMenu = MENU_ShowSubPopup(pmt->hOwnerWnd, hMenu, TRUE, wFlags);
2170 return -1;
2173 /***********************************************************************
2174 * MENU_SwitchTracking
2176 * Helper function for menu navigation routines.
2178 static void MENU_SwitchTracking( MTRACKER* pmt, HMENU hPtMenu, UINT id )
2180 POPUPMENU *ptmenu = MENU_GetMenu( hPtMenu );
2181 POPUPMENU *topmenu = MENU_GetMenu( pmt->hTopMenu );
2183 TRACE("%p hmenu=0x%04x 0x%04x\n", pmt, hPtMenu, id);
2185 if( pmt->hTopMenu != hPtMenu &&
2186 !((ptmenu->wFlags | topmenu->wFlags) & MF_POPUP) )
2188 /* both are top level menus (system and menu-bar) */
2189 MENU_HideSubPopups( pmt->hOwnerWnd, pmt->hTopMenu, FALSE );
2190 MENU_SelectItem( pmt->hOwnerWnd, pmt->hTopMenu, NO_SELECTED_ITEM, FALSE, 0 );
2191 pmt->hTopMenu = hPtMenu;
2193 else MENU_HideSubPopups( pmt->hOwnerWnd, hPtMenu, FALSE );
2194 MENU_SelectItem( pmt->hOwnerWnd, hPtMenu, id, TRUE, 0 );
2198 /***********************************************************************
2199 * MENU_ButtonDown
2201 * Return TRUE if we can go on with menu tracking.
2203 static BOOL MENU_ButtonDown( MTRACKER* pmt, HMENU hPtMenu, UINT wFlags )
2205 TRACE("%p hmenu=0x%04x\n", pmt, hPtMenu);
2207 if (hPtMenu)
2209 UINT id = 0;
2210 POPUPMENU *ptmenu = MENU_GetMenu( hPtMenu );
2211 MENUITEM *item;
2213 if( IS_SYSTEM_MENU(ptmenu) )
2214 item = ptmenu->items;
2215 else
2216 item = MENU_FindItemByCoords( ptmenu, pmt->pt, &id );
2218 if( item )
2220 if( ptmenu->FocusedItem != id )
2221 MENU_SwitchTracking( pmt, hPtMenu, id );
2223 /* If the popup menu is not already "popped" */
2224 if(!(item->fState & MF_MOUSESELECT ))
2226 pmt->hCurrentMenu = MENU_ShowSubPopup( pmt->hOwnerWnd, hPtMenu, FALSE, wFlags );
2228 /* In win31, a newly popped menu always remains opened for the next buttonup */
2229 if(TWEAK_WineLook == WIN31_LOOK)
2230 ptmenu->bTimeToHide = FALSE;
2233 return TRUE;
2235 /* Else the click was on the menu bar, finish the tracking */
2237 return FALSE;
2240 /***********************************************************************
2241 * MENU_ButtonUp
2243 * Return the value of MENU_ExecFocusedItem if
2244 * the selected item was not a popup. Else open the popup.
2245 * A -1 return value indicates that we go on with menu tracking.
2248 static INT MENU_ButtonUp( MTRACKER* pmt, HMENU hPtMenu, UINT wFlags)
2250 TRACE("%p hmenu=0x%04x\n", pmt, hPtMenu);
2252 if (hPtMenu)
2254 UINT id = 0;
2255 POPUPMENU *ptmenu = MENU_GetMenu( hPtMenu );
2256 MENUITEM *item;
2258 if( IS_SYSTEM_MENU(ptmenu) )
2259 item = ptmenu->items;
2260 else
2261 item = MENU_FindItemByCoords( ptmenu, pmt->pt, &id );
2263 if( item && (ptmenu->FocusedItem == id ))
2265 if( !(item->fType & MF_POPUP) )
2266 return MENU_ExecFocusedItem( pmt, hPtMenu, wFlags);
2268 /* If we are dealing with the top-level menu */
2269 /* and this is a click on an already "popped" item: */
2270 /* Stop the menu tracking and close the opened submenus */
2271 if((pmt->hTopMenu == hPtMenu) && (ptmenu->bTimeToHide == TRUE))
2272 return 0;
2274 ptmenu->bTimeToHide = TRUE;
2276 return -1;
2280 /***********************************************************************
2281 * MENU_MouseMove
2283 * Return TRUE if we can go on with menu tracking.
2285 static BOOL MENU_MouseMove( MTRACKER* pmt, HMENU hPtMenu, UINT wFlags )
2287 UINT id = NO_SELECTED_ITEM;
2288 POPUPMENU *ptmenu = NULL;
2290 if( hPtMenu )
2292 ptmenu = MENU_GetMenu( hPtMenu );
2293 if( IS_SYSTEM_MENU(ptmenu) )
2294 id = 0;
2295 else
2296 MENU_FindItemByCoords( ptmenu, pmt->pt, &id );
2299 if( id == NO_SELECTED_ITEM )
2301 MENU_SelectItem( pmt->hOwnerWnd, pmt->hCurrentMenu,
2302 NO_SELECTED_ITEM, TRUE, pmt->hTopMenu);
2305 else if( ptmenu->FocusedItem != id )
2307 MENU_SwitchTracking( pmt, hPtMenu, id );
2308 pmt->hCurrentMenu = MENU_ShowSubPopup(pmt->hOwnerWnd, hPtMenu, FALSE, wFlags);
2310 return TRUE;
2314 /***********************************************************************
2315 * MENU_DoNextMenu
2317 * NOTE: WM_NEXTMENU documented in Win32 is a bit different.
2319 static LRESULT MENU_DoNextMenu( MTRACKER* pmt, UINT vk )
2321 POPUPMENU *menu = MENU_GetMenu( pmt->hTopMenu );
2323 if( (vk == VK_LEFT && menu->FocusedItem == 0 ) ||
2324 (vk == VK_RIGHT && menu->FocusedItem == menu->nItems - 1))
2326 MDINEXTMENU next_menu;
2327 HMENU hNewMenu;
2328 HWND hNewWnd;
2329 UINT id = 0;
2331 next_menu.hmenuIn = (IS_SYSTEM_MENU(menu)) ? GetSubMenu(pmt->hTopMenu,0) : pmt->hTopMenu;
2332 next_menu.hmenuNext = 0;
2333 next_menu.hwndNext = 0;
2334 SendMessageW( pmt->hOwnerWnd, WM_NEXTMENU, vk, (LPARAM)&next_menu );
2336 TRACE("%04x [%04x] -> %04x [%04x]\n",
2337 pmt->hCurrentMenu, pmt->hOwnerWnd, next_menu.hmenuNext, next_menu.hwndNext );
2339 if (!next_menu.hmenuNext || !next_menu.hwndNext)
2341 DWORD style = GetWindowLongA( pmt->hOwnerWnd, GWL_STYLE );
2342 hNewWnd = pmt->hOwnerWnd;
2343 if( IS_SYSTEM_MENU(menu) )
2345 /* switch to the menu bar */
2347 if(style & WS_CHILD || !(hNewMenu = GetMenu(hNewWnd))) return FALSE;
2349 if( vk == VK_LEFT )
2351 menu = MENU_GetMenu( hNewMenu );
2352 id = menu->nItems - 1;
2355 else if (style & WS_SYSMENU )
2357 /* switch to the system menu */
2358 hNewMenu = get_win_sys_menu( hNewWnd );
2360 else return FALSE;
2362 else /* application returned a new menu to switch to */
2364 hNewMenu = next_menu.hmenuNext;
2365 hNewWnd = WIN_GetFullHandle( next_menu.hwndNext );
2367 if( IsMenu(hNewMenu) && IsWindow(hNewWnd) )
2369 DWORD style = GetWindowLongA( hNewWnd, GWL_STYLE );
2371 if (style & WS_SYSMENU &&
2372 GetSubMenu(get_win_sys_menu(hNewWnd), 0) == hNewMenu )
2374 /* get the real system menu */
2375 hNewMenu = get_win_sys_menu(hNewWnd);
2377 else if (style & WS_CHILD || GetMenu(hNewWnd) != hNewMenu )
2379 /* FIXME: Not sure what to do here;
2380 * perhaps try to track hNewMenu as a popup? */
2382 TRACE(" -- got confused.\n");
2383 return FALSE;
2386 else return FALSE;
2389 if( hNewMenu != pmt->hTopMenu )
2391 MENU_SelectItem( pmt->hOwnerWnd, pmt->hTopMenu, NO_SELECTED_ITEM,
2392 FALSE, 0 );
2393 if( pmt->hCurrentMenu != pmt->hTopMenu )
2394 MENU_HideSubPopups( pmt->hOwnerWnd, pmt->hTopMenu, FALSE );
2397 if( hNewWnd != pmt->hOwnerWnd )
2399 ReleaseCapture();
2400 pmt->hOwnerWnd = hNewWnd;
2401 EVENT_Capture( pmt->hOwnerWnd, HTMENU );
2404 pmt->hTopMenu = pmt->hCurrentMenu = hNewMenu; /* all subpopups are hidden */
2405 MENU_SelectItem( pmt->hOwnerWnd, pmt->hTopMenu, id, TRUE, 0 );
2407 return TRUE;
2409 return FALSE;
2412 /***********************************************************************
2413 * MENU_SuspendPopup
2415 * The idea is not to show the popup if the next input message is
2416 * going to hide it anyway.
2418 static BOOL MENU_SuspendPopup( MTRACKER* pmt, UINT16 uMsg )
2420 MSG msg;
2422 msg.hwnd = pmt->hOwnerWnd;
2424 PeekMessageA( &msg, 0, 0, 0, PM_NOYIELD | PM_REMOVE);
2425 pmt->trackFlags |= TF_SKIPREMOVE;
2427 switch( uMsg )
2429 case WM_KEYDOWN:
2430 PeekMessageA( &msg, 0, 0, 0, PM_NOYIELD | PM_NOREMOVE);
2431 if( msg.message == WM_KEYUP || msg.message == WM_PAINT )
2433 PeekMessageA( &msg, 0, 0, 0, PM_NOYIELD | PM_REMOVE);
2434 PeekMessageA( &msg, 0, 0, 0, PM_NOYIELD | PM_NOREMOVE);
2435 if( msg.message == WM_KEYDOWN &&
2436 (msg.wParam == VK_LEFT || msg.wParam == VK_RIGHT))
2438 pmt->trackFlags |= TF_SUSPENDPOPUP;
2439 return TRUE;
2442 break;
2445 /* failures go through this */
2446 pmt->trackFlags &= ~TF_SUSPENDPOPUP;
2447 return FALSE;
2450 /***********************************************************************
2451 * MENU_KeyEscape
2453 * Handle a VK_ESCAPE key event in a menu.
2455 static BOOL MENU_KeyEscape(MTRACKER* pmt, UINT wFlags)
2457 BOOL bEndMenu = TRUE;
2459 if (pmt->hCurrentMenu != pmt->hTopMenu)
2461 POPUPMENU *menu = MENU_GetMenu(pmt->hCurrentMenu);
2463 if (menu->wFlags & MF_POPUP)
2465 HMENU hmenutmp, hmenuprev;
2467 hmenuprev = hmenutmp = pmt->hTopMenu;
2469 /* close topmost popup */
2470 while (hmenutmp != pmt->hCurrentMenu)
2472 hmenuprev = hmenutmp;
2473 hmenutmp = MENU_GetSubPopup( hmenuprev );
2476 MENU_HideSubPopups( pmt->hOwnerWnd, hmenuprev, TRUE );
2477 pmt->hCurrentMenu = hmenuprev;
2478 bEndMenu = FALSE;
2482 return bEndMenu;
2485 /***********************************************************************
2486 * MENU_KeyLeft
2488 * Handle a VK_LEFT key event in a menu.
2490 static void MENU_KeyLeft( MTRACKER* pmt, UINT wFlags )
2492 POPUPMENU *menu;
2493 HMENU hmenutmp, hmenuprev;
2494 UINT prevcol;
2496 hmenuprev = hmenutmp = pmt->hTopMenu;
2497 menu = MENU_GetMenu( hmenutmp );
2499 /* Try to move 1 column left (if possible) */
2500 if( (prevcol = MENU_GetStartOfPrevColumn( pmt->hCurrentMenu )) !=
2501 NO_SELECTED_ITEM ) {
2503 MENU_SelectItem( pmt->hOwnerWnd, pmt->hCurrentMenu,
2504 prevcol, TRUE, 0 );
2505 return;
2508 /* close topmost popup */
2509 while (hmenutmp != pmt->hCurrentMenu)
2511 hmenuprev = hmenutmp;
2512 hmenutmp = MENU_GetSubPopup( hmenuprev );
2515 MENU_HideSubPopups( pmt->hOwnerWnd, hmenuprev, TRUE );
2516 pmt->hCurrentMenu = hmenuprev;
2518 if ( (hmenuprev == pmt->hTopMenu) && !(menu->wFlags & MF_POPUP) )
2520 /* move menu bar selection if no more popups are left */
2522 if( !MENU_DoNextMenu( pmt, VK_LEFT) )
2523 MENU_MoveSelection( pmt->hOwnerWnd, pmt->hTopMenu, ITEM_PREV );
2525 if ( hmenuprev != hmenutmp || pmt->trackFlags & TF_SUSPENDPOPUP )
2527 /* A sublevel menu was displayed - display the next one
2528 * unless there is another displacement coming up */
2530 if( !MENU_SuspendPopup( pmt, WM_KEYDOWN ) )
2531 pmt->hCurrentMenu = MENU_ShowSubPopup(pmt->hOwnerWnd,
2532 pmt->hTopMenu, TRUE, wFlags);
2538 /***********************************************************************
2539 * MENU_KeyRight
2541 * Handle a VK_RIGHT key event in a menu.
2543 static void MENU_KeyRight( MTRACKER* pmt, UINT wFlags )
2545 HMENU hmenutmp;
2546 POPUPMENU *menu = MENU_GetMenu( pmt->hTopMenu );
2547 UINT nextcol;
2549 TRACE("MENU_KeyRight called, cur %x (%s), top %x (%s).\n",
2550 pmt->hCurrentMenu,
2551 debugstr_w((MENU_GetMenu(pmt->hCurrentMenu))->
2552 items[0].text),
2553 pmt->hTopMenu, debugstr_w(menu->items[0].text) );
2555 if ( (menu->wFlags & MF_POPUP) || (pmt->hCurrentMenu != pmt->hTopMenu))
2557 /* If already displaying a popup, try to display sub-popup */
2559 hmenutmp = pmt->hCurrentMenu;
2560 pmt->hCurrentMenu = MENU_ShowSubPopup(pmt->hOwnerWnd, hmenutmp, TRUE, wFlags);
2562 /* if subpopup was displayed then we are done */
2563 if (hmenutmp != pmt->hCurrentMenu) return;
2566 /* Check to see if there's another column */
2567 if( (nextcol = MENU_GetStartOfNextColumn( pmt->hCurrentMenu )) !=
2568 NO_SELECTED_ITEM ) {
2569 TRACE("Going to %d.\n", nextcol );
2570 MENU_SelectItem( pmt->hOwnerWnd, pmt->hCurrentMenu,
2571 nextcol, TRUE, 0 );
2572 return;
2575 if (!(menu->wFlags & MF_POPUP)) /* menu bar tracking */
2577 if( pmt->hCurrentMenu != pmt->hTopMenu )
2579 MENU_HideSubPopups( pmt->hOwnerWnd, pmt->hTopMenu, FALSE );
2580 hmenutmp = pmt->hCurrentMenu = pmt->hTopMenu;
2581 } else hmenutmp = 0;
2583 /* try to move to the next item */
2584 if( !MENU_DoNextMenu( pmt, VK_RIGHT) )
2585 MENU_MoveSelection( pmt->hOwnerWnd, pmt->hTopMenu, ITEM_NEXT );
2587 if( hmenutmp || pmt->trackFlags & TF_SUSPENDPOPUP )
2588 if( !MENU_SuspendPopup(pmt, WM_KEYDOWN) )
2589 pmt->hCurrentMenu = MENU_ShowSubPopup(pmt->hOwnerWnd,
2590 pmt->hTopMenu, TRUE, wFlags);
2594 /***********************************************************************
2595 * MENU_TrackMenu
2597 * Menu tracking code.
2599 static INT MENU_TrackMenu( HMENU hmenu, UINT wFlags, INT x, INT y,
2600 HWND hwnd, const RECT *lprect )
2602 MSG msg;
2603 POPUPMENU *menu;
2604 BOOL fRemove;
2605 INT executedMenuId = -1;
2606 MTRACKER mt;
2607 BOOL enterIdleSent = FALSE;
2609 mt.trackFlags = 0;
2610 mt.hCurrentMenu = hmenu;
2611 mt.hTopMenu = hmenu;
2612 mt.hOwnerWnd = WIN_GetFullHandle( hwnd );
2613 mt.pt.x = x;
2614 mt.pt.y = y;
2616 TRACE("hmenu=0x%04x flags=0x%08x (%d,%d) hwnd=0x%04x (%d,%d)-(%d,%d)\n",
2617 hmenu, wFlags, x, y, hwnd, (lprect) ? lprect->left : 0, (lprect) ? lprect->top : 0,
2618 (lprect) ? lprect->right : 0, (lprect) ? lprect->bottom : 0);
2620 fEndMenu = FALSE;
2621 if (!(menu = MENU_GetMenu( hmenu ))) return FALSE;
2623 if (wFlags & TPM_BUTTONDOWN)
2625 /* Get the result in order to start the tracking or not */
2626 fRemove = MENU_ButtonDown( &mt, hmenu, wFlags );
2627 fEndMenu = !fRemove;
2630 EVENT_Capture( mt.hOwnerWnd, HTMENU );
2632 while (!fEndMenu)
2634 menu = MENU_GetMenu( mt.hCurrentMenu );
2635 if (!menu) /* sometimes happens if I do a window manager close */
2636 break;
2638 /* we have to keep the message in the queue until it's
2639 * clear that menu loop is not over yet. */
2641 for (;;)
2643 if (PeekMessageA( &msg, 0, 0, 0, PM_NOREMOVE ))
2645 if (!CallMsgFilterA( &msg, MSGF_MENU )) break;
2646 /* remove the message from the queue */
2647 PeekMessageA( &msg, 0, msg.message, msg.message, PM_REMOVE );
2649 else
2651 if (!enterIdleSent)
2653 HWND win = (wFlags & TPM_ENTERIDLEEX && menu->wFlags & MF_POPUP) ? menu->hWnd : 0;
2654 enterIdleSent = TRUE;
2655 SendMessageW( mt.hOwnerWnd, WM_ENTERIDLE, MSGF_MENU, (LPARAM)win );
2657 WaitMessage();
2661 /* check if EndMenu() tried to cancel us, by posting this message */
2662 if(msg.message == WM_CANCELMODE)
2664 /* we are now out of the loop */
2665 fEndMenu = TRUE;
2667 /* remove the message from the queue */
2668 PeekMessageA( &msg, 0, msg.message, msg.message, PM_REMOVE );
2670 /* break out of internal loop, ala ESCAPE */
2671 break;
2674 TranslateMessage( &msg );
2675 mt.pt = msg.pt;
2677 if ( (msg.hwnd==menu->hWnd) || (msg.message!=WM_TIMER) )
2678 enterIdleSent=FALSE;
2680 fRemove = FALSE;
2681 if ((msg.message >= WM_MOUSEFIRST) && (msg.message <= WM_MOUSELAST))
2684 * use the mouse coordinates in lParam instead of those in the MSG
2685 * struct to properly handle synthetic messages. lParam coords are
2686 * relative to client area, so they must be converted; since they can
2687 * be negative, we must use SLOWORD/SHIWORD instead of LOWORD/HIWORD.
2689 mt.pt.x = SLOWORD(msg.lParam);
2690 mt.pt.y = SHIWORD(msg.lParam);
2691 ClientToScreen(msg.hwnd,&mt.pt);
2693 /* Find a menu for this mouse event */
2694 hmenu = MENU_PtMenu( mt.hTopMenu, mt.pt );
2696 switch(msg.message)
2698 /* no WM_NC... messages in captured state */
2700 case WM_RBUTTONDBLCLK:
2701 case WM_RBUTTONDOWN:
2702 if (!(wFlags & TPM_RIGHTBUTTON)) break;
2703 /* fall through */
2704 case WM_LBUTTONDBLCLK:
2705 case WM_LBUTTONDOWN:
2706 /* If the message belongs to the menu, removes it from the queue */
2707 /* Else, end menu tracking */
2708 fRemove = MENU_ButtonDown( &mt, hmenu, wFlags );
2709 fEndMenu = !fRemove;
2710 break;
2712 case WM_RBUTTONUP:
2713 if (!(wFlags & TPM_RIGHTBUTTON)) break;
2714 /* fall through */
2715 case WM_LBUTTONUP:
2716 /* Check if a menu was selected by the mouse */
2717 if (hmenu)
2719 executedMenuId = MENU_ButtonUp( &mt, hmenu, wFlags);
2721 /* End the loop if executedMenuId is an item ID */
2722 /* or if the job was done (executedMenuId = 0). */
2723 fEndMenu = fRemove = (executedMenuId != -1);
2725 /* No menu was selected by the mouse */
2726 /* if the function was called by TrackPopupMenu, continue
2727 with the menu tracking. If not, stop it */
2728 else
2729 fEndMenu = ((wFlags & TPM_POPUPMENU) ? FALSE : TRUE);
2731 break;
2733 case WM_MOUSEMOVE:
2734 /* In win95 winelook, the selected menu item must be changed every time the
2735 mouse moves. In Win31 winelook, the mouse button has to be held down */
2737 if ( (TWEAK_WineLook > WIN31_LOOK) ||
2738 ( (msg.wParam & MK_LBUTTON) ||
2739 ((wFlags & TPM_RIGHTBUTTON) && (msg.wParam & MK_RBUTTON))) )
2741 fEndMenu |= !MENU_MouseMove( &mt, hmenu, wFlags );
2743 } /* switch(msg.message) - mouse */
2745 else if ((msg.message >= WM_KEYFIRST) && (msg.message <= WM_KEYLAST))
2747 fRemove = TRUE; /* Keyboard messages are always removed */
2748 switch(msg.message)
2750 case WM_KEYDOWN:
2751 switch(msg.wParam)
2753 case VK_HOME:
2754 case VK_END:
2755 MENU_SelectItem( mt.hOwnerWnd, mt.hCurrentMenu,
2756 NO_SELECTED_ITEM, FALSE, 0 );
2757 /* fall through */
2758 case VK_UP:
2759 MENU_MoveSelection( mt.hOwnerWnd, mt.hCurrentMenu,
2760 (msg.wParam == VK_HOME)? ITEM_NEXT : ITEM_PREV );
2761 break;
2763 case VK_DOWN: /* If on menu bar, pull-down the menu */
2765 menu = MENU_GetMenu( mt.hCurrentMenu );
2766 if (!(menu->wFlags & MF_POPUP))
2767 mt.hCurrentMenu = MENU_ShowSubPopup(mt.hOwnerWnd, mt.hTopMenu, TRUE, wFlags);
2768 else /* otherwise try to move selection */
2769 MENU_MoveSelection( mt.hOwnerWnd, mt.hCurrentMenu, ITEM_NEXT );
2770 break;
2772 case VK_LEFT:
2773 MENU_KeyLeft( &mt, wFlags );
2774 break;
2776 case VK_RIGHT:
2777 MENU_KeyRight( &mt, wFlags );
2778 break;
2780 case VK_ESCAPE:
2781 fEndMenu = MENU_KeyEscape(&mt, wFlags);
2782 break;
2784 case VK_F1:
2786 HELPINFO hi;
2787 hi.cbSize = sizeof(HELPINFO);
2788 hi.iContextType = HELPINFO_MENUITEM;
2789 if (menu->FocusedItem == NO_SELECTED_ITEM)
2790 hi.iCtrlId = 0;
2791 else
2792 hi.iCtrlId = menu->items[menu->FocusedItem].wID;
2793 hi.hItemHandle = hmenu;
2794 hi.dwContextId = menu->dwContextHelpID;
2795 hi.MousePos = msg.pt;
2796 SendMessageA(hwnd, WM_HELP, 0, (LPARAM)&hi);
2797 break;
2800 default:
2801 break;
2803 break; /* WM_KEYDOWN */
2805 case WM_SYSKEYDOWN:
2806 switch(msg.wParam)
2808 case VK_MENU:
2809 fEndMenu = TRUE;
2810 break;
2813 break; /* WM_SYSKEYDOWN */
2815 case WM_CHAR:
2817 UINT pos;
2819 if (msg.wParam == '\r' || msg.wParam == ' ')
2821 executedMenuId = MENU_ExecFocusedItem(&mt,mt.hCurrentMenu, wFlags);
2822 fEndMenu = (executedMenuId != -1);
2824 break;
2827 /* Hack to avoid control chars. */
2828 /* We will find a better way real soon... */
2829 if ((msg.wParam <= 32) || (msg.wParam >= 127)) break;
2831 pos = MENU_FindItemByKey( mt.hOwnerWnd, mt.hCurrentMenu,
2832 LOWORD(msg.wParam), FALSE );
2833 if (pos == (UINT)-2) fEndMenu = TRUE;
2834 else if (pos == (UINT)-1) MessageBeep(0);
2835 else
2837 MENU_SelectItem( mt.hOwnerWnd, mt.hCurrentMenu, pos,
2838 TRUE, 0 );
2839 executedMenuId = MENU_ExecFocusedItem(&mt,mt.hCurrentMenu, wFlags);
2840 fEndMenu = (executedMenuId != -1);
2843 break;
2844 } /* switch(msg.message) - kbd */
2846 else
2848 DispatchMessageA( &msg );
2851 if (!fEndMenu) fRemove = TRUE;
2853 /* finally remove message from the queue */
2855 if (fRemove && !(mt.trackFlags & TF_SKIPREMOVE) )
2856 PeekMessageA( &msg, 0, msg.message, msg.message, PM_REMOVE );
2857 else mt.trackFlags &= ~TF_SKIPREMOVE;
2860 ReleaseCapture();
2862 /* If dropdown is still painted and the close box is clicked on
2863 then the menu will be destroyed as part of the DispatchMessage above.
2864 This will then invalidate the menu handle in mt.hTopMenu. We should
2865 check for this first. */
2866 if( IsMenu( mt.hTopMenu ) )
2868 menu = MENU_GetMenu( mt.hTopMenu );
2870 if( IsWindow( mt.hOwnerWnd ) )
2872 MENU_HideSubPopups( mt.hOwnerWnd, mt.hTopMenu, FALSE );
2874 if (menu && menu->wFlags & MF_POPUP)
2876 DestroyWindow( menu->hWnd );
2877 menu->hWnd = 0;
2879 MENU_SelectItem( mt.hOwnerWnd, mt.hTopMenu, NO_SELECTED_ITEM, FALSE, 0 );
2880 SendMessageA( mt.hOwnerWnd, WM_MENUSELECT, MAKELONG(0,0xffff), 0 );
2883 /* Reset the variable for hiding menu */
2884 if( menu ) menu->bTimeToHide = FALSE;
2887 /* The return value is only used by TrackPopupMenu */
2888 return ((executedMenuId != -1) ? executedMenuId : 0);
2891 /***********************************************************************
2892 * MENU_InitTracking
2894 static BOOL MENU_InitTracking(HWND hWnd, HMENU hMenu, BOOL bPopup, UINT wFlags)
2896 TRACE("hwnd=0x%04x hmenu=0x%04x\n", hWnd, hMenu);
2898 HideCaret(0);
2900 /* Send WM_ENTERMENULOOP and WM_INITMENU message only if TPM_NONOTIFY flag is not specified */
2901 if (!(wFlags & TPM_NONOTIFY))
2902 SendMessageA( hWnd, WM_ENTERMENULOOP, bPopup, 0 );
2904 SendMessageA( hWnd, WM_SETCURSOR, hWnd, HTCAPTION );
2906 if (!(wFlags & TPM_NONOTIFY))
2908 POPUPMENU *menu;
2909 SendMessageA( hWnd, WM_INITMENU, hMenu, 0 );
2910 if ((menu = MENU_GetMenu( hMenu )) && (!menu->Height))
2911 { /* app changed/recreated menu bar entries in WM_INITMENU
2912 Recalculate menu sizes else clicks will not work */
2913 SetWindowPos( hWnd, 0, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE |
2914 SWP_NOACTIVATE | SWP_NOZORDER | SWP_FRAMECHANGED );
2918 return TRUE;
2920 /***********************************************************************
2921 * MENU_ExitTracking
2923 static BOOL MENU_ExitTracking(HWND hWnd)
2925 TRACE("hwnd=0x%04x\n", hWnd);
2927 SendMessageA( hWnd, WM_EXITMENULOOP, 0, 0 );
2928 ShowCaret(0);
2929 return TRUE;
2932 /***********************************************************************
2933 * MENU_TrackMouseMenuBar
2935 * Menu-bar tracking upon a mouse event. Called from NC_HandleSysCommand().
2937 void MENU_TrackMouseMenuBar( HWND hWnd, INT ht, POINT pt )
2939 HMENU hMenu = (ht == HTSYSMENU) ? get_win_sys_menu( hWnd ) : GetMenu( hWnd );
2940 UINT wFlags = TPM_ENTERIDLEEX | TPM_BUTTONDOWN | TPM_LEFTALIGN | TPM_LEFTBUTTON;
2942 TRACE("wnd=%x ht=0x%04x (%ld,%ld)\n", hWnd, ht, pt.x, pt.y);
2944 if (IsMenu(hMenu))
2946 MENU_InitTracking( hWnd, hMenu, FALSE, wFlags );
2947 MENU_TrackMenu( hMenu, wFlags, pt.x, pt.y, hWnd, NULL );
2948 MENU_ExitTracking(hWnd);
2953 /***********************************************************************
2954 * MENU_TrackKbdMenuBar
2956 * Menu-bar tracking upon a keyboard event. Called from NC_HandleSysCommand().
2958 void MENU_TrackKbdMenuBar( HWND hwnd, UINT wParam, INT vkey)
2960 UINT uItem = NO_SELECTED_ITEM;
2961 HMENU hTrackMenu;
2962 UINT wFlags = TPM_ENTERIDLEEX | TPM_LEFTALIGN | TPM_LEFTBUTTON;
2964 /* find window that has a menu */
2966 while (GetWindowLongA( hwnd, GWL_STYLE ) & WS_CHILD)
2967 if (!(hwnd = GetParent( hwnd ))) return;
2969 /* check if we have to track a system menu */
2971 hTrackMenu = GetMenu( hwnd );
2972 if (!hTrackMenu || IsIconic(hwnd) || vkey == VK_SPACE )
2974 if (!(GetWindowLongA( hwnd, GWL_STYLE ) & WS_SYSMENU)) return;
2975 hTrackMenu = get_win_sys_menu( hwnd );
2976 uItem = 0;
2977 wParam |= HTSYSMENU; /* prevent item lookup */
2980 if (!IsMenu( hTrackMenu )) return;
2982 MENU_InitTracking( hwnd, hTrackMenu, FALSE, wFlags );
2984 if( vkey && vkey != VK_SPACE )
2986 uItem = MENU_FindItemByKey( hwnd, hTrackMenu, vkey, (wParam & HTSYSMENU) );
2987 if( uItem >= (UINT)(-2) )
2989 if( uItem == (UINT)(-1) ) MessageBeep(0);
2990 hTrackMenu = 0;
2994 if( hTrackMenu )
2996 MENU_SelectItem( hwnd, hTrackMenu, uItem, TRUE, 0 );
2998 if( uItem == NO_SELECTED_ITEM )
2999 MENU_MoveSelection( hwnd, hTrackMenu, ITEM_NEXT );
3000 else if( vkey )
3001 PostMessageA( hwnd, WM_KEYDOWN, VK_DOWN, 0L );
3003 MENU_TrackMenu( hTrackMenu, wFlags, 0, 0, hwnd, NULL );
3005 MENU_ExitTracking( hwnd );
3009 /**********************************************************************
3010 * TrackPopupMenu (USER.416)
3012 BOOL16 WINAPI TrackPopupMenu16( HMENU16 hMenu, UINT16 wFlags, INT16 x, INT16 y,
3013 INT16 nReserved, HWND16 hWnd, const RECT16 *lpRect )
3015 RECT r;
3016 if (lpRect)
3017 CONV_RECT16TO32( lpRect, &r );
3018 return TrackPopupMenu( hMenu, wFlags, x, y, nReserved, hWnd,
3019 lpRect ? &r : NULL );
3023 /**********************************************************************
3024 * TrackPopupMenu (USER32.@)
3026 * Like the win32 API, the function return the command ID only if the
3027 * flag TPM_RETURNCMD is on.
3030 BOOL WINAPI TrackPopupMenu( HMENU hMenu, UINT wFlags, INT x, INT y,
3031 INT nReserved, HWND hWnd, const RECT *lpRect )
3033 BOOL ret = FALSE;
3035 MENU_InitTracking(hWnd, hMenu, TRUE, wFlags);
3037 /* Send WM_INITMENUPOPUP message only if TPM_NONOTIFY flag is not specified */
3038 if (!(wFlags & TPM_NONOTIFY))
3039 SendMessageA( hWnd, WM_INITMENUPOPUP, hMenu, 0);
3041 if (MENU_ShowPopup( hWnd, hMenu, 0, x, y, 0, 0 ))
3042 ret = MENU_TrackMenu( hMenu, wFlags | TPM_POPUPMENU, 0, 0, hWnd, lpRect );
3043 MENU_ExitTracking(hWnd);
3045 if( (!(wFlags & TPM_RETURNCMD)) && (ret != FALSE) )
3046 ret = 1;
3048 return ret;
3051 /**********************************************************************
3052 * TrackPopupMenuEx (USER32.@)
3054 BOOL WINAPI TrackPopupMenuEx( HMENU hMenu, UINT wFlags, INT x, INT y,
3055 HWND hWnd, LPTPMPARAMS lpTpm )
3057 FIXME("not fully implemented\n" );
3058 return TrackPopupMenu( hMenu, wFlags, x, y, 0, hWnd,
3059 lpTpm ? &lpTpm->rcExclude : NULL );
3062 /***********************************************************************
3063 * PopupMenuWndProc
3065 * NOTE: Windows has totally different (and undocumented) popup wndproc.
3067 static LRESULT WINAPI PopupMenuWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
3069 TRACE("hwnd=0x%04x msg=0x%04x wp=0x%04x lp=0x%08lx\n",
3070 hwnd, message, wParam, lParam);
3072 switch(message)
3074 case WM_CREATE:
3076 CREATESTRUCTW *cs = (CREATESTRUCTW*)lParam;
3077 SetWindowLongW( hwnd, 0, (LONG)cs->lpCreateParams );
3078 return 0;
3081 case WM_MOUSEACTIVATE: /* We don't want to be activated */
3082 return MA_NOACTIVATE;
3084 case WM_PAINT:
3086 PAINTSTRUCT ps;
3087 BeginPaint( hwnd, &ps );
3088 MENU_DrawPopupMenu( hwnd, ps.hdc,
3089 (HMENU)GetWindowLongA( hwnd, 0 ) );
3090 EndPaint( hwnd, &ps );
3091 return 0;
3093 case WM_ERASEBKGND:
3094 return 1;
3096 case WM_DESTROY:
3097 /* zero out global pointer in case resident popup window was destroyed. */
3098 if (hwnd == top_popup) top_popup = 0;
3099 break;
3101 case WM_SHOWWINDOW:
3103 if( wParam )
3105 if (!GetWindowLongW( hwnd, 0 )) ERR("no menu to display\n");
3107 else
3108 SetWindowLongW( hwnd, 0, 0 );
3109 break;
3111 case MM_SETMENUHANDLE:
3112 SetWindowLongW( hwnd, 0, wParam );
3113 break;
3115 case MM_GETMENUHANDLE:
3116 return GetWindowLongW( hwnd, 0 );
3118 default:
3119 return DefWindowProcW( hwnd, message, wParam, lParam );
3121 return 0;
3125 /***********************************************************************
3126 * MENU_GetMenuBarHeight
3128 * Compute the size of the menu bar height. Used by NC_HandleNCCalcSize().
3130 UINT MENU_GetMenuBarHeight( HWND hwnd, UINT menubarWidth,
3131 INT orgX, INT orgY )
3133 HDC hdc;
3134 RECT rectBar;
3135 LPPOPUPMENU lppop;
3137 TRACE("HWND 0x%x, width %d, at (%d, %d).\n",
3138 hwnd, menubarWidth, orgX, orgY );
3140 if (!(lppop = MENU_GetMenu( GetMenu(hwnd) ))) return 0;
3142 hdc = GetDCEx( hwnd, 0, DCX_CACHE | DCX_WINDOW );
3143 SelectObject( hdc, hMenuFont);
3144 SetRect(&rectBar, orgX, orgY, orgX+menubarWidth, orgY+GetSystemMetrics(SM_CYMENU));
3145 MENU_MenuBarCalcSize( hdc, &rectBar, lppop, hwnd );
3146 ReleaseDC( hwnd, hdc );
3147 return lppop->Height;
3151 /*******************************************************************
3152 * ChangeMenu (USER.153)
3154 BOOL16 WINAPI ChangeMenu16( HMENU16 hMenu, UINT16 pos, SEGPTR data,
3155 UINT16 id, UINT16 flags )
3157 TRACE("menu=%04x pos=%d data=%08lx id=%04x flags=%04x\n",
3158 hMenu, pos, (DWORD)data, id, flags );
3159 if (flags & MF_APPEND) return AppendMenu16( hMenu, flags & ~MF_APPEND,
3160 id, data );
3162 /* FIXME: Word passes the item id in 'pos' and 0 or 0xffff as id */
3163 /* for MF_DELETE. We should check the parameters for all others */
3164 /* MF_* actions also (anybody got a doc on ChangeMenu?). */
3166 if (flags & MF_DELETE) return DeleteMenu16(hMenu, pos, flags & ~MF_DELETE);
3167 if (flags & MF_CHANGE) return ModifyMenu16(hMenu, pos, flags & ~MF_CHANGE,
3168 id, data );
3169 if (flags & MF_REMOVE) return RemoveMenu16(hMenu,
3170 flags & MF_BYPOSITION ? pos : id,
3171 flags & ~MF_REMOVE );
3172 /* Default: MF_INSERT */
3173 return InsertMenu16( hMenu, pos, flags, id, data );
3177 /*******************************************************************
3178 * ChangeMenuA (USER32.@)
3180 BOOL WINAPI ChangeMenuA( HMENU hMenu, UINT pos, LPCSTR data,
3181 UINT id, UINT flags )
3183 TRACE("menu=%08x pos=%d data=%08lx id=%08x flags=%08x\n",
3184 hMenu, pos, (DWORD)data, id, flags );
3185 if (flags & MF_APPEND) return AppendMenuA( hMenu, flags & ~MF_APPEND,
3186 id, data );
3187 if (flags & MF_DELETE) return DeleteMenu(hMenu, pos, flags & ~MF_DELETE);
3188 if (flags & MF_CHANGE) return ModifyMenuA(hMenu, pos, flags & ~MF_CHANGE,
3189 id, data );
3190 if (flags & MF_REMOVE) return RemoveMenu( hMenu,
3191 flags & MF_BYPOSITION ? pos : id,
3192 flags & ~MF_REMOVE );
3193 /* Default: MF_INSERT */
3194 return InsertMenuA( hMenu, pos, flags, id, data );
3198 /*******************************************************************
3199 * ChangeMenuW (USER32.@)
3201 BOOL WINAPI ChangeMenuW( HMENU hMenu, UINT pos, LPCWSTR data,
3202 UINT id, UINT flags )
3204 TRACE("menu=%08x pos=%d data=%08lx id=%08x flags=%08x\n",
3205 hMenu, pos, (DWORD)data, id, flags );
3206 if (flags & MF_APPEND) return AppendMenuW( hMenu, flags & ~MF_APPEND,
3207 id, data );
3208 if (flags & MF_DELETE) return DeleteMenu(hMenu, pos, flags & ~MF_DELETE);
3209 if (flags & MF_CHANGE) return ModifyMenuW(hMenu, pos, flags & ~MF_CHANGE,
3210 id, data );
3211 if (flags & MF_REMOVE) return RemoveMenu( hMenu,
3212 flags & MF_BYPOSITION ? pos : id,
3213 flags & ~MF_REMOVE );
3214 /* Default: MF_INSERT */
3215 return InsertMenuW( hMenu, pos, flags, id, data );
3219 /*******************************************************************
3220 * CheckMenuItem (USER.154)
3222 BOOL16 WINAPI CheckMenuItem16( HMENU16 hMenu, UINT16 id, UINT16 flags )
3224 return (BOOL16)CheckMenuItem( hMenu, id, flags );
3228 /*******************************************************************
3229 * CheckMenuItem (USER32.@)
3231 DWORD WINAPI CheckMenuItem( HMENU hMenu, UINT id, UINT flags )
3233 MENUITEM *item;
3234 DWORD ret;
3236 TRACE("menu=%04x id=%04x flags=%04x\n", hMenu, id, flags );
3237 if (!(item = MENU_FindItem( &hMenu, &id, flags ))) return -1;
3238 ret = item->fState & MF_CHECKED;
3239 if (flags & MF_CHECKED) item->fState |= MF_CHECKED;
3240 else item->fState &= ~MF_CHECKED;
3241 return ret;
3245 /**********************************************************************
3246 * EnableMenuItem (USER.155)
3248 UINT16 WINAPI EnableMenuItem16( HMENU16 hMenu, UINT16 wItemID, UINT16 wFlags )
3250 return EnableMenuItem( hMenu, wItemID, wFlags );
3254 /**********************************************************************
3255 * EnableMenuItem (USER32.@)
3257 UINT WINAPI EnableMenuItem( HMENU hMenu, UINT wItemID, UINT wFlags )
3259 UINT oldflags;
3260 MENUITEM *item;
3261 POPUPMENU *menu;
3263 TRACE("(%04x, %04X, %04X) !\n",
3264 hMenu, wItemID, wFlags);
3266 /* Get the Popupmenu to access the owner menu */
3267 if (!(menu = MENU_GetMenu(hMenu)))
3268 return (UINT)-1;
3270 if (!(item = MENU_FindItem( &hMenu, &wItemID, wFlags )))
3271 return (UINT)-1;
3273 oldflags = item->fState & (MF_GRAYED | MF_DISABLED);
3274 item->fState ^= (oldflags ^ wFlags) & (MF_GRAYED | MF_DISABLED);
3276 /* In win95 if the close item in the system menu change update the close button */
3277 if (TWEAK_WineLook == WIN95_LOOK)
3278 if((item->wID == SC_CLOSE) && (oldflags != wFlags))
3280 if (menu->hSysMenuOwner != 0)
3282 POPUPMENU* parentMenu;
3284 /* Get the parent menu to access*/
3285 if (!(parentMenu = MENU_GetMenu(menu->hSysMenuOwner)))
3286 return (UINT)-1;
3288 /* Refresh the frame to reflect the change*/
3289 SetWindowPos(parentMenu->hWnd, 0, 0, 0, 0, 0,
3290 SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER);
3294 return oldflags;
3298 /*******************************************************************
3299 * GetMenuString (USER.161)
3301 INT16 WINAPI GetMenuString16( HMENU16 hMenu, UINT16 wItemID,
3302 LPSTR str, INT16 nMaxSiz, UINT16 wFlags )
3304 return GetMenuStringA( hMenu, wItemID, str, nMaxSiz, wFlags );
3308 /*******************************************************************
3309 * GetMenuStringA (USER32.@)
3311 INT WINAPI GetMenuStringA(
3312 HMENU hMenu, /* [in] menuhandle */
3313 UINT wItemID, /* [in] menu item (dep. on wFlags) */
3314 LPSTR str, /* [out] outbuffer. If NULL, func returns entry length*/
3315 INT nMaxSiz, /* [in] length of buffer. if 0, func returns entry len*/
3316 UINT wFlags /* [in] MF_ flags */
3318 MENUITEM *item;
3320 TRACE("menu=%04x item=%04x ptr=%p len=%d flags=%04x\n",
3321 hMenu, wItemID, str, nMaxSiz, wFlags );
3322 if (!(item = MENU_FindItem( &hMenu, &wItemID, wFlags ))) return 0;
3323 if (!IS_STRING_ITEM(item->fType)) return 0;
3324 if (!str || !nMaxSiz) return strlenW(item->text);
3325 str[0] = '\0';
3326 if (!WideCharToMultiByte( CP_ACP, 0, item->text, -1, str, nMaxSiz, NULL, NULL ))
3327 str[nMaxSiz-1] = 0;
3328 TRACE("returning '%s'\n", str );
3329 return strlen(str);
3333 /*******************************************************************
3334 * GetMenuStringW (USER32.@)
3336 INT WINAPI GetMenuStringW( HMENU hMenu, UINT wItemID,
3337 LPWSTR str, INT nMaxSiz, UINT wFlags )
3339 MENUITEM *item;
3341 TRACE("menu=%04x item=%04x ptr=%p len=%d flags=%04x\n",
3342 hMenu, wItemID, str, nMaxSiz, wFlags );
3343 if (!(item = MENU_FindItem( &hMenu, &wItemID, wFlags ))) return 0;
3344 if (!IS_STRING_ITEM(item->fType)) return 0;
3345 if (!str || !nMaxSiz) return strlenW(item->text);
3346 str[0] = '\0';
3347 lstrcpynW( str, item->text, nMaxSiz );
3348 return strlenW(str);
3352 /**********************************************************************
3353 * HiliteMenuItem (USER.162)
3355 BOOL16 WINAPI HiliteMenuItem16( HWND16 hWnd, HMENU16 hMenu, UINT16 wItemID,
3356 UINT16 wHilite )
3358 return HiliteMenuItem( hWnd, hMenu, wItemID, wHilite );
3362 /**********************************************************************
3363 * HiliteMenuItem (USER32.@)
3365 BOOL WINAPI HiliteMenuItem( HWND hWnd, HMENU hMenu, UINT wItemID,
3366 UINT wHilite )
3368 LPPOPUPMENU menu;
3369 TRACE("(%04x, %04x, %04x, %04x);\n",
3370 hWnd, hMenu, wItemID, wHilite);
3371 if (!MENU_FindItem( &hMenu, &wItemID, wHilite )) return FALSE;
3372 if (!(menu = MENU_GetMenu(hMenu))) return FALSE;
3373 if (menu->FocusedItem == wItemID) return TRUE;
3374 MENU_HideSubPopups( hWnd, hMenu, FALSE );
3375 MENU_SelectItem( hWnd, hMenu, wItemID, TRUE, 0 );
3376 return TRUE;
3380 /**********************************************************************
3381 * GetMenuState (USER.250)
3383 UINT16 WINAPI GetMenuState16( HMENU16 hMenu, UINT16 wItemID, UINT16 wFlags )
3385 return GetMenuState( hMenu, wItemID, wFlags );
3389 /**********************************************************************
3390 * GetMenuState (USER32.@)
3392 UINT WINAPI GetMenuState( HMENU hMenu, UINT wItemID, UINT wFlags )
3394 MENUITEM *item;
3395 TRACE("(menu=%04x, id=%04x, flags=%04x);\n",
3396 hMenu, wItemID, wFlags);
3397 if (!(item = MENU_FindItem( &hMenu, &wItemID, wFlags ))) return -1;
3398 debug_print_menuitem (" item: ", item, "");
3399 if (item->fType & MF_POPUP)
3401 POPUPMENU *menu = MENU_GetMenu( item->hSubMenu );
3402 if (!menu) return -1;
3403 else return (menu->nItems << 8) | ((item->fState|item->fType) & 0xff);
3405 else
3407 /* We used to (from way back then) mask the result to 0xff. */
3408 /* I don't know why and it seems wrong as the documented */
3409 /* return flag MF_SEPARATOR is outside that mask. */
3410 return (item->fType | item->fState);
3415 /**********************************************************************
3416 * GetMenuItemCount (USER.263)
3418 INT16 WINAPI GetMenuItemCount16( HMENU16 hMenu )
3420 LPPOPUPMENU menu = MENU_GetMenu(hMenu);
3421 if (!menu) return -1;
3422 TRACE("(%04x) returning %d\n",
3423 hMenu, menu->nItems );
3424 return menu->nItems;
3428 /**********************************************************************
3429 * GetMenuItemCount (USER32.@)
3431 INT WINAPI GetMenuItemCount( HMENU hMenu )
3433 LPPOPUPMENU menu = MENU_GetMenu(hMenu);
3434 if (!menu) return -1;
3435 TRACE("(%04x) returning %d\n",
3436 hMenu, menu->nItems );
3437 return menu->nItems;
3440 /**********************************************************************
3441 * GetMenuItemID (USER.264)
3443 UINT16 WINAPI GetMenuItemID16( HMENU16 hMenu, INT16 nPos )
3445 return (UINT16) GetMenuItemID (hMenu, nPos);
3448 /**********************************************************************
3449 * GetMenuItemID (USER32.@)
3451 UINT WINAPI GetMenuItemID( HMENU hMenu, INT nPos )
3453 MENUITEM * lpmi;
3455 if (!(lpmi = MENU_FindItem(&hMenu,&nPos,MF_BYPOSITION))) return -1;
3456 if (lpmi->fType & MF_POPUP) return -1;
3457 return lpmi->wID;
3461 /*******************************************************************
3462 * InsertMenu (USER.410)
3464 BOOL16 WINAPI InsertMenu16( HMENU16 hMenu, UINT16 pos, UINT16 flags,
3465 UINT16 id, SEGPTR data )
3467 UINT pos32 = (UINT)pos;
3468 if ((pos == (UINT16)-1) && (flags & MF_BYPOSITION)) pos32 = (UINT)-1;
3469 if (IS_STRING_ITEM(flags) && data)
3470 return InsertMenuA( hMenu, pos32, flags, id, MapSL(data) );
3471 return InsertMenuA( hMenu, pos32, flags, id, (LPSTR)data );
3475 /*******************************************************************
3476 * InsertMenuW (USER32.@)
3478 BOOL WINAPI InsertMenuW( HMENU hMenu, UINT pos, UINT flags,
3479 UINT id, LPCWSTR str )
3481 MENUITEM *item;
3483 if (IS_STRING_ITEM(flags) && str)
3484 TRACE("hMenu %04x, pos %d, flags %08x, "
3485 "id %04x, str %s\n",
3486 hMenu, pos, flags, id, debugstr_w(str) );
3487 else TRACE("hMenu %04x, pos %d, flags %08x, "
3488 "id %04x, str %08lx (not a string)\n",
3489 hMenu, pos, flags, id, (DWORD)str );
3491 if (!(item = MENU_InsertItem( hMenu, pos, flags ))) return FALSE;
3493 if (!(MENU_SetItemData( item, flags, id, str )))
3495 RemoveMenu( hMenu, pos, flags );
3496 return FALSE;
3499 if (flags & MF_POPUP) /* Set the MF_POPUP flag on the popup-menu */
3500 (MENU_GetMenu((HMENU16)id))->wFlags |= MF_POPUP;
3502 item->hCheckBit = item->hUnCheckBit = 0;
3503 return TRUE;
3507 /*******************************************************************
3508 * InsertMenuA (USER32.@)
3510 BOOL WINAPI InsertMenuA( HMENU hMenu, UINT pos, UINT flags,
3511 UINT id, LPCSTR str )
3513 BOOL ret = FALSE;
3515 if (IS_STRING_ITEM(flags) && str)
3517 INT len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
3518 LPWSTR newstr = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
3519 if (newstr)
3521 MultiByteToWideChar( CP_ACP, 0, str, -1, newstr, len );
3522 ret = InsertMenuW( hMenu, pos, flags, id, newstr );
3523 HeapFree( GetProcessHeap(), 0, newstr );
3525 return ret;
3527 else return InsertMenuW( hMenu, pos, flags, id, (LPCWSTR)str );
3531 /*******************************************************************
3532 * AppendMenu (USER.411)
3534 BOOL16 WINAPI AppendMenu16(HMENU16 hMenu, UINT16 flags, UINT16 id, SEGPTR data)
3536 return InsertMenu16( hMenu, -1, flags | MF_BYPOSITION, id, data );
3540 /*******************************************************************
3541 * AppendMenuA (USER32.@)
3543 BOOL WINAPI AppendMenuA( HMENU hMenu, UINT flags,
3544 UINT id, LPCSTR data )
3546 return InsertMenuA( hMenu, -1, flags | MF_BYPOSITION, id, data );
3550 /*******************************************************************
3551 * AppendMenuW (USER32.@)
3553 BOOL WINAPI AppendMenuW( HMENU hMenu, UINT flags,
3554 UINT id, LPCWSTR data )
3556 return InsertMenuW( hMenu, -1, flags | MF_BYPOSITION, id, data );
3560 /**********************************************************************
3561 * RemoveMenu (USER.412)
3563 BOOL16 WINAPI RemoveMenu16( HMENU16 hMenu, UINT16 nPos, UINT16 wFlags )
3565 return RemoveMenu( hMenu, nPos, wFlags );
3569 /**********************************************************************
3570 * RemoveMenu (USER32.@)
3572 BOOL WINAPI RemoveMenu( HMENU hMenu, UINT nPos, UINT wFlags )
3574 LPPOPUPMENU menu;
3575 MENUITEM *item;
3577 TRACE("(menu=%04x pos=%04x flags=%04x)\n",hMenu, nPos, wFlags);
3578 if (!(item = MENU_FindItem( &hMenu, &nPos, wFlags ))) return FALSE;
3579 if (!(menu = MENU_GetMenu(hMenu))) return FALSE;
3581 /* Remove item */
3583 MENU_FreeItemData( item );
3585 if (--menu->nItems == 0)
3587 HeapFree( GetProcessHeap(), 0, menu->items );
3588 menu->items = NULL;
3590 else
3592 while(nPos < menu->nItems)
3594 *item = *(item+1);
3595 item++;
3596 nPos++;
3598 menu->items = HeapReAlloc( GetProcessHeap(), 0, menu->items,
3599 menu->nItems * sizeof(MENUITEM) );
3601 return TRUE;
3605 /**********************************************************************
3606 * DeleteMenu (USER.413)
3608 BOOL16 WINAPI DeleteMenu16( HMENU16 hMenu, UINT16 nPos, UINT16 wFlags )
3610 return DeleteMenu( hMenu, nPos, wFlags );
3614 /**********************************************************************
3615 * DeleteMenu (USER32.@)
3617 BOOL WINAPI DeleteMenu( HMENU hMenu, UINT nPos, UINT wFlags )
3619 MENUITEM *item = MENU_FindItem( &hMenu, &nPos, wFlags );
3620 if (!item) return FALSE;
3621 if (item->fType & MF_POPUP) DestroyMenu( item->hSubMenu );
3622 /* nPos is now the position of the item */
3623 RemoveMenu( hMenu, nPos, wFlags | MF_BYPOSITION );
3624 return TRUE;
3628 /*******************************************************************
3629 * ModifyMenu (USER.414)
3631 BOOL16 WINAPI ModifyMenu16( HMENU16 hMenu, UINT16 pos, UINT16 flags,
3632 UINT16 id, SEGPTR data )
3634 if (IS_STRING_ITEM(flags))
3635 return ModifyMenuA( hMenu, pos, flags, id, MapSL(data) );
3636 return ModifyMenuA( hMenu, pos, flags, id, (LPSTR)data );
3640 /*******************************************************************
3641 * ModifyMenuW (USER32.@)
3643 BOOL WINAPI ModifyMenuW( HMENU hMenu, UINT pos, UINT flags,
3644 UINT id, LPCWSTR str )
3646 MENUITEM *item;
3648 if (IS_STRING_ITEM(flags))
3650 TRACE("%04x %d %04x %04x %s\n",
3651 hMenu, pos, flags, id, debugstr_w(str) );
3652 if (!str) return FALSE;
3654 else
3656 TRACE("%04x %d %04x %04x %08lx\n",
3657 hMenu, pos, flags, id, (DWORD)str );
3660 if (!(item = MENU_FindItem( &hMenu, &pos, flags ))) return FALSE;
3661 return MENU_SetItemData( item, flags, id, str );
3665 /*******************************************************************
3666 * ModifyMenuA (USER32.@)
3668 BOOL WINAPI ModifyMenuA( HMENU hMenu, UINT pos, UINT flags,
3669 UINT id, LPCSTR str )
3671 BOOL ret = FALSE;
3673 if (IS_STRING_ITEM(flags) && str)
3675 INT len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
3676 LPWSTR newstr = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
3677 if (newstr)
3679 MultiByteToWideChar( CP_ACP, 0, str, -1, newstr, len );
3680 ret = ModifyMenuW( hMenu, pos, flags, id, newstr );
3681 HeapFree( GetProcessHeap(), 0, newstr );
3683 return ret;
3685 else return ModifyMenuW( hMenu, pos, flags, id, (LPCWSTR)str );
3689 /**********************************************************************
3690 * CreatePopupMenu (USER.415)
3692 HMENU16 WINAPI CreatePopupMenu16(void)
3694 return CreatePopupMenu();
3698 /**********************************************************************
3699 * CreatePopupMenu (USER32.@)
3701 HMENU WINAPI CreatePopupMenu(void)
3703 HMENU hmenu;
3704 POPUPMENU *menu;
3706 if (!(hmenu = CreateMenu())) return 0;
3707 menu = MENU_GetMenu( hmenu );
3708 menu->wFlags |= MF_POPUP;
3709 menu->bTimeToHide = FALSE;
3710 return hmenu;
3714 /**********************************************************************
3715 * GetMenuCheckMarkDimensions (USER.417)
3716 * GetMenuCheckMarkDimensions (USER32.@)
3718 DWORD WINAPI GetMenuCheckMarkDimensions(void)
3720 return MAKELONG( GetSystemMetrics(SM_CXMENUCHECK), GetSystemMetrics(SM_CYMENUCHECK) );
3724 /**********************************************************************
3725 * SetMenuItemBitmaps (USER.418)
3727 BOOL16 WINAPI SetMenuItemBitmaps16( HMENU16 hMenu, UINT16 nPos, UINT16 wFlags,
3728 HBITMAP16 hNewUnCheck, HBITMAP16 hNewCheck)
3730 return SetMenuItemBitmaps( hMenu, nPos, wFlags, hNewUnCheck, hNewCheck );
3734 /**********************************************************************
3735 * SetMenuItemBitmaps (USER32.@)
3737 BOOL WINAPI SetMenuItemBitmaps( HMENU hMenu, UINT nPos, UINT wFlags,
3738 HBITMAP hNewUnCheck, HBITMAP hNewCheck)
3740 MENUITEM *item;
3741 TRACE("(%04x, %04x, %04x, %04x, %04x)\n",
3742 hMenu, nPos, wFlags, hNewCheck, hNewUnCheck);
3743 if (!(item = MENU_FindItem( &hMenu, &nPos, wFlags ))) return FALSE;
3745 if (!hNewCheck && !hNewUnCheck)
3747 item->fState &= ~MF_USECHECKBITMAPS;
3749 else /* Install new bitmaps */
3751 item->hCheckBit = hNewCheck;
3752 item->hUnCheckBit = hNewUnCheck;
3753 item->fState |= MF_USECHECKBITMAPS;
3755 return TRUE;
3759 /**********************************************************************
3760 * CreateMenu (USER.151)
3762 HMENU16 WINAPI CreateMenu16(void)
3764 return CreateMenu();
3768 /**********************************************************************
3769 * CreateMenu (USER32.@)
3771 HMENU WINAPI CreateMenu(void)
3773 HMENU hMenu;
3774 LPPOPUPMENU menu;
3775 if (!(hMenu = USER_HEAP_ALLOC( sizeof(POPUPMENU) ))) return 0;
3776 menu = (LPPOPUPMENU) USER_HEAP_LIN_ADDR(hMenu);
3778 ZeroMemory(menu, sizeof(POPUPMENU));
3779 menu->wMagic = MENU_MAGIC;
3780 menu->FocusedItem = NO_SELECTED_ITEM;
3781 menu->bTimeToHide = FALSE;
3783 TRACE("return %04x\n", hMenu );
3785 return hMenu;
3789 /**********************************************************************
3790 * DestroyMenu (USER.152)
3792 BOOL16 WINAPI DestroyMenu16( HMENU16 hMenu )
3794 return DestroyMenu( hMenu );
3798 /**********************************************************************
3799 * DestroyMenu (USER32.@)
3801 BOOL WINAPI DestroyMenu( HMENU hMenu )
3803 TRACE("(%04x)\n", hMenu);
3805 /* Silently ignore attempts to destroy default system popup */
3807 if (hMenu && hMenu != MENU_DefSysPopup)
3809 LPPOPUPMENU lppop = MENU_GetMenu(hMenu);
3811 if (!lppop) return FALSE;
3813 lppop->wMagic = 0; /* Mark it as destroyed */
3815 if ((lppop->wFlags & MF_POPUP) && lppop->hWnd)
3817 DestroyWindow( lppop->hWnd );
3818 lppop->hWnd = 0;
3821 if (lppop->items) /* recursively destroy submenus */
3823 int i;
3824 MENUITEM *item = lppop->items;
3825 for (i = lppop->nItems; i > 0; i--, item++)
3827 if (item->fType & MF_POPUP) DestroyMenu(item->hSubMenu);
3828 MENU_FreeItemData( item );
3830 HeapFree( GetProcessHeap(), 0, lppop->items );
3832 USER_HEAP_FREE( hMenu );
3834 return (hMenu != MENU_DefSysPopup);
3838 /**********************************************************************
3839 * GetSystemMenu (USER.156)
3841 HMENU16 WINAPI GetSystemMenu16( HWND16 hWnd, BOOL16 bRevert )
3843 return GetSystemMenu( hWnd, bRevert );
3847 /**********************************************************************
3848 * GetSystemMenu (USER32.@)
3850 HMENU WINAPI GetSystemMenu( HWND hWnd, BOOL bRevert )
3852 WND *wndPtr = WIN_FindWndPtr( hWnd );
3853 HMENU retvalue = 0;
3855 if (wndPtr)
3857 if( wndPtr->hSysMenu )
3859 if( bRevert )
3861 DestroyMenu(wndPtr->hSysMenu);
3862 wndPtr->hSysMenu = 0;
3864 else
3866 POPUPMENU *menu = MENU_GetMenu( wndPtr->hSysMenu );
3867 if( menu )
3869 if( menu->nItems > 0 && menu->items[0].hSubMenu == MENU_DefSysPopup )
3870 menu->items[0].hSubMenu = MENU_CopySysPopup();
3872 else
3874 WARN("Current sys-menu (%04x) of wnd %04x is broken\n",
3875 wndPtr->hSysMenu, hWnd);
3876 wndPtr->hSysMenu = 0;
3881 if(!wndPtr->hSysMenu && (wndPtr->dwStyle & WS_SYSMENU) )
3882 wndPtr->hSysMenu = MENU_GetSysMenu( hWnd, (HMENU)(-1) );
3884 if( wndPtr->hSysMenu )
3886 POPUPMENU *menu;
3887 retvalue = GetSubMenu(wndPtr->hSysMenu, 0);
3889 /* Store the dummy sysmenu handle to facilitate the refresh */
3890 /* of the close button if the SC_CLOSE item change */
3891 menu = MENU_GetMenu(retvalue);
3892 if ( menu )
3893 menu->hSysMenuOwner = wndPtr->hSysMenu;
3895 WIN_ReleaseWndPtr(wndPtr);
3897 return bRevert ? 0 : retvalue;
3901 /*******************************************************************
3902 * SetSystemMenu (USER.280)
3904 BOOL16 WINAPI SetSystemMenu16( HWND16 hwnd, HMENU16 hMenu )
3906 return SetSystemMenu( hwnd, hMenu );
3910 /*******************************************************************
3911 * SetSystemMenu (USER32.@)
3913 BOOL WINAPI SetSystemMenu( HWND hwnd, HMENU hMenu )
3915 WND *wndPtr = WIN_FindWndPtr(hwnd);
3917 if (wndPtr)
3919 if (wndPtr->hSysMenu) DestroyMenu( wndPtr->hSysMenu );
3920 wndPtr->hSysMenu = MENU_GetSysMenu( hwnd, hMenu );
3921 WIN_ReleaseWndPtr(wndPtr);
3922 return TRUE;
3924 return FALSE;
3928 /**********************************************************************
3929 * GetMenu (USER.157)
3931 HMENU16 WINAPI GetMenu16( HWND16 hWnd )
3933 return (HMENU16)GetMenu(hWnd);
3937 /**********************************************************************
3938 * GetMenu (USER32.@)
3940 HMENU WINAPI GetMenu( HWND hWnd )
3942 HMENU retvalue = (HMENU)GetWindowLongA( hWnd, GWL_ID );
3943 TRACE("for %04x returning %04x\n", hWnd, retvalue);
3944 return retvalue;
3948 /**********************************************************************
3949 * SetMenu (USER.158)
3951 BOOL16 WINAPI SetMenu16( HWND16 hWnd, HMENU16 hMenu )
3953 return SetMenu( hWnd, hMenu );
3957 /**********************************************************************
3958 * SetMenu (USER32.@)
3960 BOOL WINAPI SetMenu( HWND hWnd, HMENU hMenu )
3962 TRACE("(%04x, %04x);\n", hWnd, hMenu);
3964 if (hMenu && !IsMenu(hMenu))
3966 WARN("hMenu %x is not a menu handle\n", hMenu);
3967 return FALSE;
3969 if (GetWindowLongA( hWnd, GWL_STYLE ) & WS_CHILD) return FALSE;
3971 hWnd = WIN_GetFullHandle( hWnd );
3972 if (GetCapture() == hWnd) ReleaseCapture();
3974 if (hMenu != 0)
3976 LPPOPUPMENU lpmenu;
3978 if (!(lpmenu = MENU_GetMenu(hMenu))) return FALSE;
3980 lpmenu->hWnd = hWnd;
3981 lpmenu->Height = 0; /* Make sure we recalculate the size */
3983 SetWindowLongA( hWnd, GWL_ID, hMenu );
3985 if (IsWindowVisible(hWnd))
3986 SetWindowPos( hWnd, 0, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE |
3987 SWP_NOACTIVATE | SWP_NOZORDER | SWP_FRAMECHANGED );
3988 return TRUE;
3993 /**********************************************************************
3994 * GetSubMenu (USER.159)
3996 HMENU16 WINAPI GetSubMenu16( HMENU16 hMenu, INT16 nPos )
3998 return GetSubMenu( hMenu, nPos );
4002 /**********************************************************************
4003 * GetSubMenu (USER32.@)
4005 HMENU WINAPI GetSubMenu( HMENU hMenu, INT nPos )
4007 MENUITEM * lpmi;
4009 if (!(lpmi = MENU_FindItem(&hMenu,&nPos,MF_BYPOSITION))) return 0;
4010 if (!(lpmi->fType & MF_POPUP)) return 0;
4011 return lpmi->hSubMenu;
4015 /**********************************************************************
4016 * DrawMenuBar (USER.160)
4018 void WINAPI DrawMenuBar16( HWND16 hWnd )
4020 DrawMenuBar( hWnd );
4024 /**********************************************************************
4025 * DrawMenuBar (USER32.@)
4027 BOOL WINAPI DrawMenuBar( HWND hWnd )
4029 LPPOPUPMENU lppop;
4030 HMENU hMenu = GetMenu(hWnd);
4032 if (GetWindowLongA( hWnd, GWL_STYLE ) & WS_CHILD) return FALSE;
4033 if (!hMenu || !(lppop = MENU_GetMenu( hMenu ))) return FALSE;
4035 lppop->Height = 0; /* Make sure we call MENU_MenuBarCalcSize */
4036 lppop->hwndOwner = hWnd;
4037 SetWindowPos( hWnd, 0, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE |
4038 SWP_NOACTIVATE | SWP_NOZORDER | SWP_FRAMECHANGED );
4039 return TRUE;
4042 /***********************************************************************
4043 * DrawMenuBarTemp (USER32.@)
4045 DWORD WINAPI DrawMenuBarTemp(DWORD p1, DWORD p2)
4047 FIXME("(%08lx %08lx): stub\n", p1, p2);
4048 return 0;
4051 /***********************************************************************
4052 * EndMenu (USER.187)
4053 * EndMenu (USER32.@)
4055 void WINAPI EndMenu(void)
4057 /* if we are in the menu code, and it is active */
4058 if (!fEndMenu && top_popup)
4060 /* terminate the menu handling code */
4061 fEndMenu = TRUE;
4063 /* needs to be posted to wakeup the internal menu handler */
4064 /* which will now terminate the menu, in the event that */
4065 /* the main window was minimized, or lost focus, so we */
4066 /* don't end up with an orphaned menu */
4067 PostMessageA( top_popup, WM_CANCELMODE, 0, 0);
4072 /***********************************************************************
4073 * LookupMenuHandle (USER.217)
4075 HMENU16 WINAPI LookupMenuHandle16( HMENU16 hmenu, INT16 id )
4077 HMENU hmenu32 = hmenu;
4078 UINT id32 = id;
4079 if (!MENU_FindItem( &hmenu32, &id32, MF_BYCOMMAND )) return 0;
4080 else return hmenu32;
4084 /**********************************************************************
4085 * LoadMenu (USER.150)
4087 HMENU16 WINAPI LoadMenu16( HINSTANCE16 instance, LPCSTR name )
4089 HRSRC16 hRsrc;
4090 HGLOBAL16 handle;
4091 HMENU16 hMenu;
4093 TRACE("(%04x,%s)\n", instance, debugres_a(name) );
4095 if (HIWORD(name))
4097 if (name[0] == '#') name = (LPCSTR)atoi( name + 1 );
4100 if (!name) return 0;
4102 /* check for Win32 module */
4103 if (HIWORD(instance)) return LoadMenuA( instance, name );
4104 instance = GetExePtr( instance );
4106 if (!(hRsrc = FindResource16( instance, name, RT_MENUA ))) return 0;
4107 if (!(handle = LoadResource16( instance, hRsrc ))) return 0;
4108 hMenu = LoadMenuIndirect16(LockResource16(handle));
4109 FreeResource16( handle );
4110 return hMenu;
4114 /*****************************************************************
4115 * LoadMenuA (USER32.@)
4117 HMENU WINAPI LoadMenuA( HINSTANCE instance, LPCSTR name )
4119 HRSRC hrsrc = FindResourceA( instance, name, RT_MENUA );
4120 if (!hrsrc) return 0;
4121 return LoadMenuIndirectA( (LPCVOID)LoadResource( instance, hrsrc ));
4125 /*****************************************************************
4126 * LoadMenuW (USER32.@)
4128 HMENU WINAPI LoadMenuW( HINSTANCE instance, LPCWSTR name )
4130 HRSRC hrsrc = FindResourceW( instance, name, RT_MENUW );
4131 if (!hrsrc) return 0;
4132 return LoadMenuIndirectW( (LPCVOID)LoadResource( instance, hrsrc ));
4136 /**********************************************************************
4137 * LoadMenuIndirect (USER.220)
4139 HMENU16 WINAPI LoadMenuIndirect16( LPCVOID template )
4141 HMENU16 hMenu;
4142 WORD version, offset;
4143 LPCSTR p = (LPCSTR)template;
4145 TRACE("(%p)\n", template );
4146 version = GET_WORD(p);
4147 p += sizeof(WORD);
4148 if (version)
4150 WARN("version must be 0 for Win16\n" );
4151 return 0;
4153 offset = GET_WORD(p);
4154 p += sizeof(WORD) + offset;
4155 if (!(hMenu = CreateMenu())) return 0;
4156 if (!MENU_ParseResource( p, hMenu, FALSE ))
4158 DestroyMenu( hMenu );
4159 return 0;
4161 return hMenu;
4165 /**********************************************************************
4166 * LoadMenuIndirectA (USER32.@)
4168 HMENU WINAPI LoadMenuIndirectA( LPCVOID template )
4170 HMENU16 hMenu;
4171 WORD version, offset;
4172 LPCSTR p = (LPCSTR)template;
4174 TRACE("%p\n", template );
4175 version = GET_WORD(p);
4176 p += sizeof(WORD);
4177 switch (version)
4179 case 0:
4180 offset = GET_WORD(p);
4181 p += sizeof(WORD) + offset;
4182 if (!(hMenu = CreateMenu())) return 0;
4183 if (!MENU_ParseResource( p, hMenu, TRUE ))
4185 DestroyMenu( hMenu );
4186 return 0;
4188 return hMenu;
4189 case 1:
4190 offset = GET_WORD(p);
4191 p += sizeof(WORD) + offset;
4192 if (!(hMenu = CreateMenu())) return 0;
4193 if (!MENUEX_ParseResource( p, hMenu))
4195 DestroyMenu( hMenu );
4196 return 0;
4198 return hMenu;
4199 default:
4200 ERR("version %d not supported.\n", version);
4201 return 0;
4206 /**********************************************************************
4207 * LoadMenuIndirectW (USER32.@)
4209 HMENU WINAPI LoadMenuIndirectW( LPCVOID template )
4211 /* FIXME: is there anything different between A and W? */
4212 return LoadMenuIndirectA( template );
4216 /**********************************************************************
4217 * IsMenu (USER.358)
4219 BOOL16 WINAPI IsMenu16( HMENU16 hmenu )
4221 return IsMenu( hmenu );
4225 /**********************************************************************
4226 * IsMenu (USER32.@)
4228 BOOL WINAPI IsMenu(HMENU hmenu)
4230 LPPOPUPMENU menu = MENU_GetMenu(hmenu);
4231 return menu != NULL;
4234 /**********************************************************************
4235 * GetMenuItemInfo_common
4238 static BOOL GetMenuItemInfo_common ( HMENU hmenu, UINT item, BOOL bypos,
4239 LPMENUITEMINFOW lpmii, BOOL unicode)
4241 MENUITEM *menu = MENU_FindItem (&hmenu, &item, bypos? MF_BYPOSITION : 0);
4243 debug_print_menuitem("GetMenuItemInfo_common: ", menu, "");
4245 if (!menu)
4246 return FALSE;
4248 if (lpmii->fMask & MIIM_TYPE) {
4249 lpmii->fType = menu->fType;
4250 switch (MENU_ITEM_TYPE(menu->fType)) {
4251 case MF_STRING:
4252 break; /* will be done below */
4253 case MF_OWNERDRAW:
4254 case MF_BITMAP:
4255 lpmii->dwTypeData = menu->text;
4256 /* fall through */
4257 default:
4258 lpmii->cch = 0;
4262 /* copy the text string */
4263 if ((lpmii->fMask & (MIIM_TYPE|MIIM_STRING)) &&
4264 (MENU_ITEM_TYPE(menu->fType) == MF_STRING) && menu->text)
4266 int len;
4267 if (unicode)
4269 len = strlenW(menu->text);
4270 if(lpmii->dwTypeData && lpmii->cch)
4271 lstrcpynW(lpmii->dwTypeData, menu->text, lpmii->cch);
4273 else
4275 len = WideCharToMultiByte( CP_ACP, 0, menu->text, -1, NULL, 0, NULL, NULL );
4276 if(lpmii->dwTypeData && lpmii->cch)
4277 if (!WideCharToMultiByte( CP_ACP, 0, menu->text, -1,
4278 (LPSTR)lpmii->dwTypeData, lpmii->cch, NULL, NULL ))
4279 ((LPSTR)lpmii->dwTypeData)[lpmii->cch-1] = 0;
4281 /* if we've copied a substring we return its length */
4282 if(lpmii->dwTypeData && lpmii->cch)
4284 if (lpmii->cch <= len) lpmii->cch--;
4286 else /* return length of string */
4287 lpmii->cch = len;
4290 if (lpmii->fMask & MIIM_FTYPE)
4291 lpmii->fType = menu->fType;
4293 if (lpmii->fMask & MIIM_BITMAP)
4294 lpmii->hbmpItem = menu->hbmpItem;
4296 if (lpmii->fMask & MIIM_STATE)
4297 lpmii->fState = menu->fState;
4299 if (lpmii->fMask & MIIM_ID)
4300 lpmii->wID = menu->wID;
4302 if (lpmii->fMask & MIIM_SUBMENU)
4303 lpmii->hSubMenu = menu->hSubMenu;
4305 if (lpmii->fMask & MIIM_CHECKMARKS) {
4306 lpmii->hbmpChecked = menu->hCheckBit;
4307 lpmii->hbmpUnchecked = menu->hUnCheckBit;
4309 if (lpmii->fMask & MIIM_DATA)
4310 lpmii->dwItemData = menu->dwItemData;
4312 return TRUE;
4315 /**********************************************************************
4316 * GetMenuItemInfoA (USER32.@)
4318 BOOL WINAPI GetMenuItemInfoA( HMENU hmenu, UINT item, BOOL bypos,
4319 LPMENUITEMINFOA lpmii)
4321 return GetMenuItemInfo_common (hmenu, item, bypos,
4322 (LPMENUITEMINFOW)lpmii, FALSE);
4325 /**********************************************************************
4326 * GetMenuItemInfoW (USER32.@)
4328 BOOL WINAPI GetMenuItemInfoW( HMENU hmenu, UINT item, BOOL bypos,
4329 LPMENUITEMINFOW lpmii)
4331 return GetMenuItemInfo_common (hmenu, item, bypos,
4332 lpmii, TRUE);
4336 /* set a menu item text from a ASCII or Unicode string */
4337 inline static void set_menu_item_text( MENUITEM *menu, LPCWSTR text, BOOL unicode )
4339 if (!text)
4341 menu->text = NULL;
4342 menu->fType |= MF_SEPARATOR;
4344 else if (unicode)
4346 if ((menu->text = HeapAlloc( GetProcessHeap(), 0, (strlenW(text)+1) * sizeof(WCHAR) )))
4347 strcpyW( menu->text, text );
4349 else
4351 LPCSTR str = (LPCSTR)text;
4352 int len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
4353 if ((menu->text = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) )))
4354 MultiByteToWideChar( CP_ACP, 0, str, -1, menu->text, len );
4359 /**********************************************************************
4360 * SetMenuItemInfo_common
4363 static BOOL SetMenuItemInfo_common(MENUITEM * menu,
4364 const MENUITEMINFOW *lpmii,
4365 BOOL unicode)
4367 if (!menu) return FALSE;
4369 debug_print_menuitem("MENU_SetItemInfo_common from: ", menu, "");
4371 if (lpmii->fMask & MIIM_TYPE ) {
4372 /* Get rid of old string. */
4373 if ( IS_STRING_ITEM(menu->fType) && menu->text) {
4374 HeapFree(GetProcessHeap(), 0, menu->text);
4375 menu->text = NULL;
4378 /* make only MENU_ITEM_TYPE bits in menu->fType equal lpmii->fType */
4379 menu->fType &= ~MENU_ITEM_TYPE(menu->fType);
4380 menu->fType |= MENU_ITEM_TYPE(lpmii->fType);
4382 menu->text = lpmii->dwTypeData;
4384 if (IS_STRING_ITEM(menu->fType))
4385 set_menu_item_text( menu, lpmii->dwTypeData, unicode );
4388 if (lpmii->fMask & MIIM_FTYPE ) {
4389 /* free the string when the type is changing */
4390 if ( (!IS_STRING_ITEM(lpmii->fType)) && IS_STRING_ITEM(menu->fType) && menu->text) {
4391 HeapFree(GetProcessHeap(), 0, menu->text);
4392 menu->text = NULL;
4394 menu->fType &= ~MENU_ITEM_TYPE(menu->fType);
4395 menu->fType |= MENU_ITEM_TYPE(lpmii->fType);
4396 if ( IS_STRING_ITEM(menu->fType) && !menu->text )
4397 menu->fType |= MF_SEPARATOR;
4400 if (lpmii->fMask & MIIM_STRING ) {
4401 /* free the string when used */
4402 if ( IS_STRING_ITEM(menu->fType) && menu->text) {
4403 HeapFree(GetProcessHeap(), 0, menu->text);
4404 set_menu_item_text( menu, lpmii->dwTypeData, unicode );
4408 if (lpmii->fMask & MIIM_STATE)
4410 /* fixme: MFS_DEFAULT do we have to reset the other menu items? */
4411 menu->fState = lpmii->fState;
4414 if (lpmii->fMask & MIIM_ID)
4415 menu->wID = lpmii->wID;
4417 if (lpmii->fMask & MIIM_SUBMENU) {
4418 menu->hSubMenu = lpmii->hSubMenu;
4419 if (menu->hSubMenu) {
4420 POPUPMENU *subMenu = MENU_GetMenu((UINT16)menu->hSubMenu);
4421 if (subMenu) {
4422 subMenu->wFlags |= MF_POPUP;
4423 menu->fType |= MF_POPUP;
4425 else
4426 /* FIXME: Return an error ? */
4427 menu->fType &= ~MF_POPUP;
4429 else
4430 menu->fType &= ~MF_POPUP;
4433 if (lpmii->fMask & MIIM_CHECKMARKS)
4435 if (lpmii->fType & MFT_RADIOCHECK)
4436 menu->fType |= MFT_RADIOCHECK;
4438 menu->hCheckBit = lpmii->hbmpChecked;
4439 menu->hUnCheckBit = lpmii->hbmpUnchecked;
4441 if (lpmii->fMask & MIIM_DATA)
4442 menu->dwItemData = lpmii->dwItemData;
4444 debug_print_menuitem("SetMenuItemInfo_common to : ", menu, "");
4445 return TRUE;
4448 /**********************************************************************
4449 * SetMenuItemInfoA (USER32.@)
4451 BOOL WINAPI SetMenuItemInfoA(HMENU hmenu, UINT item, BOOL bypos,
4452 const MENUITEMINFOA *lpmii)
4454 if ((lpmii->fType & (MF_HILITE|MF_POPUP)) || (lpmii->fState)) {
4455 /* QuickTime does pass invalid data into SetMenuItemInfo.
4456 * do some of the checks Windows does.
4458 WARN("Bad masks for type (0x%08x) or state (0x%08x)\n",
4459 lpmii->fType,lpmii->fState );
4460 return FALSE;
4463 return SetMenuItemInfo_common(MENU_FindItem(&hmenu, &item, bypos? MF_BYPOSITION : 0),
4464 (const MENUITEMINFOW *)lpmii, FALSE);
4467 /**********************************************************************
4468 * SetMenuItemInfoW (USER32.@)
4470 BOOL WINAPI SetMenuItemInfoW(HMENU hmenu, UINT item, BOOL bypos,
4471 const MENUITEMINFOW *lpmii)
4473 return SetMenuItemInfo_common(MENU_FindItem(&hmenu, &item, bypos? MF_BYPOSITION : 0),
4474 lpmii, TRUE);
4477 /**********************************************************************
4478 * SetMenuDefaultItem (USER32.@)
4481 BOOL WINAPI SetMenuDefaultItem(HMENU hmenu, UINT uItem, UINT bypos)
4483 UINT i;
4484 POPUPMENU *menu;
4485 MENUITEM *item;
4487 TRACE("(0x%x,%d,%d)\n", hmenu, uItem, bypos);
4489 if (!(menu = MENU_GetMenu(hmenu))) return FALSE;
4491 /* reset all default-item flags */
4492 item = menu->items;
4493 for (i = 0; i < menu->nItems; i++, item++)
4495 item->fState &= ~MFS_DEFAULT;
4498 /* no default item */
4499 if ( -1 == uItem)
4501 return TRUE;
4504 item = menu->items;
4505 if ( bypos )
4507 if ( uItem >= menu->nItems ) return FALSE;
4508 item[uItem].fState |= MFS_DEFAULT;
4509 return TRUE;
4511 else
4513 for (i = 0; i < menu->nItems; i++, item++)
4515 if (item->wID == uItem)
4517 item->fState |= MFS_DEFAULT;
4518 return TRUE;
4523 return FALSE;
4526 /**********************************************************************
4527 * GetMenuDefaultItem (USER32.@)
4529 UINT WINAPI GetMenuDefaultItem(HMENU hmenu, UINT bypos, UINT flags)
4531 POPUPMENU *menu;
4532 MENUITEM * item;
4533 UINT i = 0;
4535 TRACE("(0x%x,%d,%d)\n", hmenu, bypos, flags);
4537 if (!(menu = MENU_GetMenu(hmenu))) return -1;
4539 /* find default item */
4540 item = menu->items;
4542 /* empty menu */
4543 if (! item) return -1;
4545 while ( !( item->fState & MFS_DEFAULT ) )
4547 i++; item++;
4548 if (i >= menu->nItems ) return -1;
4551 /* default: don't return disabled items */
4552 if ( (!(GMDI_USEDISABLED & flags)) && (item->fState & MFS_DISABLED )) return -1;
4554 /* search rekursiv when needed */
4555 if ( (item->fType & MF_POPUP) && (flags & GMDI_GOINTOPOPUPS) )
4557 UINT ret;
4558 ret = GetMenuDefaultItem( item->hSubMenu, bypos, flags );
4559 if ( -1 != ret ) return ret;
4561 /* when item not found in submenu, return the popup item */
4563 return ( bypos ) ? i : item->wID;
4567 /*******************************************************************
4568 * InsertMenuItem (USER.441)
4570 * FIXME: untested
4572 BOOL16 WINAPI InsertMenuItem16( HMENU16 hmenu, UINT16 pos, BOOL16 byposition,
4573 const MENUITEMINFO16 *mii )
4575 MENUITEMINFOA miia;
4577 miia.cbSize = sizeof(miia);
4578 miia.fMask = mii->fMask;
4579 miia.dwTypeData = (LPSTR)mii->dwTypeData;
4580 miia.fType = mii->fType;
4581 miia.fState = mii->fState;
4582 miia.wID = mii->wID;
4583 miia.hSubMenu = mii->hSubMenu;
4584 miia.hbmpChecked = mii->hbmpChecked;
4585 miia.hbmpUnchecked = mii->hbmpUnchecked;
4586 miia.dwItemData = mii->dwItemData;
4587 miia.cch = mii->cch;
4588 if (IS_STRING_ITEM(miia.fType))
4589 miia.dwTypeData = MapSL(mii->dwTypeData);
4590 return InsertMenuItemA( hmenu, pos, byposition, &miia );
4594 /**********************************************************************
4595 * InsertMenuItemA (USER32.@)
4597 BOOL WINAPI InsertMenuItemA(HMENU hMenu, UINT uItem, BOOL bypos,
4598 const MENUITEMINFOA *lpmii)
4600 MENUITEM *item = MENU_InsertItem(hMenu, uItem, bypos ? MF_BYPOSITION : 0 );
4601 return SetMenuItemInfo_common(item, (const MENUITEMINFOW *)lpmii, FALSE);
4605 /**********************************************************************
4606 * InsertMenuItemW (USER32.@)
4608 BOOL WINAPI InsertMenuItemW(HMENU hMenu, UINT uItem, BOOL bypos,
4609 const MENUITEMINFOW *lpmii)
4611 MENUITEM *item = MENU_InsertItem(hMenu, uItem, bypos ? MF_BYPOSITION : 0 );
4612 return SetMenuItemInfo_common(item, lpmii, TRUE);
4615 /**********************************************************************
4616 * CheckMenuRadioItem (USER32.@)
4619 BOOL WINAPI CheckMenuRadioItem(HMENU hMenu,
4620 UINT first, UINT last, UINT check,
4621 UINT bypos)
4623 MENUITEM *mifirst, *milast, *micheck;
4624 HMENU mfirst = hMenu, mlast = hMenu, mcheck = hMenu;
4626 TRACE("ox%x: %d-%d, check %d, bypos=%d\n",
4627 hMenu, first, last, check, bypos);
4629 mifirst = MENU_FindItem (&mfirst, &first, bypos);
4630 milast = MENU_FindItem (&mlast, &last, bypos);
4631 micheck = MENU_FindItem (&mcheck, &check, bypos);
4633 if (mifirst == NULL || milast == NULL || micheck == NULL ||
4634 mifirst > milast || mfirst != mlast || mfirst != mcheck ||
4635 micheck > milast || micheck < mifirst)
4636 return FALSE;
4638 while (mifirst <= milast)
4640 if (mifirst == micheck)
4642 mifirst->fType |= MFT_RADIOCHECK;
4643 mifirst->fState |= MFS_CHECKED;
4644 } else {
4645 mifirst->fType &= ~MFT_RADIOCHECK;
4646 mifirst->fState &= ~MFS_CHECKED;
4648 mifirst++;
4651 return TRUE;
4654 /**********************************************************************
4655 * CheckMenuRadioItem (USER.666)
4657 BOOL16 WINAPI CheckMenuRadioItem16(HMENU16 hMenu,
4658 UINT16 first, UINT16 last, UINT16 check,
4659 BOOL16 bypos)
4661 return CheckMenuRadioItem (hMenu, first, last, check, bypos);
4664 /**********************************************************************
4665 * GetMenuItemRect (USER32.@)
4667 * ATTENTION: Here, the returned values in rect are the screen
4668 * coordinates of the item just like if the menu was
4669 * always on the upper left side of the application.
4672 BOOL WINAPI GetMenuItemRect (HWND hwnd, HMENU hMenu, UINT uItem,
4673 LPRECT rect)
4675 POPUPMENU *itemMenu;
4676 MENUITEM *item;
4677 HWND referenceHwnd;
4679 TRACE("(0x%x,0x%x,%d,%p)\n", hwnd, hMenu, uItem, rect);
4681 item = MENU_FindItem (&hMenu, &uItem, MF_BYPOSITION);
4682 referenceHwnd = hwnd;
4684 if(!hwnd)
4686 itemMenu = MENU_GetMenu(hMenu);
4687 if (itemMenu == NULL)
4688 return FALSE;
4690 if(itemMenu->hWnd == 0)
4691 return FALSE;
4692 referenceHwnd = itemMenu->hWnd;
4695 if ((rect == NULL) || (item == NULL))
4696 return FALSE;
4698 *rect = item->rect;
4700 MapWindowPoints(referenceHwnd, 0, (LPPOINT)rect, 2);
4702 return TRUE;
4705 /**********************************************************************
4706 * GetMenuItemRect (USER.665)
4709 BOOL16 WINAPI GetMenuItemRect16 (HWND16 hwnd, HMENU16 hMenu, UINT16 uItem,
4710 LPRECT16 rect)
4712 RECT r32;
4713 BOOL res;
4715 if (!rect) return FALSE;
4716 res = GetMenuItemRect (hwnd, hMenu, uItem, &r32);
4717 CONV_RECT32TO16 (&r32, rect);
4718 return res;
4721 /**********************************************************************
4722 * SetMenuInfo (USER32.@)
4724 * FIXME
4725 * MIM_APPLYTOSUBMENUS
4726 * actually use the items to draw the menu
4728 BOOL WINAPI SetMenuInfo (HMENU hMenu, LPCMENUINFO lpmi)
4730 POPUPMENU *menu;
4732 TRACE("(0x%04x %p)\n", hMenu, lpmi);
4734 if (lpmi && (lpmi->cbSize==sizeof(MENUINFO)) && (menu = MENU_GetMenu(hMenu)))
4737 if (lpmi->fMask & MIM_BACKGROUND)
4738 menu->hbrBack = lpmi->hbrBack;
4740 if (lpmi->fMask & MIM_HELPID)
4741 menu->dwContextHelpID = lpmi->dwContextHelpID;
4743 if (lpmi->fMask & MIM_MAXHEIGHT)
4744 menu->cyMax = lpmi->cyMax;
4746 if (lpmi->fMask & MIM_MENUDATA)
4747 menu->dwMenuData = lpmi->dwMenuData;
4749 if (lpmi->fMask & MIM_STYLE)
4750 menu->dwStyle = lpmi->dwStyle;
4752 return TRUE;
4754 return FALSE;
4757 /**********************************************************************
4758 * GetMenuInfo (USER32.@)
4760 * NOTES
4761 * win98/NT5.0
4764 BOOL WINAPI GetMenuInfo (HMENU hMenu, LPMENUINFO lpmi)
4765 { POPUPMENU *menu;
4767 TRACE("(0x%04x %p)\n", hMenu, lpmi);
4769 if (lpmi && (menu = MENU_GetMenu(hMenu)))
4772 if (lpmi->fMask & MIM_BACKGROUND)
4773 lpmi->hbrBack = menu->hbrBack;
4775 if (lpmi->fMask & MIM_HELPID)
4776 lpmi->dwContextHelpID = menu->dwContextHelpID;
4778 if (lpmi->fMask & MIM_MAXHEIGHT)
4779 lpmi->cyMax = menu->cyMax;
4781 if (lpmi->fMask & MIM_MENUDATA)
4782 lpmi->dwMenuData = menu->dwMenuData;
4784 if (lpmi->fMask & MIM_STYLE)
4785 lpmi->dwStyle = menu->dwStyle;
4787 return TRUE;
4789 return FALSE;
4792 /**********************************************************************
4793 * SetMenuContextHelpId (USER.384)
4795 BOOL16 WINAPI SetMenuContextHelpId16( HMENU16 hMenu, DWORD dwContextHelpID)
4797 return SetMenuContextHelpId( hMenu, dwContextHelpID );
4801 /**********************************************************************
4802 * SetMenuContextHelpId (USER32.@)
4804 BOOL WINAPI SetMenuContextHelpId( HMENU hMenu, DWORD dwContextHelpID)
4806 LPPOPUPMENU menu;
4808 TRACE("(0x%04x 0x%08lx)\n", hMenu, dwContextHelpID);
4810 if ((menu = MENU_GetMenu(hMenu)))
4812 menu->dwContextHelpID = dwContextHelpID;
4813 return TRUE;
4815 return FALSE;
4818 /**********************************************************************
4819 * GetMenuContextHelpId (USER.385)
4821 DWORD WINAPI GetMenuContextHelpId16( HMENU16 hMenu )
4823 return GetMenuContextHelpId( hMenu );
4826 /**********************************************************************
4827 * GetMenuContextHelpId (USER32.@)
4829 DWORD WINAPI GetMenuContextHelpId( HMENU hMenu )
4831 LPPOPUPMENU menu;
4833 TRACE("(0x%04x)\n", hMenu);
4835 if ((menu = MENU_GetMenu(hMenu)))
4837 return menu->dwContextHelpID;
4839 return 0;
4842 /**********************************************************************
4843 * MenuItemFromPoint (USER32.@)
4845 UINT WINAPI MenuItemFromPoint(HWND hWnd, HMENU hMenu, POINT ptScreen)
4847 FIXME("(0x%04x,0x%04x,(%ld,%ld)):stub\n",
4848 hWnd, hMenu, ptScreen.x, ptScreen.y);
4849 return 0;
4853 /**********************************************************************
4854 * translate_accelerator
4856 static BOOL translate_accelerator( HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam,
4857 BYTE fVirt, WORD key, WORD cmd )
4859 UINT mesg = 0;
4861 if (wParam != key) return FALSE;
4863 if (message == WM_CHAR)
4865 if ( !(fVirt & FALT) && !(fVirt & FVIRTKEY) )
4867 TRACE_(accel)("found accel for WM_CHAR: ('%c')\n", wParam & 0xff);
4868 goto found;
4871 else
4873 if(fVirt & FVIRTKEY)
4875 INT mask = 0;
4876 TRACE_(accel)("found accel for virt_key %04x (scan %04x)\n",
4877 wParam, 0xff & HIWORD(lParam));
4878 if(GetKeyState(VK_SHIFT) & 0x8000) mask |= FSHIFT;
4879 if(GetKeyState(VK_CONTROL) & 0x8000) mask |= FCONTROL;
4880 if(GetKeyState(VK_MENU) & 0x8000) mask |= FALT;
4881 if(mask == (fVirt & (FSHIFT | FCONTROL | FALT))) goto found;
4882 TRACE_(accel)(", but incorrect SHIFT/CTRL/ALT-state\n");
4884 else
4886 if (!(lParam & 0x01000000)) /* no special_key */
4888 if ((fVirt & FALT) && (lParam & 0x20000000))
4889 { /* ^^ ALT pressed */
4890 TRACE_(accel)("found accel for Alt-%c\n", wParam & 0xff);
4891 goto found;
4896 return FALSE;
4898 found:
4899 if (message == WM_KEYUP || message == WM_SYSKEYUP)
4900 mesg = 1;
4901 else if (GetCapture())
4902 mesg = 2;
4903 else if (!IsWindowEnabled(hWnd))
4904 mesg = 3;
4905 else
4907 HMENU hMenu, hSubMenu, hSysMenu;
4908 UINT uSysStat = (UINT)-1, uStat = (UINT)-1, nPos;
4910 hMenu = (GetWindowLongA( hWnd, GWL_STYLE ) & WS_CHILD) ? 0 : GetMenu(hWnd);
4911 hSysMenu = get_win_sys_menu( hWnd );
4913 /* find menu item and ask application to initialize it */
4914 /* 1. in the system menu */
4915 hSubMenu = hSysMenu;
4916 nPos = cmd;
4917 if(MENU_FindItem(&hSubMenu, &nPos, MF_BYCOMMAND))
4919 SendMessageA(hWnd, WM_INITMENU, (WPARAM)hSysMenu, 0L);
4920 if(hSubMenu != hSysMenu)
4922 nPos = MENU_FindSubMenu(&hSysMenu, hSubMenu);
4923 TRACE_(accel)("hSysMenu = %04x, hSubMenu = %04x, nPos = %d\n", hSysMenu, hSubMenu, nPos);
4924 SendMessageA(hWnd, WM_INITMENUPOPUP, (WPARAM)hSubMenu, MAKELPARAM(nPos, TRUE));
4926 uSysStat = GetMenuState(GetSubMenu(hSysMenu, 0), cmd, MF_BYCOMMAND);
4928 else /* 2. in the window's menu */
4930 hSubMenu = hMenu;
4931 nPos = cmd;
4932 if(MENU_FindItem(&hSubMenu, &nPos, MF_BYCOMMAND))
4934 SendMessageA(hWnd, WM_INITMENU, (WPARAM)hMenu, 0L);
4935 if(hSubMenu != hMenu)
4937 nPos = MENU_FindSubMenu(&hMenu, hSubMenu);
4938 TRACE_(accel)("hMenu = %04x, hSubMenu = %04x, nPos = %d\n", hMenu, hSubMenu, nPos);
4939 SendMessageA(hWnd, WM_INITMENUPOPUP, (WPARAM)hSubMenu, MAKELPARAM(nPos, FALSE));
4941 uStat = GetMenuState(hMenu, cmd, MF_BYCOMMAND);
4945 if (uSysStat != (UINT)-1)
4947 if (uSysStat & (MF_DISABLED|MF_GRAYED))
4948 mesg=4;
4949 else
4950 mesg=WM_SYSCOMMAND;
4952 else
4954 if (uStat != (UINT)-1)
4956 if (IsIconic(hWnd))
4957 mesg=5;
4958 else
4960 if (uStat & (MF_DISABLED|MF_GRAYED))
4961 mesg=6;
4962 else
4963 mesg=WM_COMMAND;
4966 else
4967 mesg=WM_COMMAND;
4971 if( mesg==WM_COMMAND )
4973 TRACE_(accel)(", sending WM_COMMAND, wParam=%0x\n", 0x10000 | cmd);
4974 SendMessageA(hWnd, mesg, 0x10000 | cmd, 0L);
4976 else if( mesg==WM_SYSCOMMAND )
4978 TRACE_(accel)(", sending WM_SYSCOMMAND, wParam=%0x\n", cmd);
4979 SendMessageA(hWnd, mesg, cmd, 0x00010000L);
4981 else
4983 /* some reasons for NOT sending the WM_{SYS}COMMAND message:
4984 * #0: unknown (please report!)
4985 * #1: for WM_KEYUP,WM_SYSKEYUP
4986 * #2: mouse is captured
4987 * #3: window is disabled
4988 * #4: it's a disabled system menu option
4989 * #5: it's a menu option, but window is iconic
4990 * #6: it's a menu option, but disabled
4992 TRACE_(accel)(", but won't send WM_{SYS}COMMAND, reason is #%d\n",mesg);
4993 if(mesg==0)
4994 ERR_(accel)(" unknown reason - please report!");
4996 return TRUE;
4999 /**********************************************************************
5000 * TranslateAccelerator (USER32.@)
5001 * TranslateAcceleratorA (USER32.@)
5002 * TranslateAcceleratorW (USER32.@)
5004 INT WINAPI TranslateAccelerator( HWND hWnd, HACCEL hAccel, LPMSG msg )
5006 /* YES, Accel16! */
5007 LPACCEL16 lpAccelTbl;
5008 int i;
5010 if (msg == NULL)
5012 WARN_(accel)("msg null; should hang here to be win compatible\n");
5013 return 0;
5015 if (!hAccel || !(lpAccelTbl = (LPACCEL16) LockResource16(hAccel)))
5017 WARN_(accel)("invalid accel handle=%x\n", hAccel);
5018 return 0;
5020 if ((msg->message != WM_KEYDOWN &&
5021 msg->message != WM_KEYUP &&
5022 msg->message != WM_SYSKEYDOWN &&
5023 msg->message != WM_SYSKEYUP &&
5024 msg->message != WM_CHAR)) return 0;
5026 TRACE_(accel)("TranslateAccelerators hAccel=%04x, hWnd=%04x,"
5027 "msg->hwnd=%04x, msg->message=%04x, wParam=%08x, lParam=%lx\n",
5028 hAccel,hWnd,msg->hwnd,msg->message,msg->wParam,msg->lParam);
5030 i = 0;
5033 if (translate_accelerator( hWnd, msg->message, msg->wParam, msg->lParam,
5034 lpAccelTbl[i].fVirt, lpAccelTbl[i].key, lpAccelTbl[i].cmd))
5035 return 1;
5036 } while ((lpAccelTbl[i++].fVirt & 0x80) == 0);
5037 WARN_(accel)("couldn't translate accelerator key\n");
5038 return 0;
5042 /**********************************************************************
5043 * TranslateAccelerator (USER.178)
5045 INT16 WINAPI TranslateAccelerator16( HWND16 hWnd, HACCEL16 hAccel, LPMSG16 msg )
5047 LPACCEL16 lpAccelTbl;
5048 int i;
5050 if (msg == NULL)
5052 WARN_(accel)("msg null; should hang here to be win compatible\n");
5053 return 0;
5055 if (!hAccel || !(lpAccelTbl = (LPACCEL16) LockResource16(hAccel)))
5057 WARN_(accel)("invalid accel handle=%x\n", hAccel);
5058 return 0;
5060 if ((msg->message != WM_KEYDOWN &&
5061 msg->message != WM_KEYUP &&
5062 msg->message != WM_SYSKEYDOWN &&
5063 msg->message != WM_SYSKEYUP &&
5064 msg->message != WM_CHAR)) return 0;
5066 TRACE_(accel)("TranslateAccelerators hAccel=%04x, hWnd=%04x,"
5067 "msg->hwnd=%04x, msg->message=%04x, wParam=%04x, lParam=%lx\n",
5068 hAccel,hWnd,msg->hwnd,msg->message,msg->wParam,msg->lParam);
5070 i = 0;
5073 if (translate_accelerator( hWnd, msg->message, msg->wParam, msg->lParam,
5074 lpAccelTbl[i].fVirt, lpAccelTbl[i].key, lpAccelTbl[i].cmd ))
5075 return 1;
5076 } while ((lpAccelTbl[i++].fVirt & 0x80) == 0);
5077 WARN_(accel)("couldn't translate accelerator key\n");
5078 return 0;