2

根据这里,我已经实现了一个 IIntroAction,它将从介绍页面在 Eclipse 中打开一个透视图(我的操作几乎完全相同)。

我的与那里显示的有点不同,但本质上它被调用(作为 url)如下: http://org.eclipse.ui.intro/runAction?class=my.plugin.actions.OpenPerspectiveAction&pluginId=my.plugin&pId=my.other.plugin.MyPerspective

其中 pId 是我要打开的透视图的 id。(这有效!......大多数时候。)

如上面的链接所述,此操作的问题在于,如果 MyPerspective 在欢迎页面下方打开,那么它将不会打开(或者更确切地说,欢迎页面不会关闭......)。

如何在操作调用时显示所需的透视图,即使它在欢迎页面下方打开?

我探索的一些可能的解决方案的路径(不完全,所以我可能错过了一些东西):

  • 用 PerspectiveRegistry 做一些事情(虽然没有看到任何结果......)
  • 检查工作台以查看打开的透视图并从中切换
  • 检查工作台以查看打开的透视图是什么以及它是否是所需的透视图

这些只是概念性的解决方案——我不知道它们是否真的可以实现!如果有人能对我如何解决这个问题有所了解,我将不胜感激。

4

1 回答 1

3

以下代码在我的 RCP 项目中运行良好。

简介页面链接:

<a id="a-ism" href="http://org.eclipse.ui.intro/runAction?pluginId=sernet.gs.ui.rcp.main&#38;class=sernet.gs.ui.rcp.main.actions.ShowISMPerspectiveIntroAction">

动作类:

public class ShowISMPerspectiveIntroAction extends ShowPerspectiveIntroAction {

  @Override
  public String getCheatSheetId() {
    return "sernet.gs.ui.rcp.main.cheatsheet1";
  }

  @Override
  public String getPerspectiveId() {
    return Iso27kPerspective.ID;
  }
}

动作基类:

import  org.eclipse.ui.intro.config.IIntroAction;

public abstract class ShowPerspectiveIntroAction implements IIntroAction {

  private static final Logger LOG = Logger.getLogger(ShowPerspectiveIntroAction.class);

  @Override
  public void run(IIntroSite arg0, Properties arg1) {
    // Switch to perspective
    final IWorkbenchWindow workbenchWindow = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
    IPerspectiveDescriptor activePerspective = workbenchWindow.getActivePage().getPerspective();
    if(activePerspective==null || !activePerspective.getId().equals(getPerspectiveId())) {           
        Display.getCurrent().asyncExec(new Runnable() {
            public void run() {
                // switch perspective           
                try {
                    workbenchWindow.getWorkbench().showPerspective(getPerspectiveId(),workbenchWindow);
                } catch (WorkbenchException e) {
                    LOG.error("Can not switch to perspective: " + getPerspectiveId(), e);
                }
            }
        });
    }

    // close intro/welcome page
    final IIntroPart introPart = PlatformUI.getWorkbench().getIntroManager().getIntro(); 
    PlatformUI.getWorkbench().getIntroManager().closeIntro(introPart);

    // Show CheatSheet
    ShowCheatSheetAction action = new ShowCheatSheetAction("Show security assessment cheat sheet", getCheatSheetId());
    action.run();
  }

  public abstract String getCheatSheetId();
  public abstract String getPerspectiveId();
}
于 2012-07-06T07:56:05.090 回答