Same thing as previous commit, only for BMenuBar. Added some other

comment


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23280 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2008-01-07 16:13:14 +00:00
parent 14e826c4ba
commit 8d44324fda
2 changed files with 29 additions and 25 deletions

View File

@ -1405,6 +1405,11 @@ BMenu::_Track(int *action, long start)
int submenuAction = MENU_STATE_TRACKING;
BMenu *submenu = fSelected->Submenu();
submenu->_SetStickyMode(_IsStickyMode());
// The following call blocks until the submenu
// gives control back to us, either because the mouse
// pointer goes out of the submenu's bounds, or because
// the user closes the menu
BMenuItem *submenuItem = submenu->_Track(&submenuAction);
if (submenuAction == MENU_STATE_CLOSED) {
item = submenuItem;

View File

@ -465,10 +465,9 @@ BMenuBar::_Track(int32 *action, int32 startIndex, bool showMenu)
window->Unlock();
}
while (true) {
while (fState != MENU_STATE_CLOSED) {
bigtime_t snoozeAmount = 40000;
bool locked = (Window() != NULL && window->Lock());//WithTimeout(200000)
if (!locked)
if (Window() == NULL || !window->Lock())
break;
BMenuItem *menuItem = _HitTestItems(where, B_ORIGIN);
@ -504,7 +503,6 @@ BMenuBar::_Track(int32 *action, int32 startIndex, bool showMenu)
// is over its window
BMenu *menu = fSelected->Submenu();
window->Unlock();
locked = false;
snoozeAmount = 30000;
bool wasSticky = _IsStickyMode();
menu->_SetStickyMode(wasSticky);
@ -535,35 +533,36 @@ BMenuBar::_Track(int32 *action, int32 startIndex, bool showMenu)
} else
fState = MENU_STATE_CLOSED;
}
if (!window->Lock())
break;
} else if (menuItem == NULL && fSelected != NULL
&& !_IsStickyMode() && Bounds().Contains(where)) {
_SelectItem(NULL);
fState = MENU_STATE_TRACKING;
}
if (!locked)
locked = window->Lock();
if (locked) {
GetMouse(&where, &buttons, true);
window->Unlock();
locked = false;
}
window->Unlock();
if (fState != MENU_STATE_CLOSED) {
if (snoozeAmount > 0)
snooze(snoozeAmount);
if (window->Lock()) {
GetMouse(&where, &buttons, true);
window->Unlock();
}
if (fState == MENU_STATE_CLOSED
|| (buttons != 0 && _IsStickyMode() && menuItem == NULL))
break;
else if (buttons == 0 && !_IsStickyMode()) {
if ((fSelected != NULL && fSelected->Submenu() == NULL)
|| menuItem == NULL) {
fChosenItem = fSelected;
break;
} else
_SetStickyMode(true);
if ((buttons != 0 && _IsStickyMode() && menuItem == NULL))
fState = MENU_STATE_CLOSED;
else if (buttons == 0 && !_IsStickyMode()) {
if ((fSelected != NULL && fSelected->Submenu() == NULL)
|| menuItem == NULL) {
fChosenItem = fSelected;
fState = MENU_STATE_CLOSED;
} else
_SetStickyMode(true);
}
}
if (snoozeAmount > 0)
snooze(snoozeAmount);
}
if (window->Lock()) {