How do I stop an Eclipse Editor from closing in an RCP

心已入冬 提交于 2019-12-18 13:36:54

问题


I am working on an Eclipse based RCP. We have a need to prevent one of the opened editors from being closed by the user.

The desired behavior is:

  1. the user clicks the X in the editor window or "CTRL+W"
  2. a dialog pops up saying: "If you close this editor, your activity will stop. Do you want to?"
  3. if they click yes, it closes, if no, it stays open.

Oh yeah, and is this even possible?

Thanks, gk


回答1:


You could use a org.eclipse.ui.ISaveablePart2, more specifically the method promptToSaveOnClose().

However, as said in this thread,

it will only be shown if the editor is dirty at the time it is closed.

See an example in this SaveableHelper.java source file.

See also the article Prevent that a RCP Editor is closed, which explains how this method works:




回答2:


You can also cancel the saving in

@Override
public void doSave(IProgressMonitor monitor) {

by calling

monitor.setCanceled(true);

In the EditorPart implementation




回答3:


Not directly related but I was looking for a way to prevent an Editor to be closed and found this little hack, hope it could help.

page.addPartListener(new IPartListener2() {
    // [...]
    @Override
    public void partClosed(IWorkbenchPartReference partRef) {
        try {
            page.openEditor(input, id);
        } catch (PartInitException e) {
            e.printStackTrace();
        }
    }
});


来源:https://stackoverflow.com/questions/2157016/how-do-i-stop-an-eclipse-editor-from-closing-in-an-rcp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!