mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-29 09:47:50 +08:00
58 lines
2.6 KiB
Java
58 lines
2.6 KiB
Java
package com.simpleplugin;
|
|
|
|
import com.intellij.lexer.FlexAdapter;
|
|
import com.intellij.lexer.Lexer;
|
|
import com.intellij.openapi.editor.SyntaxHighlighterColors;
|
|
import com.intellij.openapi.editor.colors.TextAttributesKey;
|
|
import com.intellij.openapi.editor.markup.TextAttributes;
|
|
import com.intellij.openapi.fileTypes.SyntaxHighlighterBase;
|
|
import com.intellij.psi.TokenType;
|
|
import com.intellij.psi.tree.IElementType;
|
|
import com.simpleplugin.psi.SimpleTypes;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import java.awt.*;
|
|
import java.io.Reader;
|
|
|
|
import static com.intellij.openapi.editor.colors.TextAttributesKey.createTextAttributesKey;
|
|
|
|
public class SimpleSyntaxHighlighter extends SyntaxHighlighterBase {
|
|
public static final TextAttributesKey SEPARATOR = createTextAttributesKey("SIMPLE_SEPARATOR", SyntaxHighlighterColors.OPERATION_SIGN);
|
|
public static final TextAttributesKey KEY = createTextAttributesKey("SIMPLE_KEY", SyntaxHighlighterColors.KEYWORD);
|
|
public static final TextAttributesKey VALUE = createTextAttributesKey("SIMPLE_VALUE", SyntaxHighlighterColors.STRING);
|
|
public static final TextAttributesKey COMMENT = createTextAttributesKey("SIMPLE_COMMENT", SyntaxHighlighterColors.LINE_COMMENT);
|
|
|
|
static final TextAttributesKey BAD_CHARACTER = createTextAttributesKey("SIMPLE_BAD_CHARACTER",
|
|
new TextAttributes(Color.RED, null, null, null, Font.BOLD));
|
|
|
|
private static final TextAttributesKey[] BAD_CHAR_KEYS = new TextAttributesKey[]{BAD_CHARACTER};
|
|
private static final TextAttributesKey[] SEPARATOR_KEYS = new TextAttributesKey[]{SEPARATOR};
|
|
private static final TextAttributesKey[] KEY_KEYS = new TextAttributesKey[]{KEY};
|
|
private static final TextAttributesKey[] VALUE_KEYS = new TextAttributesKey[]{VALUE};
|
|
private static final TextAttributesKey[] COMMENT_KEYS = new TextAttributesKey[]{COMMENT};
|
|
private static final TextAttributesKey[] EMPTY_KEYS = new TextAttributesKey[0];
|
|
|
|
@NotNull
|
|
@Override
|
|
public Lexer getHighlightingLexer() {
|
|
return new FlexAdapter(new SimpleLexer((Reader) null));
|
|
}
|
|
|
|
@NotNull
|
|
@Override
|
|
public TextAttributesKey[] getTokenHighlights(IElementType tokenType) {
|
|
if (tokenType.equals(SimpleTypes.SEPARATOR)) {
|
|
return SEPARATOR_KEYS;
|
|
} else if (tokenType.equals(SimpleTypes.KEY)) {
|
|
return KEY_KEYS;
|
|
} else if (tokenType.equals(SimpleTypes.VALUE)) {
|
|
return VALUE_KEYS;
|
|
} else if (tokenType.equals(SimpleTypes.COMMENT)) {
|
|
return COMMENT_KEYS;
|
|
} else if (tokenType.equals(TokenType.BAD_CHARACTER)) {
|
|
return BAD_CHAR_KEYS;
|
|
} else {
|
|
return EMPTY_KEYS;
|
|
}
|
|
}
|
|
} |