gpt4 book ai didi

eclipse - e4动态菜单贡献

转载 作者:行者123 更新时间:2023-12-03 04:53:55 26 4
gpt4 key购买 nike

此功能已从 Kepler M4 开始实现,有关使用的详细信息,请参阅 my blog

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

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

我已经尝试了几种方法:

  • 注册一个挂接到菜单的处理器 => 无法进行动态添加(新元素根本不会显示,这也在 Eclipse Forum - Cannot replace menu items at runtime 中进行了讨论)
  • 监听 UIEventTopic 以获取创建菜单的事件,获取用于修改的小部件 => 对 swt.Menu 收集的修改将被简单地忽略(每个监听器、元素等)(有关信息 RCP Event Model

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

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

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

-- 这个问题在Eclipse Forum - Dynamic menu contributions 中也被问过。

-----更新

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

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

Fragment command approach

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

@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 模型一直在变化的所有模糊之处是什么呢;)(只是开玩笑,我知道这是一个糟糕的黑客!!!)

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

--更新

已为此提交 Eclipse Bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=389063

最佳答案

正确的动态模型更新应该在您打开的错误中进行处理。作为 Juno 中 Eclipse4 中的解决方法,可以在 Eclipse4 中创建 MRenderedMenuItem 来提供与 dynamic 元素等效的功能(尽管如果您使用的是 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);

这有效地直接向 Eclipse4 菜单渲染器提供了一个CompoundContributionItem。

关于eclipse - e4动态菜单贡献,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12315749/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com