我希望能够在启动eclipse插件应用程序后完全删除菜单项。我想要做的是以后能够根据用户操作根据业务逻辑添加这些菜单项。有没有办法做到这一点?我已经考虑过使用捐款,但是我觉得那不是我想要的。

如果它可以满足我的需要,我该如何使用它们?在此先感谢您的协助。

最佳答案

您可以从MenuManager获得菜单,然后修改贡献。此代码段显示了如何访问菜单管理器并删除命名的项目。

您需要跟踪已删除的项目和项目索引以恢复它们。唯一的麻烦是indexOf方法不可见。将此代码段添加到与MenuManager相同的程序包中的类型,并将其添加到片段中是一种解决方法。

IWorkbenchWindow window = Workbench.getInstance().getActiveWorkbenchWindow()

if(window instanceof WorkbenchWindow) {
    MenuManager menuManager = ((WorkbenchWindow)window).getMenuManager();

    //TODO you may need to remove items from the coolbar as well
    ICoolBarManager coolBarManager = null;

    if(((WorkbenchWindow) window).getCoolBarVisible()) {
        coolBarManager = ((WorkbenchWindow)window).getCoolBarManager2();
    }

    Menu menu = menuManager.getMenu();

    //you'll need to find the id for the item
    String itemId = "menuId";
    IContributionItem item = menuManager.find(itemId);

    // remember position, TODO this is protected
    int controlIdx = menu.indexOf(mySaveAction.getId());

    if (item != null) {
        // clean old one
        menuManager.remove(item);

        // refresh menu gui
        menuManager.update();
    }
}

10-06 06:00