Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian de Alwis2016-03-12 04:34:34 +0000
committerBrian de Alwis2016-03-12 05:55:35 +0000
commit9a3622632eb9d6be029c58e6f04af17ba259bc33 (patch)
tree7a45b1a6a6a5ae308fc977bb51a8c345cf72f66d
parentad8a47c4bdd332042253f75caa105526cb5d267b (diff)
downloadeclipse.platform.ua-9a3622632eb9d6be029c58e6f04af17ba259bc33.tar.gz
eclipse.platform.ua-9a3622632eb9d6be029c58e6f04af17ba259bc33.tar.xz
eclipse.platform.ua-9a3622632eb9d6be029c58e6f04af17ba259bc33.zip
Bug 466370 - Modify Quicklinks to support URLs and view modes
Add support for URLs, both IntroURLs and normal URLs. Allow post-actions to also put the Welcome/Intro into launchbar or close the intro entirely. Change-Id: I4a1951f6ef58f7134ab67c98c8b34c6d85b7cf22
-rw-r--r--org.eclipse.ui.intro.quicklinks.examples/plugin.xml39
-rw-r--r--org.eclipse.ui.intro.quicklinks/schema/quicklinks.exsd94
-rw-r--r--org.eclipse.ui.intro.quicklinks/src/org/eclipse/ui/intro/quicklinks/QuicklinksViewer.java156
-rw-r--r--org.eclipse.ui.intro/schema/IntroContent.exsd68
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/url/IntroURL.java24
5 files changed, 260 insertions, 121 deletions
diff --git a/org.eclipse.ui.intro.quicklinks.examples/plugin.xml b/org.eclipse.ui.intro.quicklinks.examples/plugin.xml
index e5a43d796..6795b05f7 100644
--- a/org.eclipse.ui.intro.quicklinks.examples/plugin.xml
+++ b/org.eclipse.ui.intro.quicklinks.examples/plugin.xml
@@ -14,32 +14,34 @@
<extension
point="org.eclipse.ui.intro.quicklinks">
<!-- Invoke a simple command -->
- <quicklink
- command="org.eclipse.ui.edit.text.openLocalFile"
+ <command
description="Open a single file"
+ id="org.eclipse.ui.edit.text.openLocalFile"
label="Open an existing file"
+ resolution="launchbar"
standby="true">
- </quicklink>
+ </command>
<!--
Open the New Java Project wizard; note that icon is provided by <override> below;
want to override label and description as the command description is generic
-->
- <quicklink
- command="org.eclipse.ui.newWizard(newWizardId=org.eclipse.jdt.ui.wizards.JavaProjectWizard)"
+ <command
description="Create a new Java Eclipse project"
+ id="org.eclipse.ui.newWizard(newWizardId=org.eclipse.jdt.ui.wizards.JavaProjectWizard)"
label="Create a new Java project"
standby="true">
- </quicklink>
+ </command>
<!-- Open the Import Existing Project -->
- <quicklink
- command="org.eclipse.ui.file.import(importWizardId=org.eclipse.ui.wizards.import.ExternalProject)"
+ <command
description="Import an already existing project into Eclipse"
icon="platform:/plugin/org.eclipse.ui/icons/full/wizban/import_wiz.png"
+ id="org.eclipse.ui.file.import(importWizardId=org.eclipse.ui.wizards.import.ExternalProject)"
label="Import an existing project"
+ resolution="standby"
standby="true">
- </quicklink>
+ </command>
<!-- Cause all New XXX quicklinks to use the wizban/new_wiz image -->
<override
@@ -52,10 +54,23 @@
Use default labelling and icon from showMPC command; importance should
cause it to be sorted above other commands
-->
- <quicklink
- command="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard"
+ <command
+ id="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard"
+ importance="high"
+ resolution="close">
+ </command>
+ <url
+ location="http://org.eclipse.ui.intro/showStandby?partId=org.eclipse.platform.cheatsheet&amp;input=org.eclipse.jdt.helloworld"
+ label="Let Eclipse guide how to create Hello World"
+ description="Use Eclipse's guided walkthrough to create Hello World"
importance="high">
- </quicklink>
+ </url>
+ <url
+ location="http://google.com"
+ label="Open Google"
+ description="Use Google to search the world"
+ importance="medium">
+ </url>
</extension>
</plugin>
diff --git a/org.eclipse.ui.intro.quicklinks/schema/quicklinks.exsd b/org.eclipse.ui.intro.quicklinks/schema/quicklinks.exsd
index cf14b5327..2c5c40bcb 100644
--- a/org.eclipse.ui.intro.quicklinks/schema/quicklinks.exsd
+++ b/org.eclipse.ui.intro.quicklinks/schema/quicklinks.exsd
@@ -20,8 +20,9 @@ The Quicklinks is experimental component and is not yet considered API.
</annotation>
<complexType>
<choice minOccurs="1" maxOccurs="unbounded">
- <element ref="quicklink"/>
+ <element ref="command"/>
<element ref="override"/>
+ <element ref="url"/>
</choice>
<attribute name="point" type="string" use="required">
<annotation>
@@ -50,14 +51,14 @@ The Quicklinks is experimental component and is not yet considered API.
</complexType>
</element>
- <element name="quicklink">
+ <element name="command">
<annotation>
<documentation>
- Defines a Quicklink component
+ Defines a Quicklink component. One of &quot;command&quot; or &quot;url&quot; must be specified.
</documentation>
</annotation>
<complexType>
- <attribute name="command" type="string" use="required">
+ <attribute name="id" type="string" use="required">
<annotation>
<documentation>
The command identifier to be invoked. The command can also be a serialized command to encode command parameters (see ParameterizedCommand#serialize() for details).
@@ -114,14 +115,93 @@ The Quicklinks is experimental component and is not yet considered API.
</restriction>
</simpleType>
</attribute>
- <attribute name="standby" type="boolean">
+ <attribute name="resolution">
+ <annotation>
+ <documentation>
+ What should happen to the Welcome view after executing the command.
+If &quot;full&quot; or unspecified, the Welcome/Intro part will be put into full visual mode.
+If &quot;standby&quot; (the default), the Welcome/Intro part will be put into standby mode.
+If &quot;launchbar&quot;, the Welcome/Intro will be put into &apos;launchbar&apos; mode in the status area.
+If &quot;close&quot; then the Welcome/Intro will be closed.
+ </documentation>
+ </annotation>
+ <simpleType>
+ <restriction base="string">
+ <enumeration value="standby">
+ </enumeration>
+ <enumeration value="launchbar">
+ </enumeration>
+ <enumeration value="close">
+ </enumeration>
+ <enumeration value="full">
+ </enumeration>
+ </restriction>
+ </simpleType>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="url">
+ <annotation>
+ <documentation>
+ Defines a URL Quicklink component. URL Quicklinks must provide a label and it is recommended to provide an icon and description
+ </documentation>
+ </annotation>
+ <complexType>
+ <attribute name="location" type="string" use="required">
+ <annotation>
+ <documentation>
+ The URL to be invoked. The URL can either be an Intro URL or an external URL.
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="label" type="string" use="required">
<annotation>
<documentation>
- If true (the default), the Welcome/Intro part should be put into standby mode after executing the command.
-If false, the Welcome/Intro will remain open.
+ The label to be displayed. If unspecified, the command name is used instead.
</documentation>
+ <appinfo>
+ <meta.attribute translatable="true"/>
+ </appinfo>
</annotation>
</attribute>
+ <attribute name="description" type="string" use="required">
+ <annotation>
+ <documentation>
+ A description for the quicklink. If unspecified, use the command&apos;s description.
+ </documentation>
+ <appinfo>
+ <meta.attribute translatable="true"/>
+ </appinfo>
+ </annotation>
+ </attribute>
+ <attribute name="icon" type="string">
+ <annotation>
+ <documentation>
+ The icon to be used for the quicklink. If unspecified, the command&apos;s associated image is used instead.
+ </documentation>
+ <appinfo>
+ <meta.attribute kind="resource"/>
+ </appinfo>
+ </annotation>
+ </attribute>
+ <attribute name="importance">
+ <annotation>
+ <documentation>
+ Define the level of importance of this item. If unspecified, defaults to &quot;low&quot;.
+ </documentation>
+ </annotation>
+ <simpleType>
+ <restriction base="string">
+ <enumeration value="high">
+ </enumeration>
+ <enumeration value="medium">
+ </enumeration>
+ <enumeration value="low">
+ </enumeration>
+ </restriction>
+ </simpleType>
+ </attribute>
</complexType>
</element>
diff --git a/org.eclipse.ui.intro.quicklinks/src/org/eclipse/ui/intro/quicklinks/QuicklinksViewer.java b/org.eclipse.ui.intro.quicklinks/src/org/eclipse/ui/intro/quicklinks/QuicklinksViewer.java
index 42ef41bd9..f4c64e55e 100644
--- a/org.eclipse.ui.intro.quicklinks/src/org/eclipse/ui/intro/quicklinks/QuicklinksViewer.java
+++ b/org.eclipse.ui.intro.quicklinks/src/org/eclipse/ui/intro/quicklinks/QuicklinksViewer.java
@@ -56,6 +56,7 @@ import org.eclipse.ui.forms.widgets.FormToolkit;
import org.eclipse.ui.forms.widgets.Section;
import org.eclipse.ui.internal.intro.impl.model.AbstractIntroPartImplementation;
import org.eclipse.ui.internal.intro.impl.model.IntroTheme;
+import org.eclipse.ui.internal.intro.impl.util.Log;
import org.eclipse.ui.internal.menus.MenuHelper;
import org.eclipse.ui.intro.config.IIntroContentProvider;
import org.eclipse.ui.intro.config.IIntroContentProviderSite;
@@ -101,25 +102,17 @@ public class QuicklinksViewer implements IIntroContentProvider {
/** Model holding the relevant attributes of a Quicklink element */
class Quicklink implements Comparable<Quicklink> {
String commandSpec;
+ String url;
String label;
String description;
String iconUrl;
- boolean standby = true;
Importance importance = Importance.MEDIUM;
long rank;
+ String resolution;
public Quicklink() {
}
- public Quicklink(String commandSpec) {
- this.commandSpec = commandSpec;
- }
-
- public Quicklink(String commandSpec, Importance importance) {
- this.commandSpec = commandSpec;
- this.importance = importance;
- }
-
@Override
public int compareTo(Quicklink b) {
int impA = this.importance.level;
@@ -143,21 +136,30 @@ public class QuicklinksViewer implements IIntroContentProvider {
*/
class ModelReader implements Supplier<List<Quicklink>> {
private static final String QL_EXT_PT = "org.eclipse.ui.intro.quicklinks"; //$NON-NLS-1$
- private static final String ELMT_QUICKLINK = "quicklink"; //$NON-NLS-1$
- private static final String ATT_COMMAND = "command"; //$NON-NLS-1$
+ private static final String ELMT_COMMAND = "command"; //$NON-NLS-1$
+ private static final String ATT_ID = "id"; //$NON-NLS-1$
+ private static final String ELMT_URL = "url"; //$NON-NLS-1$
+ private static final String ATT_LOCATION = "location"; //$NON-NLS-1$
+
+ private static final String ELMT_OVERRIDE = "override"; //$NON-NLS-1$
+ private static final String ATT_THEME = "theme"; //$NON-NLS-1$
+
private static final String ATT_LABEL = "label"; //$NON-NLS-1$
private static final String ATT_DESCRIPTION = "description"; //$NON-NLS-1$
private static final String ATT_ICON = "icon"; //$NON-NLS-1$
private static final String ATT_IMPORTANCE = "importance"; //$NON-NLS-1$
- private static final String ATT_STANDBY = "standby"; //$NON-NLS-1$
- private static final String ELMT_OVERRIDE = "override"; //$NON-NLS-1$
- private static final String ATT_THEME = "theme"; //$NON-NLS-1$
+ private static final String ATT_RESOLUTION = "resolution"; //$NON-NLS-1$
- /** commandSpec &rarr; quicklink */
+ /** commandSpec/url &rarr; quicklink */
private Map<String, Quicklink> quicklinks = new LinkedHashMap<>();
/** bundle symbolic name &rarr; bundle id */
private Map<String, Long> bundleIds;
private Bundle[] bundles;
+ private CommandManager manager;
+
+ public ModelReader(IServiceLocator locator) {
+ manager = locator.getService(CommandManager.class);
+ }
/**
* Return the list of configured {@link Quicklink} that can be found.
@@ -165,7 +167,6 @@ public class QuicklinksViewer implements IIntroContentProvider {
* @return
*/
public List<Quicklink> get() {
- CommandManager manager = locator.getService(CommandManager.class);
IExtension extensions[] = getExtensions(QL_EXT_PT);
// Process definitions from the product bundle first
@@ -174,7 +175,7 @@ public class QuicklinksViewer implements IIntroContentProvider {
for (IExtension ext : extensions) {
if (productBundle.getSymbolicName().equals(ext.getNamespaceIdentifier())) {
for (IConfigurationElement ce : ext.getConfigurationElements()) {
- processDefinition(manager, ce);
+ processDefinition(ce);
}
}
}
@@ -183,18 +184,19 @@ public class QuicklinksViewer implements IIntroContentProvider {
for (IExtension ext : extensions) {
if (productBundle == null || !productBundle.getSymbolicName().equals(ext.getNamespaceIdentifier())) {
for (IConfigurationElement ce : ext.getConfigurationElements()) {
- processDefinition(manager, ce);
+ processDefinition(ce);
}
}
}
+ // Now process all command overrides
for (IExtension ext : extensions) {
for (IConfigurationElement ce : ext.getConfigurationElements()) {
if (!ELMT_OVERRIDE.equals(ce.getName())) {
continue;
}
String theme = ce.getAttribute(ATT_THEME);
- String commandSpecPattern = ce.getAttribute(ATT_COMMAND);
+ String commandSpecPattern = ce.getAttribute(ATT_ID);
String icon = ce.getAttribute(ATT_ICON);
if (theme != null && icon != null && Objects.equals(theme, getCurrentThemeId())
&& commandSpecPattern != null) {
@@ -206,34 +208,57 @@ public class QuicklinksViewer implements IIntroContentProvider {
return new ArrayList<>(quicklinks.values());
}
- private void processDefinition(CommandManager manager, IConfigurationElement ce) {
- if (!ELMT_QUICKLINK.equals(ce.getName())) {
+ private void processDefinition(IConfigurationElement ce) {
+ if (!ELMT_COMMAND.equals(ce.getName()) && !ELMT_URL.equals(ce.getName())) {
return;
}
- String commandSpec = ce.getAttribute(ATT_COMMAND);
- try {
- ParameterizedCommand pc = manager.deserialize(commandSpec);
- if (pc != null && pc.getCommand().isDefined()) {
- Quicklink ql = new Quicklink();
- ql.commandSpec = commandSpec;
+
+ String key = null;
+ Quicklink ql = new Quicklink();
+ if (ELMT_COMMAND.equals(ce.getName())) {
+ key = ce.getAttribute(ATT_ID);
+ if (key == null) {
+ Log.warning("Skipping '" + ce.getName() + "': missing " + ATT_ID);
+ return;
+ }
+ try {
+ ql.commandSpec = key;
+ ParameterizedCommand pc = manager.deserialize(ql.commandSpec);
+ if (!pc.getCommand().isDefined()) {
+ // not an error
+ return;
+ }
ql.label = Optional.ofNullable(ce.getAttribute(ATT_LABEL)).orElse(pc.getCommand().getName());
ql.description = Optional.ofNullable(ce.getAttribute(ATT_DESCRIPTION))
.orElse(pc.getCommand().getDescription());
- ql.iconUrl = getImageURL(ce, ATT_ICON, commandSpec);
- ql.rank = getRank(ce.getContributor().getName());
- if (ce.getAttribute(ATT_IMPORTANCE) != null) {
- ql.importance = Importance.forId(ce.getAttribute(ATT_IMPORTANCE));
- }
- if (ce.getAttribute(ATT_STANDBY) != null) {
- ql.standby = Boolean.valueOf(ce.getAttribute(ATT_STANDBY));
- }
- // discard if already seen
- quicklinks.putIfAbsent(commandSpec, ql);
+ ql.iconUrl = getImageURL(ce, ATT_ICON, ql.commandSpec);
+ } catch (NotDefinedException e) {
+ // not an error
+ return;
+ } catch (SerializationException e) {
+ Log.error("Skipping '" + ql.commandSpec + "'", e);
+ return;
+ }
+ } else if (ELMT_URL.equals(ce.getName())) {
+ key = ce.getAttribute(ATT_LOCATION);
+ if (key == null) {
+ Log.warning("Skipping '" + ELMT_URL + "': missing " + ATT_LOCATION);
+ return;
}
- } catch (NotDefinedException | SerializationException e) {
- /* skip */
- System.err.printf("Skipping '%s': %s\n", commandSpec, e);
+ ql.url = key;
+ ql.label = ce.getAttribute(ATT_LABEL);
+ ql.description = ce.getAttribute(ATT_DESCRIPTION);
+ ql.iconUrl = getImageURL(ce, ATT_ICON, null);
}
+ ql.rank = getRank(ce.getContributor().getName());
+ if (ce.getAttribute(ATT_IMPORTANCE) != null) {
+ ql.importance = Importance.forId(ce.getAttribute(ATT_IMPORTANCE));
+ }
+ if (ce.getAttribute(ATT_RESOLUTION) != null) {
+ ql.resolution = ce.getAttribute(ATT_RESOLUTION);
+ }
+ // discard if already seen
+ quicklinks.putIfAbsent(key, ql);
}
/**
@@ -321,7 +346,7 @@ public class QuicklinksViewer implements IIntroContentProvider {
} else {
this.locator = PlatformUI.getWorkbench();
}
- model = new ModelReader();
+ model = new ModelReader(this.locator);
}
/**
@@ -342,14 +367,13 @@ public class QuicklinksViewer implements IIntroContentProvider {
getQuicklinks().forEach(ql -> {
try {
// ah how lovely to embed HTML in code
- String urlEncodedCommand = URLEncoder.encode(ql.commandSpec, "UTF-8");
- out.append("<a class='content-link' id='");
- out.append(asCSSId(ql.commandSpec));
- out.append("' ");
- out.append(" href='http://org.eclipse.ui.intro/execute?command=");
+ String urlEncodedCommand = asEmbeddedURL(ql);
+ out.append("<a class='content-link'");
+ if (ql.commandSpec != null) {
+ out.append(" id='").append(asCSSId(ql.commandSpec)).append("' ");
+ }
+ out.append(" href='");
out.append(urlEncodedCommand);
- out.append("&standby=");
- out.append(Boolean.toString(ql.standby));
out.append("'>");
if (ql.iconUrl != null) {
out.append("<img class='background-image' src='").append(ql.iconUrl).append("'>");
@@ -370,6 +394,17 @@ public class QuicklinksViewer implements IIntroContentProvider {
});
}
+ private String asEmbeddedURL(Quicklink ql) throws UnsupportedEncodingException {
+ if (ql.url != null) {
+ return ql.url;
+ }
+ String encoded = URLEncoder.encode(ql.commandSpec, "UTF-8");
+ if (ql.resolution != null) {
+ encoded += "&standby=" + ql.resolution;
+ }
+ return "http://org.eclipse.ui.intro/execute?command=" + encoded;
+ }
+
/**
* Transform the Eclipse Command identifier (with dots) to a CSS-compatible
* class
@@ -482,16 +517,29 @@ public class QuicklinksViewer implements IIntroContentProvider {
return links;
}
+ private Quicklink forCommand(String commandSpec) {
+ Quicklink ql = new Quicklink();
+ ql.commandSpec = commandSpec;
+ return ql;
+ }
+
+ private Quicklink forCommand(String commandSpec, Importance importance) {
+ Quicklink ql = new Quicklink();
+ ql.commandSpec = commandSpec;
+ ql.importance = importance;
+ return ql;
+ }
+
/**
* Return the default commands to be shown if there is no other content
* available
*/
private List<Quicklink> generateDefaultQuicklinks() {
- return Arrays.asList(new Quicklink("org.eclipse.oomph.setup.ui.questionnaire", Importance.HIGH),
- new Quicklink("org.eclipse.ui.cheatsheets.openCheatSheet"),
- new Quicklink("org.eclipse.ui.newWizard"), new Quicklink("org.eclipse.ui.file.import"),
- new Quicklink("org.eclipse.epp.mpc.ui.command.showMarketplaceWizard"),
- new Quicklink("org.eclipse.ui.edit.text.openLocalFile", Importance.LOW));
+ return Arrays.asList(forCommand("org.eclipse.oomph.setup.ui.questionnaire", Importance.HIGH),
+ forCommand("org.eclipse.ui.cheatsheets.openCheatSheet"), forCommand("org.eclipse.ui.newWizard"),
+ forCommand("org.eclipse.ui.file.import"),
+ forCommand("org.eclipse.epp.mpc.ui.command.showMarketplaceWizard"),
+ forCommand("org.eclipse.ui.edit.text.openLocalFile", Importance.LOW));
}
public void dispose() {
diff --git a/org.eclipse.ui.intro/schema/IntroContent.exsd b/org.eclipse.ui.intro/schema/IntroContent.exsd
index 35b5de189..dfa1ad12c 100644
--- a/org.eclipse.ui.intro/schema/IntroContent.exsd
+++ b/org.eclipse.ui.intro/schema/IntroContent.exsd
@@ -1,10 +1,10 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
-<schema targetNamespace="Intro Content File XML Format">
+<schema targetNamespace="Intro Content File XML Format" xmlns="http://www.w3.org/2001/XMLSchema">
<annotation>
- <appInfo>
+ <appinfo>
<meta.schema plugin="Intro Content File XML Format" id="." name="Intro Content File XML Format"/>
- </appInfo>
+ </appinfo>
<documentation>
This document describes the intro content file structure as a series of DTD fragments.
</documentation>
@@ -340,19 +340,31 @@ no parameters required&lt;br&gt;
&lt;code&gt;org.eclipse.jface.action.IAction&lt;/code&gt;, or &lt;code&gt;org.eclipse.ui.IActionDelegate&lt;/code&gt;&lt;br&gt;
&lt;i&gt;pluginId&lt;/i&gt; - The id of the plug-in which contains the class.&lt;br&gt;
&lt;i&gt;standby (optional) = (&quot;true&quot;
- &quot;false&quot;) &quot;false&quot;&lt;/i&gt; - indicate whether to set the intro into standby mode after executing the action&lt;br&gt;
+ &quot;false&quot;
+ &quot;full&quot;
+ &quot;standby&quot;
+ &quot;launchbar&quot;
+ &quot;close&quot;) &quot;false&quot;&lt;/i&gt; - indicate whether to set the intro into fully visible mode (&quot;false&quot; or &quot;full&quot;), into standby mode (&quot;true&quot; or &quot;standby&quot;), into the launchbar (&quot;launchbar&quot;), or close the intro after executing the action&lt;br&gt;
additional parameters - any additional parameters are passed to actions that implement &lt;code&gt;org.eclipse.ui.intro.config.IIntroAction&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
&lt;b&gt;execute&lt;/b&gt; - executes the specified command. See the &lt;code&gt;serialize()&lt;/code&gt; method on &lt;code&gt;org.eclipse.core.command.ParameterizedCommand&lt;/code&gt; for details of the command serialization format. Since 3.2.&lt;br&gt;
&lt;i&gt;command&lt;/i&gt; - a serialized &lt;code&gt;ParameterizedCommand&lt;/code&gt;&lt;br&gt;
&lt;i&gt;standby (optional) = (&quot;true&quot;
- &quot;false&quot;) &quot;false&quot;&lt;/i&gt; - indicate whether to set the intro into standby mode after executing the action&lt;br&gt;
+ &quot;false&quot;
+ &quot;full&quot;
+ &quot;standby&quot;
+ &quot;launchbar&quot;
+ &quot;close&quot;) &quot;false&quot;&lt;/i&gt; - indicate whether to set the intro into fully visible mode (&quot;false&quot; or &quot;full&quot;), into standby mode (&quot;true&quot; or &quot;standby&quot;), into the launchbar (&quot;launchbar&quot;), or close the intro after executing the action&lt;br&gt;
&lt;br&gt;
&lt;b&gt;setStandbyMode&lt;/b&gt; - sets the state of the intro part&lt;br&gt;
&lt;i&gt;standby = (&quot;true&quot;
- &quot;false&quot;)&lt;/i&gt; - true to put the intro part in its partially visible standy mode, and false to make it fully visible&lt;br&gt;
+ &quot;false&quot;
+ &quot;full&quot;
+ &quot;standby&quot;
+ &quot;launchbar&quot;
+ &quot;close&quot;) &quot;false&quot;&lt;/i&gt; - indicate whether to set the intro into fully visible mode (&quot;false&quot; or &quot;full&quot;), into standby mode (&quot;true&quot; or &quot;standby&quot;), into the launchbar (&quot;launchbar&quot;), or close the intro after executing the action&lt;br&gt;
&lt;br&gt;
&lt;b&gt;showHelp&lt;/b&gt; - Open the help system.&lt;br&gt;
@@ -378,7 +390,12 @@ no parameters required&lt;br&gt;
&lt;b&gt;showPage&lt;/b&gt; - show the intro page with the given id&lt;br&gt;
&lt;i&gt;id&lt;/i&gt; - the id of the intro page to show&lt;br&gt;
&lt;i&gt;standby (optional) = (&quot;true&quot;
- &quot;false&quot;) &quot;false&quot;&lt;/i&gt; - indicate whether to set the intro into standby mode after showing the page&lt;br&gt;&lt;br&gt;
+ &quot;false&quot;
+ &quot;full&quot;
+ &quot;standby&quot;
+ &quot;launchbar&quot;
+ &quot;close&quot;) &quot;false&quot;&lt;/i&gt; - indicate whether to set the intro into fully visible mode (&quot;false&quot; or &quot;full&quot;), into standby mode (&quot;true&quot; or &quot;standby&quot;), into the launchbar (&quot;launchbar&quot;), or close the intro after executing the action&lt;br&gt;
+&lt;br&gt;
If any of the parameters passed to these actions have special characters (ie: characters that are illegal in a URL), then they should be encoded using UTF-8 url encoding. To receive these parametrs in there decoded state a special parameter, &lt;i&gt;decode = (&quot;true&quot; &quot;false&quot;)&lt;/i&gt; can be used to force a decode of these parameters when the Intro framework processes them.&lt;br&gt;
For example, the following Intro url: &lt;br&gt;&lt;i&gt;
@@ -388,7 +405,6 @@ whereas&lt;br&gt;&lt;i&gt;
http://org.eclipse.ui.intro/showMessage?message=This+is+a+message&amp;amp;amp;decode=true&lt;/i&gt;&lt;br&gt;
will process the message parameter as &quot;This is a message&quot;.&lt;br&gt;
-
&lt;br&gt;
</documentation>
</annotation>
@@ -836,46 +852,14 @@ Another difference between the tags is that the html tag is only supported for t
</complexType>
</element>
- <annotation>
- <appInfo>
- <meta.section type="since"/>
- </appInfo>
- <documentation>
-
- </documentation>
- </annotation>
- <annotation>
- <appInfo>
- <meta.section type="examples"/>
- </appInfo>
- <documentation>
-
- </documentation>
- </annotation>
- <annotation>
- <appInfo>
- <meta.section type="apiInfo"/>
- </appInfo>
- <documentation>
-
- </documentation>
- </annotation>
- <annotation>
- <appInfo>
- <meta.section type="implementation"/>
- </appInfo>
- <documentation>
-
- </documentation>
- </annotation>
<annotation>
- <appInfo>
+ <appinfo>
<meta.section type="copyright"/>
- </appInfo>
+ </appinfo>
<documentation>
Copyright (c) 2004, 2006 IBM Corporation and others.&lt;br&gt;
All rights reserved. This program and the accompanying materials are made
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/url/IntroURL.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/url/IntroURL.java
index 526c02344..389133a9e 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/url/IntroURL.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/url/IntroURL.java
@@ -112,6 +112,9 @@ public class IntroURL implements IIntroURL {
public static final String VALUE_HOME = "home"; //$NON-NLS-1$
public static final String VALUE_TRUE = "true"; //$NON-NLS-1$
public static final String VALUE_FALSE = "false"; //$NON-NLS-1$
+ public static final String VALUE_CLOSE = "close"; //$NON-NLS-1$
+ public static final String VALUE_STANDBY = "standby"; //$NON-NLS-1$
+ public static final String VALUE_LAUNCHBAR = "launchbar"; //$NON-NLS-1$
@@ -249,15 +252,24 @@ public class IntroURL implements IIntroURL {
}
/**
- * Set the Workbench Intro Part state. Forces the Intro view to open, if not
- * yet created.
- *
- * @param state
- */
+ * Set the Workbench Intro Part state. Forces the Intro view to open, if not yet created.
+ *
+ * Historically this value was "true" (show standby) or "false" (show normal). In Neon we add
+ * "close", "standby" and "launchbar".
+ *
+ * @param state
+ * @return true if the intro was shown, or false if the intro could not be shown
+ */
private boolean setStandbyState(String state) {
if (state == null)
return false;
- boolean standby = state.equals(VALUE_TRUE) ? true : false;
+ if (state.equals(VALUE_CLOSE)) {
+ return IntroPlugin.closeIntro();
+ } else if (state.equals(VALUE_LAUNCHBAR)) {
+ return switchToLaunchBar();
+ }
+ boolean standby = state.equals(VALUE_TRUE) || state.equals(VALUE_STANDBY);
+
IIntroPart introPart = IntroPlugin.showIntro(standby);
if (introPart == null)
return false;

Back to the top