blob: 59443453c2c5febf9459cf32f92ffd214ef3cd3c [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.codeHighlighting;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.components.ServiceManager;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* User: anna
* Date: 20-Apr-2006
*/
public abstract class TextEditorHighlightingPassRegistrar {
/**
* @deprecated
*/
public static final int FIRST = 0;
/**
* @deprecated
*/
public static final int LAST = 1;
/**
* @deprecated
*/
public static final int BEFORE = 3;
/**
* @deprecated
*/
public static final int AFTER = 2;
public enum Anchor {
FIRST, LAST, BEFORE, AFTER,
}
public static TextEditorHighlightingPassRegistrar getInstance(Project project){
return ServiceManager.getService(project, TextEditorHighlightingPassRegistrar.class);
}
/**
* @deprecated
*/
public abstract void registerTextEditorHighlightingPass(TextEditorHighlightingPassFactory factory, int anchor, int anchorPass);
/**
* Registers the factory for the new highlighting pass.
* Factory will be asked to create the highlighting pass every time IDEA tries to highlight the file.
*
* @param factory
* @param anchor
* @param anchorPassId id of the anchor pass. Predefined pass Ids are declared in {@link com.intellij.codeHighlighting.Pass}
* @param needAdditionalIntentionsPass
* @param inPostHighlightingPass
* @return the id of the new pass which e.g. can be used as an anchor for the other pass.
*/
public int registerTextEditorHighlightingPass(final TextEditorHighlightingPassFactory factory,
final Anchor anchor,
final int anchorPassId,
boolean needAdditionalIntentionsPass,
boolean inPostHighlightingPass) {
int[] ids = null;
switch (anchor) {
case AFTER:
ids = new int[]{anchorPassId};
break;
case BEFORE:
//todo
ids = null;
break;
case FIRST:
ids = null;
break;
case LAST:
//todo
ids = new int[]{Pass.UPDATE_ALL,
Pass.UPDATE_FOLDING, Pass.UPDATE_OVERRIDEN_MARKERS,
Pass.EXTERNAL_TOOLS,
Pass.LOCAL_INSPECTIONS, Pass.POPUP_HINTS, Pass.POST_UPDATE_ALL};
break;
}
return registerTextEditorHighlightingPass(factory, ids, null, needAdditionalIntentionsPass, -1);
}
public abstract int registerTextEditorHighlightingPass(@NotNull TextEditorHighlightingPassFactory factory,
@Nullable final int[] runAfterCompletionOf,
@Nullable int[] runAfterStartingOf,
boolean runIntentionsPassAfter,
int forcedPassId);
}