1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 01:06:01 +02:00
cdt/launchbar/org.eclipse.launchbar.ui/plugin.xml
Jonah Graham 533d62ce6c Bug 558439: Move launchbar plug-ins into its own folder
This also removes the duplicated infra and releng code that is no longer
needed in merged repo

Change-Id: Ia5c52c7b087ed2612ed505c37ae00c9c6efe1f4f
2019-12-18 13:41:51 -05:00

63 lines
2.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension-point id="launchBarUIContributions" name="launchBar UI Contributions" schema="schema/launchBarUIContributions.exsd"/>
<extension-point id="launchTargetTypeUI" name="Launch Target Type UI" schema="schema/launchTargetTypeUI.exsd"/>
<extension
point="org.eclipse.ui.commands">
<category
id="org.eclipse.launchbar.ui.category.launchBar"
name="Launch Bar">
</category>
<command
categoryId="org.eclipse.launchbar.ui.category.launchBar"
defaultHandler="org.eclipse.launchbar.ui.internal.commands.BuildActiveCommandHandler"
id="org.eclipse.launchbar.ui.command.buildActive"
name="Build Active Launch Configuration">
</command>
<command
categoryId="org.eclipse.launchbar.ui.category.launchBar"
defaultHandler="org.eclipse.launchbar.ui.internal.commands.LaunchActiveCommandHandler"
id="org.eclipse.launchbar.ui.command.launchActive"
name="Launch Active Launch Configuration">
</command>
<command
categoryId="org.eclipse.launchbar.ui.category.launchBar"
defaultHandler="org.eclipse.launchbar.ui.internal.commands.StopActiveCommandHandler"
id="org.eclipse.launchbar.ui.command.stop"
name="Stop">
</command>
<command
categoryId="org.eclipse.launchbar.ui.category.launchBar"
defaultHandler="org.eclipse.launchbar.ui.internal.commands.ConfigureActiveLaunchHandler"
id="org.eclipse.launchbar.ui.command.configureActiveLaunch"
name="Edit Active Launch Configuration">
</command>
</extension>
<extension
point="org.eclipse.launchbar.ui.launchBarUIContributions">
<descriptorUI
descriptorTypeId="org.eclipse.launchbar.core.descriptor.default"
labelProvider="org.eclipse.launchbar.ui.DefaultDescriptorLabelProvider">
</descriptorUI>
</extension>
<extension
point="org.eclipse.ui.newWizards">
<category
id="org.eclipse.launchbar.ui.targetWizards"
name="Launch Targets">
</category>
<wizard
category="org.eclipse.launchbar.ui.targetWizards"
class="org.eclipse.launchbar.ui.internal.target.NewLaunchTargetWizard"
icon="icons/localTarget.png"
id="org.eclipse.launchbar.ui.superTargetWizard"
name="Launch Target"
project="false">
</wizard>
</extension>
</plugin>