/******************************************************************************* * Copyright (c) 2006 Business Objects Software Limited and others. * All rights reserved. * This file is made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Business Objects Software Limited - initial API and implementation based on Eclipse 3.1.2 code for * /org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/QuickMenuAction.java * Eclipse source is available at: http://www.eclipse.org/downloads/ *******************************************************************************/ /* * QuickMenuAction.java * Creation date: Feb 23, 2006. * By: Edward Lam */ package org.openquark.cal.eclipse.ui.actions; import java.util.ArrayList; import java.util.List; import org.eclipse.swt.custom.StyledText; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.graphics.Rectangle; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Menu; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.TableItem; import org.eclipse.swt.widgets.Tree; import org.eclipse.swt.widgets.TreeItem; import org.eclipse.jface.action.Action; import org.eclipse.jface.action.IMenuManager; import org.eclipse.jface.action.MenuManager; import org.eclipse.ui.PlatformUI; import org.eclipse.ui.commands.ICommand; import org.eclipse.ui.commands.ICommandManager; import org.eclipse.ui.commands.IKeySequenceBinding; import org.openquark.cal.eclipse.ui.util.Messages; import org.openquark.util.UnsafeCast; /** * A quick menu actions provides support to assign short cuts * to sub menus. * * @since 3.0 */ public abstract class QuickMenuAction extends Action { private static final int CHAR_INDENT = 3; /** * Creates a new quick menu action with the given command id. * * @param commandId the command id of the short cut used to open the sub menu */ public QuickMenuAction(String commandId) { setActionDefinitionId(commandId); } /** * {@inheritDoc} */ @Override public void run() { Display display = Display.getCurrent(); if (display == null) { return; } Control focus = display.getFocusControl(); if (focus == null || focus.isDisposed()) { return; } MenuManager menu = new MenuManager(); fillMenu(menu); final Menu widget = menu.createContextMenu(focus.getShell()); Point location = computeMenuLocation(focus, widget); if (location == null) { return; } widget.setLocation(location); widget.setVisible(true); while (!widget.isDisposed() && widget.isVisible()) { if (!display.readAndDispatch()) { display.sleep(); } } if (!widget.isDisposed()) { widget.dispose(); } } /** * Hook to fill a menu manager with the items of the sub menu. * * @param menu the sub menu to fill */ protected abstract void fillMenu(IMenuManager menu); /** * Adds the shortcut to the given menu text and returns it. * * @param menuText the menu text * @return the menu text with the shortcut * @since 3.1 */ public String addShortcut(String menuText) { String shortcut = getShortcutString(); if (menuText == null || shortcut == null) { return menuText; } String[] args = new String[]{menuText, shortcut}; return Messages.format(ActionMessages.QuickMenuAction_menuTextWithShortcut, args); } /** * Returns the shortcut assigned to the sub menu or <code>null</code> if * no short cut is assigned. * * @return the shortcut as a human readable string or <code>null</code> */ private String getShortcutString() { final ICommandManager commandManager = PlatformUI.getWorkbench().getCommandSupport().getCommandManager(); final ICommand command = commandManager.getCommand(getActionDefinitionId()); if (command.isDefined()) { List<IKeySequenceBinding> l = UnsafeCast.unsafeCast(command.getKeySequenceBindings()); if (!l.isEmpty()) { IKeySequenceBinding binding = l.get(0); return binding.getKeySequence().format(); } } return null; } private Point computeMenuLocation(Control focus, Menu menu) { Point cursorLocation = focus.getDisplay().getCursorLocation(); Rectangle clientArea = null; Point result = null; if (focus instanceof StyledText) { StyledText styledText = (StyledText)focus; clientArea = styledText.getClientArea(); result = computeMenuLocation(styledText); } else if (focus instanceof Tree) { Tree tree = (Tree)focus; clientArea = tree.getClientArea(); result = computeMenuLocation(tree); } else if (focus instanceof Table) { Table table = (Table)focus; clientArea = table.getClientArea(); result = computeMenuLocation(table); } if (result == null) { result = focus.toControl(cursorLocation); } if (clientArea != null && !clientArea.contains(result)) { result = new Point( clientArea.x + clientArea.width / 2, clientArea.y + clientArea.height / 2); } Rectangle shellArea= focus.getShell().getClientArea(); if (!shellArea.contains(focus.getShell().toControl(focus.toDisplay(result)))) { result = new Point( shellArea.x + shellArea.width / 2, shellArea.y + shellArea.height / 2); } return focus.toDisplay(result); } /** * Hook to compute the menu location if the focus widget is * a styled text widget. * * @param text the styled text widget that has the focus * * @return a widget relative position of the menu to pop up or * <code>null</code> if now position inside the widget can * be computed */ protected Point computeMenuLocation(StyledText text) { Point result = text.getLocationAtOffset(text.getCaretOffset()); result.y += text.getLineHeight(); if (!text.getClientArea().contains(result)) { return null; } return result; } /** * Hook to compute the menu location if the focus widget is * a tree widget. * * @param tree the tree widget that has the focus * * @return a widget relative position of the menu to pop up or * <code>null</code> if now position inside the widget can * be computed */ protected Point computeMenuLocation(Tree tree) { TreeItem[] items = tree.getSelection(); Rectangle clientArea = tree.getClientArea(); switch (items.length) { case 0: return null; case 1: Rectangle bounds = items[0].getBounds(); Rectangle intersect = clientArea.intersection(bounds); if (intersect != null && intersect.height == bounds.height) { return new Point( Math.max(0, bounds.x + getAvarageCharWith(tree) * CHAR_INDENT), bounds.y + bounds.height); } else { return null; } default: Rectangle[] rectangles = new Rectangle[items.length]; for (int i = 0; i < rectangles.length; i++) { rectangles[i] = items[i].getBounds(); } Point cursorLocation = tree.getDisplay().getCursorLocation(); Point result = findBestLocation(getIncludedPositions(rectangles, clientArea), tree.toControl(cursorLocation)); if (result != null) { result.x = result.x + getAvarageCharWith(tree) * CHAR_INDENT; } return result; } } /** * Hook to compute the menu location if the focus widget is * a table widget. * * @param table the table widget that has the focus * * @return a widget relative position of the menu to pop up or * <code>null</code> if now position inside the widget can * be computed */ protected Point computeMenuLocation(Table table) { TableItem[] items = table.getSelection(); Rectangle clientArea = table.getClientArea(); switch (items.length) { case 0: { return null; } case 1: { Rectangle bounds = items[0].getBounds(0); Rectangle iBounds = items[0].getImageBounds(0); Rectangle intersect = clientArea.intersection(bounds); if (intersect != null && intersect.height == bounds.height) { return new Point( Math.max(0, bounds.x + iBounds.width + getAvarageCharWith(table) * CHAR_INDENT), bounds.y + bounds.height); } else { return null; } } default: { Rectangle[] rectangles = new Rectangle[items.length]; for (int i = 0; i < rectangles.length; i++) { rectangles[i] = items[i].getBounds(0); } Rectangle iBounds = items[0].getImageBounds(0); Point cursorLocation = table.getDisplay().getCursorLocation(); Point result = findBestLocation(getIncludedPositions(rectangles, clientArea), table.toControl(cursorLocation)); if (result != null) { result.x = result.x + iBounds.width + getAvarageCharWith(table) * CHAR_INDENT; } return result; } } } private Point[] getIncludedPositions(Rectangle[] rectangles, Rectangle widgetBounds) { List<Point> result = new ArrayList<Point>(); for (final Rectangle rectangle : rectangles) { Rectangle intersect = widgetBounds.intersection(rectangle); if (intersect != null && intersect.height == rectangle.height) { result.add(new Point(intersect.x, intersect.y + intersect.height)); } } return result.toArray(new Point[result.size()]); } private Point findBestLocation(Point[] points, Point relativeCursor) { Point result = null; double bestDist = Double.MAX_VALUE; for (final Point point : points) { int a = 0; int b = 0; if (point.x > relativeCursor.x) { a = point.x - relativeCursor.x; } else { a = relativeCursor.x - point.x; } if (point.y > relativeCursor.y) { b = point.y - relativeCursor.y; } else { b = relativeCursor.y - point.y; } double dist = Math.sqrt(a * a + b * b); if (dist < bestDist) { result = point; bestDist = dist; } } return result; } private int getAvarageCharWith(Control control) { GC gc = null; try { gc = new GC(control); return gc.getFontMetrics().getAverageCharWidth(); } finally { if (gc != null) { gc.dispose(); } } } }