RCP 3-锁定工具栏菜单内容

时间:2018-07-19 14:55:39

标签: java swt eclipse-rcp rcp

当前,我正在使用RCP 4中的兼容性将RCP 3项目移植到RCP4。到目前为止,尽管我必须对工具栏上使用的ContributionItem进行更改,但这种方法仍然有效。因为现在需要WorkbenchWindowControlContribution
更改此设置后,我注意到现在可以拖动工具栏并移动它了。我想删除允许单击以移动面板的图标(带有3个点)。

这就是我定义菜单内容的方式。

<menuContribution locationURI="toolbar:org.eclipse.ui.main.toolbar">
  <toolbar id="contributions.toolbar">
    <control
      class="name.of.Class"
      id="perspectiveSwitcherToolbar">
    </control>
  </toolbar>
</menuContribution>

如何锁定工具栏?

1 个答案:

答案 0 :(得分:1)

在Eclispe e4中,我们通过在Application.e4xmi模型中添加标签来实现这一点。

  1. 单击您的工具栏
  2. 转到该工具栏的补充部分,如下所示。

enter image description here

  1. 在“标签”部分下的“新值”文本框中输入标签FBParameterMetaData,不带空格,如下所示,然后单击“添加”按钮。

enter image description here

现在保存并重新启动应用程序,用于移动面板的控件(3个点)将被禁用。

enter image description here

要在e3中实现类似功能,请访问此讨论链接Remove ToolBar Drag