Skip to main content



      Home
Home » Eclipse Projects » Eclipse Platform » Menubar contribution blues
Menubar contribution blues [message #202010] Wed, 25 February 2004 20:45
Eclipse UserFriend
Hi. I am attempting to add some UI to the tollbar. I've used the same
pattern as other plugins, such as org.eclipse.jdt.ui, but I can't get my
actions to appear on the menu. In this case, I'm trying to add actions
to the Project menu. But nothing shows up under that menu after I add
the command via Window->Customize Perspective. Thanks for any tips.

Cheers, Chris

excerpt from my plugin.xml file (actually, it's new code in
org.eclipse.compare/plugin.xml...


<extension
point="org.eclipse.ui.actionSets">
<actionSet
label="%action.CheckpointActionSet.label"
description="%action.CheckpointActionSet.description"
visible="false"
id="org.eclipse.compare.CheckpointActionSet">
<action
definitionId="org.eclipse.compare.ui.project.addcheckpoint"
label="%action.AddCheckpoint.label"
tooltip="%action.AddCheckpoint.tooltip"
class="org.eclipse.compare.internal.AddCheckpointAction"
menubarPath="project/additions"
id="addCheckointAction">
</action>
<action
definitionId="org.eclipse.compare.ui.project.showcheckpoints "
label="%action.ShowCheckpoints.label"
tooltip="%action.ShowCheckpoints.tooltip"
class="org.eclipse.compare.internal.ShowCheckpointsAction"
menubarPath="project/additions"
id="showCheckointsAction">
</action>
</actionSet>
</extension>
Previous Topic:Printing on OSX 10.3
Next Topic:dynamic context menus
Goto Forum:
  


Current Time: Thu Jun 19 13:19:59 EDT 2025

Powered by FUDForum. Page generated in 0.03404 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top