Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.intro')
-rw-r--r--org.eclipse.ui.intro/schema/config.exsd29
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/IntroPluginResources.properties2
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/LaunchBarElement.java53
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java748
4 files changed, 633 insertions, 199 deletions
diff --git a/org.eclipse.ui.intro/schema/config.exsd b/org.eclipse.ui.intro/schema/config.exsd
index 48cfb49e1..b2cf8384e 100644
--- a/org.eclipse.ui.intro/schema/config.exsd
+++ b/org.eclipse.ui.intro/schema/config.exsd
@@ -18,6 +18,7 @@ The intros are organized into pages which usually reflect a particular category
<element name="extension">
<complexType>
<sequence>
+ <element ref="handle" minOccurs="0" maxOccurs="1"/>
<element ref="config" minOccurs="1" maxOccurs="unbounded"/>
</sequence>
<attribute name="point" type="string" use="required">
@@ -168,6 +169,7 @@ The content file is parsed at run time by the intro framework. Based on the sett
</annotation>
<complexType>
<sequence>
+ <element ref="handle" minOccurs="0" maxOccurs="1"/>
<element ref="shortcut" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="location" use="default" value="right">
@@ -241,6 +243,33 @@ The content file is parsed at run time by the intro framework. Based on the sett
</complexType>
</element>
+ <element name="handle">
+ <annotation>
+ <documentation>
+ an optional element that controls how launch bar handle is rendered.
+ </documentation>
+ </annotation>
+ <complexType>
+ <attribute name="close" type="boolean" use="default" value="true">
+ <annotation>
+ <documentation>
+ an optional flag that controls if the handle will have a close button (default is &lt;code&gt;true&lt;/code&gt;).
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="image" type="string">
+ <annotation>
+ <documentation>
+ a plug-in-relative path of the branding image to be tiled on the handle.
+ </documentation>
+ <appInfo>
+ <meta.attribute kind="resource"/>
+ </appInfo>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
<annotation>
<appInfo>
<meta.section type="since"/>
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/IntroPluginResources.properties b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/IntroPluginResources.properties
index f269cf304..a0c8b3ccb 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/IntroPluginResources.properties
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/IntroPluginResources.properties
@@ -57,5 +57,5 @@ StaticHTML.welcome = Welcome...
IntroPart.showContentButton_tooltip = Show Intro Tree
-IntroLaunchBar.close.tooltip=Close this bar
+IntroLaunchBar.close.tooltip=Close
IntroLaunchBar.restore.tooltip=Return to Welcome
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/LaunchBarElement.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/LaunchBarElement.java
index 9560f3d82..6a069411f 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/LaunchBarElement.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/LaunchBarElement.java
@@ -13,7 +13,9 @@ package org.eclipse.ui.internal.intro.impl.model;
import java.util.ArrayList;
import org.eclipse.core.runtime.IConfigurationElement;
+import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.swt.SWT;
+import org.eclipse.ui.internal.intro.impl.util.ImageUtil;
import org.osgi.framework.Bundle;
import org.w3c.dom.Element;
@@ -30,8 +32,11 @@ public class LaunchBarElement extends AbstractIntroElement {
private static final String ATT_LOCATION = "location"; //$NON-NLS-1$
private static final String ATT_BG = "bg"; //$NON-NLS-1$
private static final String ATT_FG = "fg"; //$NON-NLS-1$
-
+ private static final String ATT_CLOSE = "close"; //$NON-NLS-1$
+ private static final String ATT_IMAGE = "image"; //$NON-NLS-1$
+
private static final String TAG_SHORTCUT = "shortcut"; //$NON-NLS-1$
+ private static final String TAG_HANDLE = "handle"; //$NON-NLS-1$
private ArrayList shortcuts;
@@ -89,6 +94,52 @@ public class LaunchBarElement extends AbstractIntroElement {
public String getForeground() {
return getCfgElement().getAttribute(ATT_FG);
}
+
+ public boolean getCreateHandle() {
+ return getHandleElement()!=null;
+ }
+
+ public boolean getClose() {
+ IConfigurationElement handle = getHandleElement();
+ if (handle!=null) {
+ String value = handle.getAttribute(ATT_CLOSE);
+ return value==null || value.equals("true");
+ }
+ return true;
+ }
+
+ /**
+ * Returns the relative icon path of the handle image.
+ *
+ * @return
+ */
+ private String getHandleImage() {
+ IConfigurationElement handle = getHandleElement();
+ if (handle==null)
+ return null;
+ return handle.getAttribute(ATT_IMAGE);
+ }
+
+ /**
+ * Returns the icon image of the handle, or <code>null</code> if not
+ * defined or found.
+ *
+ * @return
+ */
+ public ImageDescriptor getHandleImageDescriptor() {
+ String path = getHandleImage();
+ if (path==null)
+ return null;
+ return ImageUtil.createImageDescriptor(getBundle(), path);
+ }
+
+ private IConfigurationElement getHandleElement() {
+ IConfigurationElement[] children = getCfgElement().getChildren(
+ TAG_HANDLE);
+ if (children.length>0)
+ return children[0];
+ return null;
+ }
/**
* Returns an array of shorcut elements.
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java
index 214bca9c4..3ed9f06a6 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java
@@ -17,22 +17,29 @@ import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.jface.action.MenuManager;
import org.eclipse.jface.action.Separator;
import org.eclipse.jface.action.ToolBarManager;
+import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.util.Geometry;
import org.eclipse.swt.SWT;
+import org.eclipse.swt.events.DisposeEvent;
+import org.eclipse.swt.events.DisposeListener;
+import org.eclipse.swt.events.MouseEvent;
+import org.eclipse.swt.events.MouseListener;
+import org.eclipse.swt.events.MouseTrackListener;
import org.eclipse.swt.events.PaintEvent;
import org.eclipse.swt.events.PaintListener;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.GC;
+import org.eclipse.swt.graphics.Image;
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.Layout;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.ToolBar;
+import org.eclipse.ui.IWorkbenchPreferenceConstants;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.internal.RectangleAnimation;
@@ -46,206 +53,553 @@ import org.eclipse.ui.intro.config.CustomizableIntroPart;
import org.eclipse.ui.intro.config.IIntroURL;
import org.eclipse.ui.intro.config.IntroURLFactory;
-
/**
* This class is responsible for creating the intro launch bar in the provided
* parent. It creates 'restore' and 'close' actions, as well as actions for each
* shortcut element contributed in the extension point.
*
- * @author dejan
- *
+ * @since 3.1
*/
public class IntroLaunchBar {
- private Composite container;
- private ToolBarManager toolBarManager;
-
- private int orientation;
-
- private String lastPageId;
-
- private Action closeAction;
-
- private LaunchBarElement element;
- private Color fg;
- private Color bg;
-
- public IntroLaunchBar(int orientation, String lastPageId,
- LaunchBarElement element) {
- this.orientation = orientation;
- this.lastPageId = lastPageId;
- this.element = element;
- }
-
- public void createControl(Composite parent) {
- container = new Composite(parent, SWT.NULL);
- GridLayout layout = new GridLayout();
- container.setLayout(layout);
- layout.marginWidth = 1;
- layout.marginHeight = 1;
- toolBarManager = new ToolBarManager(SWT.FLAT | orientation);
- fillToolBar();
- toolBarManager.createControl(container);
- ToolBar toolBar = toolBarManager.getControl();
- computeColors(parent.getDisplay());
- // new ToolItem(toolBar, SWT.SEPARATOR);
- if (bg != null)
- toolBar.setBackground(bg);
- toolBar.setLayoutData(new GridData(GridData.FILL_BOTH));
- container.addPaintListener(new PaintListener() {
- public void paintControl(PaintEvent e) {
- GC gc = e.gc;
- Color color = fg;
- if (color == null)
- color = e.display
- .getSystemColor(SWT.COLOR_WIDGET_NORMAL_SHADOW);
- gc.setForeground(color);
- Point size = container.getSize();
- gc.drawRectangle(0, 0, size.x - 1, size.y - 1);
- }
- });
- MenuManager manager = new MenuManager();
- IMenuListener listener = new IMenuListener() {
- public void menuAboutToShow(IMenuManager manager) {
- contextMenuAboutToShow(manager);
- }
- };
- manager.setRemoveAllWhenShown(true);
- manager.addMenuListener(listener);
- Menu contextMenu = manager.createContextMenu(toolBarManager
- .getControl());
- toolBarManager.getControl().setMenu(contextMenu);
- IntroPlugin.getDefault().setLaunchBar(this);
- }
-
- private void computeColors(Display display) {
- if (element.getBackground() != null) {
- RGB r = SharedStyleManager.parseRGB(element.getBackground());
- if (r != null)
- bg = new Color(display, r);
- }
- if (element.getForeground() != null) {
- RGB r = SharedStyleManager.parseRGB(element.getForeground());
- if (r != null)
- fg = new Color(display, r);
- }
- }
-
- public Control getControl() {
- return container;
- }
-
- public void dispose() {
- container.dispose();
- toolBarManager.dispose();
- toolBarManager.removeAll();
- toolBarManager = null;
- container = null;
- if (bg != null)
- bg.dispose();
- if (fg != null)
- fg.dispose();
- }
-
- private void fillToolBar() {
- Action action;
-
- closeAction = new Action("close") { //$NON-NLS-1$
- public void run() {
- closeLaunchBar(false);
- }
- };
- closeAction
- .setText(IntroPlugin.getString("IntroLaunchBar.close.label")); //$NON-NLS-1$
- closeAction.setToolTipText(IntroPlugin
- .getString("IntroLaunchBar.close.tooltip")); //$NON-NLS-1$
- closeAction.setImageDescriptor(ImageUtil
- .createImageDescriptor("full/elcl16/close_view.gif")); //$NON-NLS-1$
-
- action = new Action("restore") { //$NON-NLS-1$
- public void run() {
- openPage(lastPageId);
- }
- };
- action.setToolTipText(IntroPlugin
- .getString("IntroLaunchBar.restore.tooltip")); //$NON-NLS-1$
- action.setImageDescriptor(ImageUtil
- .createImageDescriptor("full/etool16/restore_welcome.gif")); //$NON-NLS-1$
- toolBarManager.add(closeAction);
- toolBarManager.add(action);
- toolBarManager.add(new Separator());
- if (element == null)
- return;
- LaunchBarShortcutElement[] shortcuts = element.getShortcuts();
- for (int i = 0; i < shortcuts.length; i++) {
- LaunchBarShortcutElement shortcut = shortcuts[i];
- addShortcut(shortcut, toolBarManager);
- }
- }
-
- private void addShortcut(final LaunchBarShortcutElement shortcut,
- IToolBarManager toolBarManager) {
- Action action = new Action(shortcut.getToolTip()) {
- public void run() {
- executeShortcut(shortcut.getURL());
- }
- };
- action.setImageDescriptor(shortcut.getImageDescriptor());
- action.setToolTipText(shortcut.getToolTip());
- toolBarManager.add(action);
- }
-
- public void close() {
- closeLaunchBar(false);
- }
-
- private IIntroPart closeLaunchBar(boolean restore) {
- IntroPlugin.getDefault().setLaunchBar(null);
- IWorkbenchWindow window = PlatformUI.getWorkbench()
- .getActiveWorkbenchWindow();
- IIntroPart intro = null;
- if (restore) {
- intro = PlatformUI.getWorkbench().getIntroManager().showIntro(
- window, false);
- }
- if (restore) {
- CustomizableIntroPart cpart = (CustomizableIntroPart) intro;
- Rectangle startBounds = Geometry.toDisplay(
- getControl().getParent(), getControl().getBounds());
- Rectangle endBounds = Geometry.toDisplay(cpart.getControl()
- .getParent(), cpart.getControl().getBounds());
-
- RectangleAnimation animation = new RectangleAnimation(window
- .getShell(), startBounds, endBounds);
- animation.schedule();
- }
- dispose();
- window.getShell().layout();
- return intro;
- }
-
- private void executeShortcut(String url) {
- IIntroURL introURL = IntroURLFactory.createIntroURL(url);
- if (introURL != null) {
- IIntroPart intro = closeLaunchBar(true);
- if (intro == null)
- return;
- introURL.execute();
- }
- }
-
- private void openPage(String id) {
- IIntroPart intro = closeLaunchBar(true);
- if (intro == null)
- return;
- StringBuffer url = new StringBuffer();
- url.append(IntroPlugin.getString("IntroLaunchBar.6")); //$NON-NLS-1$
- url.append(id);
- IIntroURL introURL = IntroURLFactory.createIntroURL(url.toString());
- if (introURL != null)
- introURL.execute();
- }
-
- private void contextMenuAboutToShow(IMenuManager manager) {
- manager.add(closeAction);
- }
+ private Composite container;
+
+ private Composite handle;
+
+ private CloseButton closeButton;
+
+ private Image handleImage;
+
+ private ToolBarManager toolBarManager;
+
+ private int orientation;
+
+ private String lastPageId;
+
+ private Action closeAction;
+
+ private LaunchBarElement element;
+
+ private boolean simple;
+
+ private String presentationId;
+
+ static final int[] TOP_LEFT_CORNER = new int[] { 0, 6, 1, 5, 1, 4, 4, 1, 5,
+ 1, 6, 0 };
+
+ static final int[] TOP_RIGHT_CORNER = new int[] { -6, 0, -5, 1, -4, 1, -1,
+ 4, -1, 5, 0, 6 };
+
+ static final int[] BOTTOM_LEFT_CORNER = new int[] { 0, -6, 1, -5, 1, -4, 4,
+ -1, 5, -1, 6, 0 };
+
+ static final int[] BOTTOM_RIGHT_CORNER = new int[] { -6, 0, -5, -1, -4, -1,
+ -1, -4, -1, -5, 0, -6 };
+
+ static final int[] SIMPLE_TOP_LEFT_CORNER = new int[] { 0, 2, 1, 1, 2, 0 };
+
+ static final int[] SIMPLE_TOP_RIGHT_CORNER = new int[] { -2, 0, -1, 1, 0, 2 };
+
+ static final int[] SIMPLE_BOTTOM_LEFT_CORNER = new int[] { 0, -2, 1, -1, 2,
+ 0 };
+
+ static final int[] SIMPLE_BOTTOM_RIGHT_CORNER = new int[] { -2, 0, -1, -1,
+ 0, -2 };
+
+ static final int[] CLOSE_POINTS = new int[] { 2, 0, 4, 2, 5, 2, 7, 0, 9, 2,
+ 7, 4, 7, 5, 9, 7, 7, 9, 5, 7, 4, 7, 2, 9, 0, 7, 2, 5, 2, 4, 0, 2 };
+
+ static final int CLOSE_FILL = SWT.COLOR_LIST_BACKGROUND;
+ static final RGB CLOSE_HOT_FILL = new RGB(252, 160, 160);
+
+ static final int BUTTON_FG = SWT.COLOR_WIDGET_DARK_SHADOW;
+
+ private Color fg;
+
+ private Color bg;
+
+ class CloseButton extends Composite implements MouseListener, MouseTrackListener {
+ private boolean hover;
+ private boolean armed;
+ private Color closeHotBg;
+
+ public CloseButton(Composite parent, int style) {
+ super(parent, style);
+ closeHotBg = new Color(parent.getDisplay(), CLOSE_HOT_FILL);
+ addPaintListener(new PaintListener() {
+ public void paintControl(PaintEvent e) {
+ onPaint(e);
+ }
+ });
+ addDisposeListener(new DisposeListener() {
+ public void widgetDisposed(DisposeEvent e) {
+ closeHotBg.dispose();
+ }
+ });
+ addMouseListener(this);
+ addMouseTrackListener(this);
+ }
+
+ public Point computeSize(int wHint, int hHint, boolean changed) {
+ return new Point(10, 12);
+ }
+
+ private void onPaint(PaintEvent e) {
+ e.gc.setBackground(hover?closeHotBg:e.display.getSystemColor(CLOSE_FILL));
+ e.gc.fillPolygon(CLOSE_POINTS);
+ e.gc.setForeground(e.display.getSystemColor(BUTTON_FG));
+ e.gc.drawPolygon(CLOSE_POINTS);
+ }
+
+ public void mouseDoubleClick(MouseEvent e) {
+ }
+
+ public void mouseDown(MouseEvent e) {
+ armed = true;
+ redraw();
+ }
+
+ public void mouseUp(MouseEvent e) {
+ if (armed) {
+ closeAction.run();
+ }
+ }
+
+ public void mouseEnter(MouseEvent e) {
+ hover=true;
+ redraw();
+ }
+
+ public void mouseExit(MouseEvent e) {
+ hover=false;
+ armed=false;
+ redraw();
+ }
+
+ public void mouseHover(MouseEvent e) {
+ }
+ }
+
+ class BarLayout extends Layout {
+ protected Point computeSize(Composite composite, int wHint, int hHint,
+ boolean changed) {
+ boolean vertical = (orientation & SWT.VERTICAL) != 0;
+ int marginWidth = vertical | isPlain() ? 1 : simple ? 3 : 7;
+ int marginHeight = !vertical | isPlain() ? 1 : simple ? 3 : 7;
+ int width = 0;
+ int height = 0;
+ Point csize = null;
+
+ Rectangle ibounds = handleImage != null ? handleImage.getBounds()
+ : null;
+
+ if (closeButton != null)
+ csize = closeButton.computeSize(SWT.DEFAULT, SWT.DEFAULT,
+ changed);
+ Point tsize = toolBarManager.getControl().computeSize(SWT.DEFAULT,
+ SWT.DEFAULT, changed);
+
+ if (vertical) {
+ width = tsize.x;
+ if (csize != null)
+ width = Math.max(width, csize.x);
+ height = tsize.y;
+ if (ibounds != null) {
+ height += ibounds.height;
+ }
+ if (csize != null)
+ height += csize.y + CLOSE_SPACING;
+ } else {
+ height = tsize.y;
+ if (csize != null)
+ height = Math.max(height, csize.y);
+ width = tsize.x;
+ if (ibounds != null)
+ width += ibounds.width;
+ if (csize != null)
+ width += csize.x + CLOSE_SPACING;
+ }
+ width += marginWidth + marginWidth;
+ height += marginHeight + marginHeight;
+ return new Point(width, height);
+ }
+
+ protected void layout(Composite composite, boolean changed) {
+ boolean vertical = (orientation & SWT.VERTICAL) != 0;
+ int marginWidth = vertical | isPlain() ? 1 : simple ? 3 : 7;
+ int marginHeight = !vertical | isPlain() ? 1 : simple ? 3 : 7;
+ Point csize = null;
+ Rectangle ibounds = handleImage != null ? handleImage.getBounds()
+ : null;
+ if (closeButton != null)
+ csize = closeButton.computeSize(SWT.DEFAULT, SWT.DEFAULT,
+ changed);
+ Point tsize = toolBarManager.getControl().computeSize(SWT.DEFAULT,
+ SWT.DEFAULT, changed);
+ Rectangle carea = composite.getClientArea();
+ int x = carea.x + marginWidth;
+ int y = carea.y + marginHeight;
+
+ if (vertical) {
+ if (csize != null) {
+ closeButton.setBounds(carea.x + carea.width - marginWidth
+ - CLOSE_SPACING - csize.x, y, csize.x, csize.y);
+ y += csize.y + CLOSE_SPACING;
+ }
+ if (handle != null && ibounds != null) {
+ handle.setBounds(x, y, carea.width - marginWidth
+ - marginWidth, ibounds.height);
+ y += ibounds.height;
+ }
+ toolBarManager.getControl().setBounds(x, y,
+ carea.width - marginWidth - marginWidth, tsize.y);
+ } else {
+ if (csize != null) {
+ closeButton.setBounds(x, y + CLOSE_SPACING, csize.x,
+ csize.y);
+ x += csize.x + CLOSE_SPACING;
+ }
+ if (handle != null && ibounds != null) {
+ handle.setBounds(x, y, ibounds.width, carea.height
+ - marginHeight - marginHeight);
+ x += ibounds.width;
+ }
+ toolBarManager.getControl().setBounds(x, y, tsize.x,
+ carea.height - marginHeight - marginHeight);
+ }
+ }
+ }
+
+ private static final int CLOSE_SPACING = 1;
+
+ public IntroLaunchBar(int orientation, String lastPageId,
+ LaunchBarElement element) {
+ this.orientation = orientation;
+ this.lastPageId = lastPageId;
+ this.element = element;
+ simple = PlatformUI.getPreferenceStore().getBoolean(
+ IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS);
+ presentationId = PlatformUI.getPreferenceStore().getString(
+ IWorkbenchPreferenceConstants.PRESENTATION_FACTORY_ID);
+ }
+
+ private boolean isPlain() {
+ return !"org.eclipse.ui.presentations.default".equals(presentationId);
+ }
+
+ public void createControl(Composite parent) {
+ container = new Composite(parent, SWT.NULL);
+ computeColors(parent.getDisplay());
+ container.setLayout(new BarLayout());
+ boolean vertical = (orientation & SWT.VERTICAL) != 0;
+ toolBarManager = new ToolBarManager(SWT.FLAT | orientation);
+ if (element.getCreateHandle()) {
+ if (element.getClose()) {
+ closeButton = new CloseButton(container, SWT.NULL);
+ closeButton.setBackground(bg);
+ }
+ handle = new Composite(container, SWT.NULL);
+ ImageDescriptor desc = element.getHandleImageDescriptor();
+ if (desc != null)
+ handleImage = desc.createImage();
+ Rectangle ibounds = handleImage.getBounds();
+ handle.setBackground(bg);
+ handle.addPaintListener(new PaintListener() {
+ public void paintControl(PaintEvent e) {
+ onHandlePaint(e);
+ }
+ });
+ }
+ fillToolBar();
+ toolBarManager.createControl(container);
+ ToolBar toolBar = toolBarManager.getControl();
+ if (bg != null)
+ toolBar.setBackground(bg);
+ container.addPaintListener(new PaintListener() {
+ public void paintControl(PaintEvent e) {
+ onPaint(e);
+ }
+ });
+ MenuManager manager = new MenuManager();
+ IMenuListener listener = new IMenuListener() {
+ public void menuAboutToShow(IMenuManager manager) {
+ contextMenuAboutToShow(manager);
+ }
+ };
+ manager.setRemoveAllWhenShown(true);
+ manager.addMenuListener(listener);
+ Menu contextMenu = manager.createContextMenu(toolBarManager
+ .getControl());
+ toolBarManager.getControl().setMenu(contextMenu);
+ IntroPlugin.getDefault().setLaunchBar(this);
+ }
+
+ private void onPaint(PaintEvent e) {
+ GC gc = e.gc;
+ Color color = fg;
+ if (color == null) {
+ color = e.display.getSystemColor(SWT.COLOR_WIDGET_NORMAL_SHADOW);
+ }
+ gc.setForeground(color);
+ gc.setBackground(bg);
+ if (isPlain()) {
+ Point size = container.getSize();
+ gc.drawRectangle(0, 0, size.x - 1, size.y - 1);
+ } else {
+ switch (element.getLocation()) {
+ case SWT.LEFT:
+ paintLeft(gc);
+ break;
+ case SWT.RIGHT:
+ paintRight(gc);
+ break;
+ case SWT.BOTTOM:
+ paintBottom(gc);
+ break;
+ }
+ }
+ }
+
+ private void paintLeft(GC gc) {
+ int[] top = simple ? SIMPLE_TOP_RIGHT_CORNER : TOP_RIGHT_CORNER;
+ int[] bot = simple ? SIMPLE_BOTTOM_RIGHT_CORNER : BOTTOM_RIGHT_CORNER;
+ int[] shape = new int[top.length + bot.length + 4];
+ int index = 0;
+ Point size = container.getSize();
+ int x = size.x - 1;
+ int y = 0;
+ index = fillShape(shape, top, index, x, y, false);
+ y = size.y - 1;
+ index = fillShape(shape, bot, index, x, y, true);
+ shape[index++] = 0;
+ shape[index++] = size.y - 1;
+ shape[index++] = 0;
+ shape[index++] = 0;
+ gc.fillPolygon(shape);
+ gc.drawPolygon(shape);
+ }
+
+ private void paintBottom(GC gc) {
+ int[] left = simple ? SIMPLE_TOP_LEFT_CORNER : TOP_LEFT_CORNER;
+ int[] right = simple ? SIMPLE_TOP_RIGHT_CORNER : TOP_RIGHT_CORNER;
+ int[] shape = new int[left.length + right.length + 4];
+ int index = 0;
+ Point size = container.getSize();
+ int x = 0;
+ int y = 0;
+ index = fillShape(shape, left, index, x, y, false);
+ x = size.x - 1;
+ index = fillShape(shape, right, index, x, y, false);
+ shape[index++] = size.x - 1;
+ shape[index++] = size.y - 1;
+ shape[index++] = 0;
+ shape[index++] = size.y - 1;
+ gc.fillPolygon(shape);
+ gc.drawPolygon(shape);
+ }
+
+ private void paintRight(GC gc) {
+ int[] top = simple ? SIMPLE_TOP_LEFT_CORNER : TOP_LEFT_CORNER;
+ int[] bot = simple ? SIMPLE_BOTTOM_LEFT_CORNER : BOTTOM_LEFT_CORNER;
+ int[] shape = new int[top.length + bot.length + 4];
+ int index = 0;
+ Point size = container.getSize();
+ int x = 0;
+ int y = 0;
+ index = fillShape(shape, top, index, x, y, false);
+ shape[index++] = size.x - 1;
+ shape[index++] = 0;
+ shape[index++] = size.x - 1;
+ shape[index++] = size.y - 1;
+ x = 0;
+ y = size.y - 1;
+ fillShape(shape, bot, index, x, y, true);
+ gc.fillPolygon(shape);
+ gc.drawPolygon(shape);
+ }
+
+ private void onHandlePaint(PaintEvent e) {
+ Point size = handle.getSize();
+ int location = element.getLocation();
+
+ if (handleImage != null) {
+ Rectangle ibounds = handleImage.getBounds();
+ int x = location == SWT.RIGHT ? size.x - ibounds.width : 0;
+ int y = location == SWT.BOTTOM ? size.y - ibounds.height : 0;
+
+ for (;;) {
+ e.gc.drawImage(handleImage, x, y);
+ if (location == SWT.LEFT) {
+ x += ibounds.width;
+ if (x + ibounds.width >= size.x)
+ break;
+ } else if (location == SWT.RIGHT) {
+ x -= ibounds.width;
+ if (x <= 0)
+ break;
+ } else if (location == SWT.BOTTOM) {
+ y -= ibounds.height;
+ if (y <= 0)
+ break;
+ }
+ }
+ }
+ }
+
+ private int fillShape(int[] shape, int[] points, int index, int x, int y,
+ boolean reverse) {
+ int fill = points.length;
+ for (int i = 0; i < points.length / 2; i++) {
+ if (!reverse) {
+ shape[index++] = x + points[2 * i];
+ shape[index++] = y + points[2 * i + 1];
+ } else {
+ shape[index + fill - 2 - 2 * i] = x + points[2 * i];
+ shape[index + fill - 1 - 2 * i] = y + points[2 * i + 1];
+ }
+ }
+ if (reverse) {
+ index += fill;
+ }
+ return index;
+ }
+
+ private void computeColors(Display display) {
+ if (element.getBackground() != null) {
+ RGB r = SharedStyleManager.parseRGB(element.getBackground());
+ if (r != null)
+ bg = new Color(display, r);
+ }
+ if (element.getForeground() != null) {
+ RGB r = SharedStyleManager.parseRGB(element.getForeground());
+ if (r != null)
+ fg = new Color(display, r);
+ }
+ }
+
+ public Control getControl() {
+ return container;
+ }
+
+ public void dispose() {
+ container.dispose();
+ toolBarManager.dispose();
+ toolBarManager.removeAll();
+ toolBarManager = null;
+ container = null;
+ if (bg != null)
+ bg.dispose();
+ if (fg != null)
+ fg.dispose();
+ if (handleImage != null) {
+ handleImage.dispose();
+ handleImage = null;
+ }
+ }
+
+ private void fillToolBar() {
+ Action action;
+
+ closeAction = new Action("close") { //$NON-NLS-1$
+ public void run() {
+ closeLaunchBar(false);
+ }
+ };
+ closeAction
+ .setText(IntroPlugin.getString("IntroLaunchBar.close.label")); //$NON-NLS-1$
+ closeAction.setToolTipText(IntroPlugin
+ .getString("IntroLaunchBar.close.tooltip")); //$NON-NLS-1$
+ /*
+ closeAction.setImageDescriptor(ImageUtil
+ .createImageDescriptor("full/elcl16/close_view.gif")); //$NON-NLS-1$
+ */
+ if (closeButton!=null)
+ closeButton.setToolTipText(closeAction.getToolTipText());
+
+ action = new Action("restore") { //$NON-NLS-1$
+ public void run() {
+ openPage(lastPageId);
+ }
+ };
+ action.setToolTipText(IntroPlugin
+ .getString("IntroLaunchBar.restore.tooltip")); //$NON-NLS-1$
+ action.setImageDescriptor(ImageUtil
+ .createImageDescriptor("full/etool16/restore_welcome.gif")); //$NON-NLS-1$
+ // toolBarManager.add(closeAction);
+ toolBarManager.add(action);
+ toolBarManager.add(new Separator());
+ if (element == null)
+ return;
+ LaunchBarShortcutElement[] shortcuts = element.getShortcuts();
+ for (int i = 0; i < shortcuts.length; i++) {
+ LaunchBarShortcutElement shortcut = shortcuts[i];
+ addShortcut(shortcut, toolBarManager);
+ }
+ }
+
+ private void addShortcut(final LaunchBarShortcutElement shortcut,
+ IToolBarManager toolBarManager) {
+ Action action = new Action(shortcut.getToolTip()) {
+ public void run() {
+ executeShortcut(shortcut.getURL());
+ }
+ };
+ action.setImageDescriptor(shortcut.getImageDescriptor());
+ action.setToolTipText(shortcut.getToolTip());
+ toolBarManager.add(action);
+ }
+
+ public void close() {
+ closeLaunchBar(false);
+ }
+
+ private IIntroPart closeLaunchBar(boolean restore) {
+ IntroPlugin.getDefault().setLaunchBar(null);
+ IWorkbenchWindow window = PlatformUI.getWorkbench()
+ .getActiveWorkbenchWindow();
+ IIntroPart intro = null;
+ if (restore) {
+ intro = PlatformUI.getWorkbench().getIntroManager().showIntro(
+ window, false);
+ }
+ if (restore) {
+ CustomizableIntroPart cpart = (CustomizableIntroPart) intro;
+ Rectangle startBounds = Geometry.toDisplay(
+ getControl().getParent(), getControl().getBounds());
+ Rectangle endBounds = Geometry.toDisplay(cpart.getControl()
+ .getParent(), cpart.getControl().getBounds());
+
+ RectangleAnimation animation = new RectangleAnimation(window
+ .getShell(), startBounds, endBounds);
+ animation.schedule();
+ }
+ dispose();
+ window.getShell().layout();
+ return intro;
+ }
+
+ private void executeShortcut(String url) {
+ IIntroURL introURL = IntroURLFactory.createIntroURL(url);
+ if (introURL != null) {
+ IIntroPart intro = closeLaunchBar(true);
+ if (intro == null)
+ return;
+ introURL.execute();
+ }
+ }
+
+ private void openPage(String id) {
+ IIntroPart intro = closeLaunchBar(true);
+ if (intro == null)
+ return;
+ StringBuffer url = new StringBuffer();
+ url.append(IntroPlugin.getString("IntroLaunchBar.6")); //$NON-NLS-1$
+ url.append(id);
+ IIntroURL introURL = IntroURLFactory.createIntroURL(url.toString());
+ if (introURL != null)
+ introURL.execute();
+ }
+
+ private void contextMenuAboutToShow(IMenuManager manager) {
+ manager.add(closeAction);
+ }
}

Back to the top