org.eclipse.jface.text.IWidgetTokenOwner Java Examples
The following examples show how to use
org.eclipse.jface.text.IWidgetTokenOwner.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: InformationPresenterControlManager.java From Pydev with Eclipse Public License 1.0 | 6 votes |
@Override protected void showInformationControl(Rectangle subjectArea) { if (fControl instanceof IWidgetTokenOwnerExtension && fControl instanceof IWidgetTokenOwner) { IWidgetTokenOwnerExtension extension = (IWidgetTokenOwnerExtension) fControl; if (extension.requestWidgetToken(this, WIDGET_PRIORITY)) { super.showInformationControl(subjectArea); } } else if (fControl instanceof IWidgetTokenOwner) { IWidgetTokenOwner owner = (IWidgetTokenOwner) fControl; if (owner.requestWidgetToken(this)) { super.showInformationControl(subjectArea); } } else { super.showInformationControl(subjectArea); } }
Example #2
Source File: RenameRefactoringPopup.java From xtext-eclipse with Eclipse Public License 2.0 | 5 votes |
protected void releaseWidgetToken() { ISourceViewer viewer = editor.getInternalSourceViewer(); if (viewer instanceof IWidgetTokenOwner) { IWidgetTokenOwner widgetTokenOwner = (IWidgetTokenOwner) viewer; widgetTokenOwner.releaseWidgetToken(this); } }
Example #3
Source File: RenameInformationPopup.java From typescript.java with MIT License | 5 votes |
private void releaseWidgetToken() { ISourceViewer viewer= fEditor.getViewer(); if (viewer instanceof IWidgetTokenOwner) { IWidgetTokenOwner widgetTokenOwner= (IWidgetTokenOwner) viewer; widgetTokenOwner.releaseWidgetToken(this); } }
Example #4
Source File: InformationPresenterControlManager.java From Pydev with Eclipse Public License 1.0 | 5 votes |
@Override protected void handleInformationControlDisposed() { try { super.handleInformationControlDisposed(); } finally { if (fControl instanceof IWidgetTokenOwner) { IWidgetTokenOwner owner = (IWidgetTokenOwner) fControl; owner.releaseWidgetToken(this); } } }
Example #5
Source File: RenameInformationPopup.java From typescript.java with MIT License | 5 votes |
@Override public boolean requestWidgetToken(IWidgetTokenOwner owner, int priority) { if (priority > WIDGET_PRIORITY) { if (fPopup != null && !fPopup.isDisposed()) { fPopup.setVisible(false); } return true; } return false; }
Example #6
Source File: ContentAssistant.java From APICloud-Studio with GNU General Public License v3.0 | 5 votes |
/** * @see org.eclipse.jface.text.IWidgetTokenKeeperExtension#requestWidgetToken(org.eclipse.jface.text.IWidgetTokenOwner, * int) */ public boolean requestWidgetToken(IWidgetTokenOwner owner, int priority) { if (priority > WIDGET_PRIORITY) { hide(); return true; } return false; }
Example #7
Source File: ContentAssistant.java From APICloud-Studio with GNU General Public License v3.0 | 5 votes |
/** * @see org.eclipse.jface.text.IWidgetTokenKeeperExtension#setFocus(org.eclipse.jface.text.IWidgetTokenOwner) */ public boolean setFocus(IWidgetTokenOwner owner) { if (fProposalPopup != null) { fProposalPopup.setFocus(); return fProposalPopup.hasFocus(); } return false; }
Example #8
Source File: RenameInformationPopup.java From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 | 5 votes |
private void releaseWidgetToken() { ISourceViewer viewer= fEditor.getViewer(); if (viewer instanceof IWidgetTokenOwner) { IWidgetTokenOwner widgetTokenOwner= (IWidgetTokenOwner) viewer; widgetTokenOwner.releaseWidgetToken(this); } }
Example #9
Source File: RenameInformationPopup.java From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 | 5 votes |
public boolean requestWidgetToken(IWidgetTokenOwner owner, int priority) { if (priority > WIDGET_PRIORITY) { if (fPopup != null && !fPopup.isDisposed()) { fPopup.setVisible(false); } return true; } return false; }
Example #10
Source File: InformationPresenterControlManager.java From Pydev with Eclipse Public License 1.0 | 4 votes |
@Override public boolean setFocus(IWidgetTokenOwner owner) { return false; }
Example #11
Source File: InformationPresenterControlManager.java From Pydev with Eclipse Public License 1.0 | 4 votes |
@Override public boolean requestWidgetToken(IWidgetTokenOwner owner, int priority) { return false; }
Example #12
Source File: InformationPresenterControlManager.java From Pydev with Eclipse Public License 1.0 | 4 votes |
@Override public boolean requestWidgetToken(IWidgetTokenOwner owner) { return false; }
Example #13
Source File: InformationPresenterControlManager.java From Pydev with Eclipse Public License 1.0 | 4 votes |
@Override public void hideInformationControl(boolean activateEditor, boolean restoreFocus) { //When hiding it may call hide again (because as it gets hidden our handlers are still connected). if (this.onHide) { return; } this.onHide = true; try { try { super.hideInformationControl(); } finally { if (fControl instanceof IWidgetTokenOwner) { IWidgetTokenOwner owner = (IWidgetTokenOwner) fControl; owner.releaseWidgetToken(this); } } this.disposeInformationControl(); //Restore previous active shell? if (this.fInitiallyActiveShell != null && !this.fInitiallyActiveShell.isDisposed()) { if (restoreFocus) { this.fInitiallyActiveShell.setActive(); } this.fInitiallyActiveShell = null; } if (this.fFocusControl != null && !this.fFocusControl.isDisposed()) { if (restoreFocus) { this.fFocusControl.setFocus(); } this.fFocusControl = null; } if (activateEditor) { KeyBindingHelper.executeCommand("org.eclipse.ui.window.activateEditor"); } } finally { this.onHide = false; } }
Example #14
Source File: RenameInformationPopup.java From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 | 4 votes |
public boolean setFocus(IWidgetTokenOwner owner) { if (fToolBar != null && ! fToolBar.isDisposed()) showMenu(fToolBar); return true; }
Example #15
Source File: RenameInformationPopup.java From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 | 4 votes |
public boolean requestWidgetToken(IWidgetTokenOwner owner) { return false; }
Example #16
Source File: ContentAssistant.java From APICloud-Studio with GNU General Public License v3.0 | 4 votes |
/** * @see org.eclipse.jface.text.IWidgetTokenKeeper#requestWidgetToken(org.eclipse.jface.text.IWidgetTokenOwner) */ public boolean requestWidgetToken(IWidgetTokenOwner owner) { return false; }
Example #17
Source File: RenameInformationPopup.java From typescript.java with MIT License | 4 votes |
@Override public boolean setFocus(IWidgetTokenOwner owner) { if (fToolBar != null && ! fToolBar.isDisposed()) showMenu(fToolBar); return true; }
Example #18
Source File: RenameInformationPopup.java From typescript.java with MIT License | 4 votes |
@Override public boolean requestWidgetToken(IWidgetTokenOwner owner) { return false; }
Example #19
Source File: RenameRefactoringPopup.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Override public boolean requestWidgetToken(IWidgetTokenOwner owner) { return false; }
Example #20
Source File: RenameRefactoringPopup.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Override public boolean setFocus(IWidgetTokenOwner owner) { if (toolBar != null && !toolBar.isDisposed()) showMenu(toolBar); return true; }
Example #21
Source File: RenameRefactoringPopup.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Override public boolean requestWidgetToken(IWidgetTokenOwner owner, int priority) { return false; }