List of usage examples for com.intellij.openapi.fileEditor FileEditorManagerListener interface-usage
From source file com.atlassian.theplugin.idea.ui.linkhiglighter.FileEditorListenerImpl.java
/** * @author pmaruszak */ public class FileEditorListenerImpl implements FileEditorManagerListener { private final Map<VirtualFile, JiraLinkHighlighter> linkHighlighters = new HashMap<VirtualFile, JiraLinkHighlighter>(); private JiraEditorLinkParser jiraEditorLinkParser;
From source file com.chrisrm.idea.tabs.MTTabsEditorAdapter.java
public final class MTTabsEditorAdapter implements FileEditorManagerListener { @Override public void selectionChanged(@NotNull final FileEditorManagerEvent event) { final Project project = event.getManager().getProject(); final FileEditorManagerEx manager = FileEditorManagerEx.getInstanceEx(project);
From source file com.github.intelliguard.gutter.GuardMarkerEditorListener.java
/**
* Created by IntelliJ IDEA.
* User: Ronnie
* Date: 2009-nov-09
* Time: 20:30:20
*/
From source file com.googlecode.intelliguard.gutter.GuardMarkerEditorListener.java
/**
* Created by IntelliJ IDEA.
* User: Ronnie
* Date: 2009-nov-09
* Time: 20:30:20
*/
From source file com.intellij.ide.navigationToolbar.NavBarListener.java
/** * @author Konstantin Bulenkov */ public class NavBarListener extends WolfTheProblemSolver.ProblemListener implements ActionListener, FocusListener, FileStatusListener, AnActionListener, FileEditorManagerListener, PsiTreeChangeListener, ModuleRootListener, NavBarModelListener, PropertyChangeListener, KeyListener, WindowFocusListener {
From source file com.intellij.lang.jsgraphql.ide.project.JSGraphQLLanguageUIProjectService.java
/** * Provides the project-specific GraphQL tool window, including errors view, console, and query result editor. */ public class JSGraphQLLanguageUIProjectService implements Disposable, FileEditorManagerListener, JSGraphQLConfigurationListener {
From source file com.intellij.lang.jsgraphql.schema.ide.project.JSGraphQLSchemaLanguageProjectService.java
/** * Provides Schema information about PSI elements, such as the type name of a property in a field, and the schema declarations a GraphQL PSI element is based on. */ public class JSGraphQLSchemaLanguageProjectService implements FileEditorManagerListener, JSGraphQLLanguageServiceListener, Disposable {
From source file com.weebly.opus1269.smoothscroller.FileEditorListener.java
public class FileEditorListener implements FileEditorManagerListener { private final Map<FileEditor, SmoothScrollerMouseWheelListener> mListeners = new HashMap<FileEditor, SmoothScrollerMouseWheelListener>(); @Override public void fileOpened(@NotNull FileEditorManager fileEditorManager, @NotNull VirtualFile virtualFile) { }
From source file de.fu_berlin.inf.dpp.intellij.editor.StoppableEditorFileListener.java
/** * IntelliJ editor file listener */ public class StoppableEditorFileListener extends AbstractStoppableListener implements FileEditorManagerListener { public StoppableEditorFileListener(EditorManager manager) {
From source file idea.plugin.psiviewer.controller.project.EditorListener.java
/** * @author <a href="mailto:andrew_armstrong@bigpond.com">Andrew Armstrong</a> * @version $Revision: 1.1 $ */ public class EditorListener extends CaretAdapter implements FileEditorManagerListener, CaretListener {