5

这个功能从 Kepler M4 开始就已经实现了,关于使用的详细信息见我的博客

我想实现对位于视图工具栏中的处理程序菜单的完全动态菜单贡献。在 Eclipse 3 中,可以添加“动态”作为 org.eclipse.ui.menus 对菜单的贡献!

我已经发现www.vogella.com/blog/2010/10/26/processors-e4-model解释了如何通过处理器模型扩展动态地为菜单做出贡献,但我正在谈论一个完全动态的菜单实现,它会改变在每次通话时。子菜单。如前所述,在 Eclipse 3.x 中通过动态菜单贡献和将 isDynamic() 设置为 true 来实现这一点是没有问题的。

我已经尝试了几种方法:

开放的、未经尝试的解决方案

  • 插入 ToolControl 以尝试 SWT 方法 -> 相当复杂但可能有效

我已经有一段时间了,但似乎无法理解 E4 中这个问题的正确实现。

-- 这个问题也在Eclipse 论坛中被问到 - 动态菜单贡献

- - - 更新

到目前为止,我尝试了一种不同的方法:

我在菜单中添加了一个 HandledToolItem(请参见下图)

片段命令方法

并且使用以下代码,我试图干扰菜单的构建方式,代码由相应的调用。图像中引用的命令处理程序。

@CanExecute
    public boolean canExecute(@Optional MApplication application) {
        System.out.println("CanExecute Counter="+counter);
            // --- 1 ---
        // Find the required MMenu Entry in the Application Model
        if(application == null) return true;
        EModelService modelService = (EModelService) application.getContext().get(EModelService.class.getName());
        MPart part = (MPart) modelService.find("at.medevit.emr.contacts.ui.contactselector", application);
        List<MToolBarElement> lmte = part.getToolbar().getChildren();
        HandledToolItemImpl htil = null;
        for (MToolBarElement mToolBarElement : lmte) {
            if(mToolBarElement.getElementId().equals("at.medevit.emr.contacts.ui.contactselector.toolbar.handledtoolitem.filter")) htil = (HandledToolItemImpl) mToolBarElement;
        }
        if(htil != null) {
            MMenu elemMenu = htil.getMenu();
        // --- 2 ---
            // Found it hopefully, let's start the real work, simply add a new item
        MDirectMenuItem mdi = MMenuFactory.INSTANCE.createDirectMenuItem();
        mdi.setLabel("Counter "+counter);
        counter++;
            // --- 3 ---
        elemMenu.getChildren().add(mdi); // ConcurrentModificationException
        }

可以看到,一旦创建菜单,就会查询此代码,以确定该命令是否可执行。从 1 到 2 的所有代码都是为了找到正确的 MMenu 元素来处理。2 - 3 中的代码创建一个 MenuItem 并在该字段中增加一个计数器。

但是在 3 我第一次打开菜单时遇到了java.util.ConcurrentModificationException !我假设此时菜单正在遍历 elemMenu.getChildren() 并且我不允许启用!

那么关于整个 e4 模型一直在变化的所有模糊之处是什么;)(开个玩笑,我知道这是一个 baaaad hack !!!)

问题是:我真的认为添加完全动态菜单部分的可能性是最好的可用性工具之一,如果不能像在 E3 中那样在 E4 中实现它,这是一种非常严重的可能性下降!!!

- 更新

已为此https://bugs.eclipse.org/bugs/show_bug.cgi?id=389063提交了一个 Eclipse 错误

4

1 回答 1

2

应该在您打开的错误中处理适当的动态模型更新。作为 Juno 中 Eclipse4 中的一种解决方法,可以在 Eclipse4 中创建 MRenderedMenuItem 以提供与动态元素等效的功能(尽管如果您使用的是 4.2,则只需使用 org.eclipse.ui.menus)。

前任:

ContextFunction generator = new ContextFunction() {
    @Override
    public Object compute(IEclipseContext context) {
        return new MyCompoundContributionItem(context);
    }
};

MRenderedMenuItem menuItem = MenuFactoryImpl.eINSTANCE.createRenderedMenuItem();
menuItem.setElementId(id);
menuItem.setContributionItem(generator);
container.getChildren().add(menuItem);

这有效地将 CompoundContributionItem 直接提供给 Eclipse4 菜单渲染器。

于 2012-09-10T14:41:05.817 回答