如何在 Eclipse e4 应用程序的 menu/toolbar 中创建 toggle/radio 项?
How to create a toggle/radio item in the menu/toolbar of an Eclipse e4 application?
在 eclipse e4 rcp 应用程序中创建实现切换或单选状态的菜单项的规范方法是什么?
这看起来很基本,但我发现的所有文档都依赖于 e3 API 并创建了对 org.eclipse.ui 的依赖项,这在 e4.
中是不允许的
我用于单选按钮菜单的一种可能方式,它在 class.
部分保存单选按钮状态
我使用多个 Direct Menu Item
类型设置为 Radio
的条目。
我将标签值(在菜单项的补充页面上)设置为我想与菜单项关联的值。
我对所有菜单项使用相同的处理程序。
在处理程序中,我注入了 MPart
和 MItem
:
@Execute
public void execute(final MPart part, final MItem mitem)
{
// Only take action on the selected radio item
if (!mitem.isSelected())
return;
// The tag value specifying the radio state
String tag = mitem.getTags().get(0);
// Get the part class
MyPart myPart = (MyPart)part.getObject();
// tell the part about the state change
myPart.setState(tag);
}
您还可以使用 Eclipse 上下文中的任何 class 而不是 MPart
- 例如声明为 @Creatable
和 @Singleton
.
在 eclipse e4 rcp 应用程序中创建实现切换或单选状态的菜单项的规范方法是什么?
这看起来很基本,但我发现的所有文档都依赖于 e3 API 并创建了对 org.eclipse.ui 的依赖项,这在 e4.
中是不允许的我用于单选按钮菜单的一种可能方式,它在 class.
部分保存单选按钮状态我使用多个 Direct Menu Item
类型设置为 Radio
的条目。
我将标签值(在菜单项的补充页面上)设置为我想与菜单项关联的值。
我对所有菜单项使用相同的处理程序。
在处理程序中,我注入了 MPart
和 MItem
:
@Execute
public void execute(final MPart part, final MItem mitem)
{
// Only take action on the selected radio item
if (!mitem.isSelected())
return;
// The tag value specifying the radio state
String tag = mitem.getTags().get(0);
// Get the part class
MyPart myPart = (MyPart)part.getObject();
// tell the part about the state change
myPart.setState(tag);
}
您还可以使用 Eclipse 上下文中的任何 class 而不是 MPart
- 例如声明为 @Creatable
和 @Singleton
.