如何创建插件以在Eclipse 4的编辑器选项卡顶部添加栏?

时间:2019-04-22 18:53:49

标签: java eclipse eclipse-plugin

我想为eclipse 4创建插件,以便在编辑器选项卡的顶部具有带有输入,按钮等的栏。 https://i.postimg.cc/853z11kL/ec.png

我有这样的编辑器:

IEditorPart editor = window.getActivePage().getActiveEditor();
if (editor != null && editor instanceof TextEditor) {
}

但是我找不到将视图放置在想要的位置的方法。

我试图在plugin.xml中使用它

<extension point="org.eclipse.ui.perspectiveExtensions">
   <perspectiveExtension targetID="*">
      <view closeable="false" id="view_id" minimized="false" moveable="false" ratio="0.2" relationship="top" relative="org.eclipse.ui.editors" showTitle="false" standalone="true" visible="true" />
   </perspectiveExtension>
</extension>

但是视图显示在编辑器标签https://i.postimg.cc/8CnSWNJc/ec2.png

0 个答案:

没有答案