我正在寻找一种以编程方式在Eclipse RCP应用程序中打开分屏编辑器的方法 从一个开放的编辑器我想打开另一个编辑器。目的是将Editor1的内容与Editor2的内容进行比较。
我所拥有的是以下内容,但这会创建一个包含Editor2内容的分屏编辑器两次:
MPart editorPart = editor.getSite().getService(MPart.class);
if (editorPart == null) {
return;
}
editorPart.getTags().add(IPresentationEngine.SPLIT_HORIZONTAL);
我认为最好在当前编辑器的左下方打开Editor2,因此它有自己的标签和关闭按钮。
答案 0 :(得分:3)
下面的代码通过将一个编辑器插入另一个编辑器来拆分编辑器。这就是Eclipse中编辑器选项卡的DnD。
/**
* Inserts the editor into the container editor.
*
* @param ratio
* the ratio
* @param where
* where to insert ({@link EModelService#LEFT_OF},
* {@link EModelService#RIGHT_OF}, {@link EModelService#ABOVE} or
* {@link EModelService#BELOW})
* @param containerEditor
* the container editor
* @param editorToInsert
* the editor to insert
*/
public void insertEditor(float ratio, int where, MPart containerEditor, MPart editorToInsert) {
IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
EModelService service = window.getService(EModelService.class);
MPartStack toInsert = getPartStack(editorToInsert);
MArea area = getArea(containerEditor);
MPartSashContainerElement relToElement = area.getChildren().get(0);
service.insert(toInsert, (MPartSashContainerElement) relToElement, where, ratio);
}
private MPartStack getPartStack(MPart childPart) {
MStackElement stackElement = childPart;
MPartStack newStack = BasicFactoryImpl.eINSTANCE.createPartStack();
newStack.getChildren().add(stackElement);
newStack.setSelectedElement(stackElement);
return newStack;
}
private MArea getArea(MPart containerPart) {
MUIElement targetParent = containerPart.getParent();
while (!(targetParent instanceof MArea))
targetParent = targetParent.getParent();
MArea area = (MArea) targetParent;
return area;
}
使用insert
方法的示例如下:
insertEditor(0.5f, EModelService.LEFT_OF, containerPart, childPart);
insertEditor(0.5f, EModelService.BELOW, containerPart, childPart);
顺便说一下,类SplitDropAgent2
中的代码负责编辑器选项卡的DnD功能。