final MenuBar.Item menuBarItem = (MenuBar.Item)getComponent();
if (component.isFocused()) {
if (!menuPopup.isOpen()) {
Display display = menuBarItem.getDisplay();
Point menuBarItemLocation = menuBarItem.mapPointToAncestor(display, 0, getHeight());
// TODO Ensure that the popup remains within the bounds of the display
menuPopup.setLocation(menuBarItemLocation.x, menuBarItemLocation.y);
menuPopup.open(menuBarItem);