Package com.intellij.openapi.wm

Examples of com.intellij.openapi.wm.StatusBarWidget


        ApplicationManager.getApplication().invokeLater(new Runnable() {
            @Override
            public void run() {
                IdeFrame frame = WindowManager.getInstance().getIdeFrame(project);
                StatusBar statusBar = frame.getStatusBar();
                StatusBarWidget widget = statusBar != null ? statusBar.getWidget("LineSeparator") : null;

                if (widget instanceof LineSeparatorPanel) {
                    FileEditorManagerEvent event = new FileEditorManagerEvent(FileEditorManager.getInstance(project),
                                                                              null, null, null, null);
                    ((LineSeparatorPanel)widget).selectionChanged(event);
View Full Code Here

TOP

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

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.