/******************************************************************************* * Copyright 2011 Google Inc. All Rights Reserved. * * All rights reserved. This program and the accompanying materials * are 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 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *******************************************************************************/ package com.google.gwt.eclipse.oophm.breadcrumbs; import org.eclipse.core.runtime.Assert; import org.eclipse.core.runtime.Platform; import org.eclipse.jdt.internal.ui.viewsupport.ProblemTreeViewer; import org.eclipse.jface.action.Action; import org.eclipse.jface.action.ToolBarManager; import org.eclipse.jface.resource.CompositeImageDescriptor; import org.eclipse.jface.util.Geometry; import org.eclipse.jface.util.OpenStrategy; import org.eclipse.jface.viewers.IOpenListener; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.viewers.ISelectionProvider; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.viewers.ITreeViewerListener; import org.eclipse.jface.viewers.OpenEvent; import org.eclipse.jface.viewers.StructuredSelection; import org.eclipse.jface.viewers.TreeExpansionEvent; import org.eclipse.jface.viewers.TreeViewer; import org.eclipse.swt.SWT; import org.eclipse.swt.events.ControlEvent; import org.eclipse.swt.events.ControlListener; import org.eclipse.swt.events.DisposeEvent; import org.eclipse.swt.events.DisposeListener; import org.eclipse.swt.events.KeyEvent; import org.eclipse.swt.events.KeyListener; import org.eclipse.swt.events.MouseAdapter; import org.eclipse.swt.events.MouseEvent; import org.eclipse.swt.events.MouseListener; import org.eclipse.swt.events.MouseMoveListener; import org.eclipse.swt.events.ShellEvent; import org.eclipse.swt.events.ShellListener; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.graphics.ImageData; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.graphics.RGB; import org.eclipse.swt.graphics.Rectangle; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Item; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Monitor; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.ToolBar; import org.eclipse.swt.widgets.Tree; import org.eclipse.swt.widgets.TreeItem; import org.eclipse.swt.widgets.Widget; /** * The part of the breadcrumb item with the drop down menu. * * NOTE: This code was derived from * org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItemDropDown. * * @since 3.4 */ @SuppressWarnings("restriction") class BreadcrumbItemDropDown { /** * An arrow image descriptor. The images color is related to the list fore- * and background color. This makes the arrow visible even in high contrast * mode. If <code>ltr</code> is true the arrow points to the right, otherwise * it points to the left. */ private final class AccessibelArrowImage extends CompositeImageDescriptor { private final static int ARROW_SIZE = 5; private final boolean fLTR; public AccessibelArrowImage(boolean ltr) { fLTR = ltr; } /* * @see * org.eclipse.jface.resource.CompositeImageDescriptor#drawCompositeImage * (int, int) */ protected void drawCompositeImage(int width, int height) { Display display = fParentComposite.getDisplay(); Image image = new Image(display, ARROW_SIZE, ARROW_SIZE * 2); GC gc = new GC(image); Color triangle = createColor(SWT.COLOR_LIST_FOREGROUND, SWT.COLOR_LIST_BACKGROUND, 20, display); Color aliasing = createColor(SWT.COLOR_LIST_FOREGROUND, SWT.COLOR_LIST_BACKGROUND, 30, display); gc.setBackground(triangle); if (fLTR) { gc.fillPolygon(new int[] { mirror(0), 0, mirror(ARROW_SIZE), ARROW_SIZE, mirror(0), ARROW_SIZE * 2}); } else { gc.fillPolygon(new int[] { ARROW_SIZE, 0, 0, ARROW_SIZE, ARROW_SIZE, ARROW_SIZE * 2}); } gc.setForeground(aliasing); gc.drawLine(mirror(0), 1, mirror(ARROW_SIZE - 1), ARROW_SIZE); gc.drawLine(mirror(ARROW_SIZE - 1), ARROW_SIZE, mirror(0), ARROW_SIZE * 2 - 1); gc.dispose(); triangle.dispose(); aliasing.dispose(); ImageData imageData = image.getImageData(); for (int y = 1; y < ARROW_SIZE; y++) { for (int x = 0; x < y; x++) { imageData.setAlpha(mirror(x), y, 255); } } for (int y = 0; y < ARROW_SIZE; y++) { for (int x = 0; x <= y; x++) { imageData.setAlpha(mirror(x), ARROW_SIZE * 2 - y - 1, 255); } } int offset = fLTR ? 0 : -1; drawImage(imageData, (width / 2) - (ARROW_SIZE / 2) + offset, (height / 2) - ARROW_SIZE - 1); image.dispose(); } /* * @see org.eclipse.jface.resource.CompositeImageDescriptor#getSize() */ protected Point getSize() { return new Point(10, 16); } private Color createColor(int color1, int color2, int ratio, Display display) { RGB rgb1 = display.getSystemColor(color1).getRGB(); RGB rgb2 = display.getSystemColor(color2).getRGB(); RGB blend = ColorBlender.blend(rgb2, rgb1, ratio); return new Color(display, blend); } private int mirror(int x) { if (fLTR) return x; return ARROW_SIZE - x - 1; } } /** * Tells whether this class is in debug mode. * * @since 3.5 */ private static boolean DEBUG = "true".equalsIgnoreCase(Platform.getDebugOption("org.eclipse.jdt.ui/debug/BreadcrumbItemDropDown")); //$NON-NLS-1$//$NON-NLS-2$ private static final boolean IS_MAC_WORKAROUND = "carbon".equals(SWT.getPlatform()); //$NON-NLS-1$ private static final int DROP_DOWN_HIGHT = 300; private static final int DROP_DOWN_WIDTH = 500; /** * Returns the monitor whose client area contains the given point. If no * monitor contains the point, returns the monitor that is closest to the * point. * <p> * Copied from * <code>org.eclipse.jface.window.Window.getClosestMonitor(Display, Point)</code> * </p> * * @param display the display showing the monitors * @param point point to find (display coordinates) * @return the monitor closest to the given point */ private static Monitor getClosestMonitor(Display display, Point point) { int closest = Integer.MAX_VALUE; Monitor[] monitors = display.getMonitors(); Monitor result = monitors[0]; for (int i = 0; i < monitors.length; i++) { Monitor current = monitors[i]; Rectangle clientArea = current.getClientArea(); if (clientArea.contains(point)) return current; int distance = Geometry.distanceSquared(Geometry.centerPoint(clientArea), point); if (distance < closest) { closest = distance; result = current; } } return result; } private final BreadcrumbItem fParent; private final Composite fParentComposite; private final ToolBar fToolBar; private boolean fMenuIsShown; private boolean fEnabled; private TreeViewer fDropDownViewer; private Shell fShell; public BreadcrumbItemDropDown(BreadcrumbItem parent, Composite composite) { fParent = parent; fParentComposite = composite; fMenuIsShown = false; fEnabled = true; fToolBar = new ToolBar(composite, SWT.FLAT); fToolBar.setLayoutData(new GridData(SWT.END, SWT.CENTER, false, false)); // SWTUtil.setAccessibilityText( // fToolBar, // BreadcrumbMessages.BreadcrumbItemDropDown_showDropDownMenu_action_toolTip); ToolBarManager manager = new ToolBarManager(fToolBar); final Action showDropDownMenuAction = new Action(null, SWT.NONE) { public void run() { Shell shell = fParent.getDropDownShell(); if (shell != null) return; shell = fParent.getViewer().getDropDownShell(); if (shell != null) shell.close(); showMenu(); fShell.setFocus(); } }; showDropDownMenuAction.setImageDescriptor(new AccessibelArrowImage(isLTR())); // showDropDownMenuAction.setToolTipText(BreadcrumbMessages.BreadcrumbItemDropDown_showDropDownMenu_action_toolTip); manager.add(showDropDownMenuAction); manager.update(true); if (IS_MAC_WORKAROUND) { manager.getControl().addMouseListener(new MouseAdapter() { // see also BreadcrumbItemDetails#addElementListener(Control) public void mouseDown(MouseEvent e) { showDropDownMenuAction.run(); } }); } } /** * Returns the drop down selection provider. * * @return the selection provider of the drop down if {@link #isMenuShown()}, * <code>null</code> otherwise */ public ISelectionProvider getDropDownSelectionProvider() { if (!fMenuIsShown) return null; return fDropDownViewer; } /** * Returns the shell used for the drop down menu if it is shown. * * @return the drop down shell or <code>null</code> */ public Shell getDropDownShell() { if (!isMenuShown()) return null; return fShell; } /** * Return the width of this element. * * @return the width of this element */ public int getWidth() { return fToolBar.computeSize(SWT.DEFAULT, SWT.DEFAULT).x; } /** * Tells whether the menu is shown. * * @return true if the menu is open */ public boolean isMenuShown() { return fMenuIsShown; } /** * Set whether the drop down menu is available. * * @param enabled true if available */ public void setEnabled(boolean enabled) { fEnabled = enabled; fToolBar.setVisible(enabled); } /** * Opens the drop down menu. */ public void showMenu() { if (DEBUG) System.out.println("BreadcrumbItemDropDown.showMenu()"); //$NON-NLS-1$ if (!fEnabled || fMenuIsShown) return; fMenuIsShown = true; fShell = new Shell(fToolBar.getShell(), SWT.TOOL | SWT.ON_TOP); if (DEBUG) System.out.println(" creating new shell"); //$NON-NLS-1$ GridLayout layout = new GridLayout(1, false); layout.marginHeight = 0; layout.marginWidth = 0; fShell.setLayout(layout); Composite composite = new Composite(fShell, SWT.NONE); composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); GridLayout gridLayout = new GridLayout(1, false); gridLayout.marginHeight = 0; gridLayout.marginWidth = 0; composite.setLayout(gridLayout); fDropDownViewer = new ProblemTreeViewer(composite, SWT.SINGLE | SWT.H_SCROLL | SWT.V_SCROLL); fDropDownViewer.setUseHashlookup(true); final Tree tree = (Tree) fDropDownViewer.getControl(); tree.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); Object input = fParent.getData(); fParent.getViewer().configureDropDownViewer(fDropDownViewer, input); fDropDownViewer.setInput(input); setShellBounds(fShell); fDropDownViewer.addOpenListener(new IOpenListener() { public void open(OpenEvent event) { if (DEBUG) System.out.println("BreadcrumbItemDropDown.showMenu()$treeViewer>open"); //$NON-NLS-1$ ISelection selection = event.getSelection(); if (!(selection instanceof IStructuredSelection)) return; Object element = ((IStructuredSelection) selection).getFirstElement(); if (element == null) return; openElement(element); } }); tree.addMouseListener(new MouseListener() { public void mouseDoubleClick(MouseEvent e) { } public void mouseDown(MouseEvent e) { } public void mouseUp(MouseEvent e) { if (DEBUG) System.out.println("BreadcrumbItemDropDown.showMenu()$treeViewer>mouseUp"); //$NON-NLS-1$ if (e.button != 1) return; if ((OpenStrategy.getOpenMethod() & OpenStrategy.SINGLE_CLICK) != 0) return; Item item = tree.getItem(new Point(e.x, e.y)); if (item == null) return; openElement(item.getData()); } }); tree.addMouseMoveListener(new MouseMoveListener() { TreeItem fLastItem = null; public void mouseMove(MouseEvent e) { if (tree.equals(e.getSource())) { Object o = tree.getItem(new Point(e.x, e.y)); if (o instanceof TreeItem) { Rectangle clientArea = tree.getClientArea(); TreeItem currentItem = (TreeItem) o; if (!o.equals(fLastItem)) { fLastItem = (TreeItem) o; tree.setSelection(new TreeItem[] {fLastItem}); } else if (e.y - clientArea.y < tree.getItemHeight() / 4) { // Scroll up if (currentItem.getParentItem() == null) { int index = tree.indexOf((TreeItem) o); if (index < 1) return; fLastItem = tree.getItem(index - 1); tree.setSelection(new TreeItem[] {fLastItem}); } else { Point p = tree.toDisplay(e.x, e.y); Item item = fDropDownViewer.scrollUp(p.x, p.y); if (item instanceof TreeItem) { fLastItem = (TreeItem) item; tree.setSelection(new TreeItem[] {fLastItem}); } } } else if (clientArea.y + clientArea.height - e.y < tree.getItemHeight() / 4) { // Scroll down if (currentItem.getParentItem() == null) { int index = tree.indexOf((TreeItem) o); if (index >= tree.getItemCount() - 1) return; fLastItem = tree.getItem(index + 1); tree.setSelection(new TreeItem[] {fLastItem}); } else { Point p = tree.toDisplay(e.x, e.y); Item item = fDropDownViewer.scrollDown(p.x, p.y); if (item instanceof TreeItem) { fLastItem = (TreeItem) item; tree.setSelection(new TreeItem[] {fLastItem}); } } } } } } }); tree.addKeyListener(new KeyListener() { public void keyPressed(KeyEvent e) { if (e.keyCode == SWT.ARROW_UP) { TreeItem[] selection = tree.getSelection(); if (selection.length != 1) return; int selectionIndex = tree.indexOf(selection[0]); if (selectionIndex != 0) return; fShell.close(); } } public void keyReleased(KeyEvent e) { } }); fDropDownViewer.addTreeListener(new ITreeViewerListener() { public void treeCollapsed(TreeExpansionEvent event) { } public void treeExpanded(TreeExpansionEvent event) { tree.setRedraw(false); fShell.getDisplay().asyncExec(new Runnable() { public void run() { if (fShell.isDisposed()) return; try { resizeShell(fShell); } finally { tree.setRedraw(true); } } }); } }); int index = fParent.getViewer().getIndexOfItem(fParent); if (index < fParent.getViewer().getItemCount() - 1) { BreadcrumbItem childItem = fParent.getViewer().getItem(index + 1); Object child = childItem.getData(); fDropDownViewer.setSelection(new StructuredSelection(child), true); TreeItem[] selection = tree.getSelection(); if (selection.length > 0) { tree.setTopItem(selection[0]); } } fShell.setVisible(true); installCloser(fShell); } /** * The closer closes the given shell when the focus is lost. * * @param shell the shell to install the closer to */ private void installCloser(final Shell shell) { final Listener focusListener = new Listener() { public void handleEvent(Event event) { Widget focusElement = event.widget; boolean isFocusBreadcrumbTreeFocusWidget = focusElement == shell || focusElement instanceof Tree && ((Tree) focusElement).getShell() == shell; boolean isFocusWidgetParentShell = focusElement instanceof Control && ((Control) focusElement).getShell().getParent() == shell; switch (event.type) { case SWT.FocusIn: if (DEBUG) System.out.println("focusIn - is breadcrumb tree: " + isFocusBreadcrumbTreeFocusWidget); //$NON-NLS-1$ if (!isFocusBreadcrumbTreeFocusWidget && !isFocusWidgetParentShell) { if (DEBUG) System.out.println("==> closing shell since focus in other widget"); //$NON-NLS-1$ shell.close(); } break; case SWT.FocusOut: if (DEBUG) System.out.println("focusOut - is breadcrumb tree: " + isFocusBreadcrumbTreeFocusWidget); //$NON-NLS-1$ if (event.display.getActiveShell() == null) { if (DEBUG) System.out.println("==> closing shell since event.display.getActiveShell() == null"); //$NON-NLS-1$ shell.close(); } break; default: Assert.isTrue(false); } } }; final Display display = shell.getDisplay(); display.addFilter(SWT.FocusIn, focusListener); display.addFilter(SWT.FocusOut, focusListener); final ControlListener controlListener = new ControlListener() { public void controlMoved(ControlEvent e) { shell.close(); } public void controlResized(ControlEvent e) { shell.close(); } }; fToolBar.getShell().addControlListener(controlListener); shell.addDisposeListener(new DisposeListener() { public void widgetDisposed(DisposeEvent e) { if (DEBUG) System.out.println("==> shell disposed"); //$NON-NLS-1$ display.removeFilter(SWT.FocusIn, focusListener); display.removeFilter(SWT.FocusOut, focusListener); if (!fToolBar.isDisposed()) { fToolBar.getShell().removeControlListener(controlListener); } } }); shell.addShellListener(new ShellListener() { public void shellActivated(ShellEvent e) { } public void shellClosed(ShellEvent e) { if (DEBUG) System.out.println("==> shellClosed"); //$NON-NLS-1$ if (!fMenuIsShown) return; fMenuIsShown = false; fDropDownViewer = null; } public void shellDeactivated(ShellEvent e) { } public void shellDeiconified(ShellEvent e) { } public void shellIconified(ShellEvent e) { } }); } /** * Tells whether this the breadcrumb is in LTR or RTL mode. * * @return <code>true</code> if the breadcrumb in left-to-right mode, * <code>false</code> otherwise */ private boolean isLTR() { return (fParentComposite.getStyle() & SWT.RIGHT_TO_LEFT) == 0; } private void openElement(Object data) { if (data == null) return; // This might or might not open an editor fParent.getViewer().fireMenuSelection(data); boolean treeHasFocus = !fShell.isDisposed() && fDropDownViewer.getTree().isFocusControl(); if (DEBUG) { System.out.println(" isDisposed: " + fShell.isDisposed()); //$NON-NLS-1$ System.out.println(" shell hasFocus: " + (!fShell.isDisposed() && fShell.isFocusControl())); //$NON-NLS-1$ System.out.println(" tree hasFocus: " + treeHasFocus); //$NON-NLS-1$ } if (fShell.isDisposed()) return; if (!treeHasFocus) { fShell.close(); return; } toggleExpansionState(data); } /** * Set the size of the given shell such that more content can be shown. The * shell size does not exceed {@link #DROP_DOWN_HIGHT} and * {@link #DROP_DOWN_WIDTH}. * * @param shell the shell to resize */ private void resizeShell(final Shell shell) { Point size = shell.getSize(); int currentWidth = size.x; int currentHeight = size.y; if (currentHeight >= DROP_DOWN_HIGHT && currentWidth >= DROP_DOWN_WIDTH) return; Point preferedSize = shell.computeSize(SWT.DEFAULT, SWT.DEFAULT, true); int newWidth; if (currentWidth >= DROP_DOWN_WIDTH) { newWidth = currentWidth; } else { newWidth = Math.min(Math.max(preferedSize.x, currentWidth), DROP_DOWN_WIDTH); } int newHeight; if (currentHeight >= DROP_DOWN_HIGHT) { newHeight = currentHeight; } else { newHeight = Math.min(Math.max(preferedSize.y, currentHeight), DROP_DOWN_HIGHT); } if (newHeight != currentHeight || newWidth != currentWidth) { shell.setRedraw(false); try { shell.setSize(newWidth, newHeight); if (!isLTR()) { Point location = shell.getLocation(); shell.setLocation(location.x - (newWidth - currentWidth), location.y); } } finally { shell.setRedraw(true); } } } /** * Calculates a useful size for the given shell. * * @param shell the shell to calculate the size for. */ private void setShellBounds(Shell shell) { Rectangle rect = fParentComposite.getBounds(); Rectangle toolbarBounds = fToolBar.getBounds(); shell.pack(); Point size = shell.getSize(); int height = Math.min(size.y, DROP_DOWN_HIGHT); int width = Math.max(Math.min(size.x, DROP_DOWN_WIDTH), 250); int imageBoundsX = 0; if (fDropDownViewer.getTree().getItemCount() > 0) { TreeItem item = fDropDownViewer.getTree().getItem(0); imageBoundsX = item.getImageBounds(0).x; } Rectangle trim = fShell.computeTrim(0, 0, width, height); int x = toolbarBounds.x + toolbarBounds.width + 2 + trim.x - imageBoundsX; if (!isLTR()) x += width; Point pt = new Point(x, rect.y + rect.height); pt = fParentComposite.toDisplay(pt); Rectangle monitor = getClosestMonitor(shell.getDisplay(), pt).getClientArea(); int overlap = (pt.x + width) - (monitor.x + monitor.width); if (overlap > 0) pt.x -= overlap; if (pt.x < monitor.x) pt.x = monitor.x; shell.setLocation(pt); shell.setSize(width, height); } private void toggleExpansionState(Object element) { Tree tree = fDropDownViewer.getTree(); if (fDropDownViewer.getExpandedState(element)) fDropDownViewer.collapseToLevel(element, 1); else { tree.setRedraw(false); try { fDropDownViewer.expandToLevel(element, 1); resizeShell(fShell); } finally { tree.setRedraw(true); } } } }