Package com.intellij.openapi.wm

Examples of com.intellij.openapi.wm.IdeFocusManager


                .createBalloon()
                .show(new RelativePoint(this.editor.getComponent(), new Point(0, 0)), Balloon.Position.above);
    }

    public void requestFocusOnEditor() {// Code from requestFocus of EditorImpl
        final IdeFocusManager focusManager = IdeFocusManager.getInstance(this.project);
        JComponent editorContentComponent = editor.getContentComponent();
        if (focusManager.getFocusOwner() != editorContentComponent) {
            focusManager.requestFocus(editorContentComponent, true);
        }
    }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.wm.IdeFocusManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.