如何將視圖放入編輯器中。喜歡的東西:Eclipse RCP,將新視圖添加到編輯器
public class Perspective implements IPerspectiveFactory {
public static final String ID = "com.example.gui.perspective";
public void createInitialLayout(IPageLayout layout) {
layout.setEditorAreaVisible(true);
String editorArea = layout.getEditorArea();
layout.addView(View.ID, IPageLayout.TOP, 0.6f, IPageLayout.ID_EDITOR_AREA);
...
}
但只有IPageLayout.TOP,IPageLayout.BOTTOM,IPageLayout.LEFT和IPageLayout.RIGHT選項。我想把它放進去。這怎麼可能?
謝謝你的快速回復。我創建了一個新的類,它擴展了EditorPart。但我仍在努力如何將編輯器添加到我的應用程序中。 –