How to add a submenu entry to Eclipse Package Explorer context menu item using org.eclipse.ui.menus?

末鹿安然 提交于 2019-11-30 08:22:18

问题


I am trying to add a submenu entry to an item from the context menu of the Eclipse Package Explorer.

The menu entry is already defined via org.eclipse.ui.popupMenus in another plugin, not in the one that I am working at. (That plugin is added to the dependencies list of my plugin). There are also items added in its submenu, but also using org.eclipse.ui.popupMenus, and I am trying to do this via org.eclipse.ui.menus.

To begin with, I did the following:

  • I added org.eclipse.ui.commands and org.eclipse.ui.menus extensions.
  • I defined a command , respectively a menuContribution like this:

This adds the item in any context menu... So I would have to replace "org.eclipse.ui.popup.any?after=additions" from the locationURI with the id of the submenu I want my item to appear in.

My problem is: how to determine a correct locationURI? I used the menu spy (ALT+SHIFT+F2) and inspected the submenu I want to contribute to, and I received the following URI:

menu:YYY?after=ZZZ, where:

YYY is the id of the menu that is already defined and to which I want to add the submenu item ZZZ is the id of the action from the submenu, that I clicked upon (using the spy)

I tryied the following, but the submenu item does not appear:

  • menu:YYY[?after=additions]
  • popup:YYY[?after=additions]

Please help :)


回答1:


I managed to make it work by defining a new menu contribution and a menu having the same id and label as the menu already defined. The final solution looks like this:

<extension point="org.eclipse.ui.menus">
  <menuContribution
        locationURI="popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu?after=additions">
     <menu
           id="YYY"
           label="%YYYs_label">
     </menu>
  </menuContribution>
  <menuContribution
        locationURI="popup:YYY?after=additions">
     <command
           commandId="example.MyCommandHandlerID"
           icon="icons/somePhoto.gif"
           label="MyLabel"
           style="push">
     </command>
  </menuContribution>
</extension>


来源:https://stackoverflow.com/questions/12617898/how-to-add-a-submenu-entry-to-eclipse-package-explorer-context-menu-item-using-o

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!