blob: 33de48821582d2c523e17d7fcc4640b0e56cacb3 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HEAD><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</HEAD>
<HTML>
<BODY>
<H1><CENTER>Accelerator Sets</CENTER></H1>
<b><i>Identifier: </i></b>org.eclipse.ui.acceleratorSets<p>
<b><i>Since: </i></b>Release 2.0<p>
<b><i>Description: </i></b>This extension point is used to register accelerator set extensions. Accelerator sets are just what the name implies, sets of accelerators. An accelerator is an association between one or more sequences of accelerator keys and a workbench action. An accelerator key sequence may be of length one or greater.
<p>
An accelerator set is registered with an accelerator configuration (see the Accelerator Configuration extension point) and is applicable for an accelerator scope (see the Accelerator Scope extension point).<p><b><i>Configuration Markup:</i></b><p>
<p><samp>&nbsp;&nbsp; &lt;!ELEMENT extension (acceleratorSet*)&gt;</samp>
<br><br><samp>&nbsp;&nbsp; &lt;!ATTLIST extension</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;point&nbsp;CDATA #REQUIRED</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;id&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name&nbsp;&nbsp;CDATA #IMPLIED</samp>
<br><samp>&nbsp;&nbsp; &gt;</samp>
<ul>
<li><b>point</b> - a fully qualified identifier of the target extension point</li><li><b>id</b> - an optional identifier of the extension instance</li><li><b>name</b> - an optional name of the extension instance</li></ul>
<p><samp>&nbsp;&nbsp; &lt;!ELEMENT acceleratorSet (accelerator+)&gt;</samp>
<br><br><samp>&nbsp;&nbsp; &lt;!ATTLIST acceleratorSet</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;configurationId&nbsp;CDATA #REQUIRED</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scopeId&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #REQUIRED</samp>
<br><samp>&nbsp;&nbsp; &gt;</samp>
<ul>
<li><b>configurationId</b> - a unique name that identifies the accelerator configuration to which this accelerator set is registered.</li><li><b>scopeId</b> - a unique name that identifies the accelerator scope for which this accelerator set is applicable.</li></ul>
<p><samp>&nbsp;&nbsp; &lt;!ELEMENT accelerator EMPTY&gt;</samp>
<br><br><samp>&nbsp;&nbsp; &lt;!ATTLIST accelerator</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #REQUIRED</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;key&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #REQUIRED</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;locale&nbsp;&nbsp;&nbsp;CDATA #IMPLIED</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;platform&nbsp;CDATA #IMPLIED</samp>
<br><samp>&nbsp;&nbsp; &gt;</samp>
<ul>
<li><b>id</b> - the unique identifier of the action definition of the action associated with this accelerator.</li><li><b>key</b> - an attribute representing the sequence(s) of accelerator keys used to perform the action associated with this accelerator. Sequences are separated by '||', and individual keys in a sequence are separated by a space. A key may be modified by the CTRL, ALT, or SHIFT keys. Depending on keyboard layout, some keys ('?' for example) may need the SHIFT to be accessed but the accelerator should be specified without the SHIFT so it will be independent of keyboard layout. E.g. if CTRL+? is specified as an accelerator, the user may have to press CTRL+SHIFT+? depending on the keyboard layout.</li><li><b>locale</b> - an optional attribute which specifies a locale for which the accelerator is applicable. If this attribute is not specified, the accelerator is applicable for all locales.</li><li><b>platform</b> - an optional attribute which specifies a platform on which the accelerator is applicable. If this attribute is not specified, the accelerator is applicable on all platforms.</li></ul>
<b><i>Examples: </i></b>Following is an example of an accelerator set extension:
<p>
<pre>
&lt;extension point=&quot;org.eclipse.ui.acceleratorSets&quot;&gt;
&lt;acceleratorSet
configurationId=&quot;org.eclipse.ui.exampleAcceleratorConfiguration&quot;
scopeId=&quot;org.eclipse.ui.globalScope&quot;&gt;
&lt;accelerator
id=&quot;org.eclipse.ui.ExampleActionA&quot;
key=&quot;CTRL+R CTRL+A&quot;&gt;
&lt;/accelerator&gt;
&lt;accelerator
id=&quot;org.eclipse.ui.ExampleActionB&quot;
key=&quot;CTRL+R CTRL+B&quot;&gt;
&lt;/accelerator&gt;
&lt;accelerator
id=&quot;org.eclipse.ui.ExampleActionC&quot;
key=&quot;CTRL+R CTRL+C || CTRL+SHIFT+DELETE&quot;&gt;
&lt;/accelerator&gt;
&lt;/acceleratorSet&gt;
&lt;/extension&gt;
</pre>
</p><p>
<b><i>API Information: </i></b>More than one accelerator may be specified for the same action in the accelerator set but only one will be used.
<p>
If the locale and/or the platform is specified, the accelerator that better matches the current locale and platform will be used. The current locale is determined by the API Locale.getDefault() and the platform by the API SWT.getPlatform(). If the platform and/or the locale is specified and it does not match the current locale and/or platform, the accelerator is discarded. If accelerator A defines only the locale and B defines only the platform, B is used. If accelerator A defines "ja" as its locale and B defines "ja_JP", B is used in case the current locale is "ja_JP".
<p>
If two accelerators are defined in accelerators sets in different plugins, the chosen accelerator will depend on the plugins. If plugin A depends on B, the accelerators defined in B is used. If A and B don't depend on each other, they will be alphabetically sorted by the plugin id.
<p>
If two accelerators are defined in different scopes, the accelerator defined in the current scope will be used. If an accelerator is not defined in the current scope or one of its parents it is discarded. If an accelerator is defined in a parent and child scope, the one in the child is used.<p>
<b><i>Supplied Implementation: </i></b>The workbench provides accelerator sets for the Default and Emacs accelerator configurations.<p>
<p>
Copyright (c) 2002 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html<p>
</BODY>
</HTML>