Example usage for com.intellij.openapi.options.colors ColorSettingsPage interface-usage

List of usage examples for com.intellij.openapi.options.colors ColorSettingsPage interface-usage

Introduction

In this page you can find the example usage for com.intellij.openapi.options.colors ColorSettingsPage interface-usage.

Usage

From source file browsewordatcaret.BWACColorSettingsPage.java

public class BWACColorSettingsPage implements ColorSettingsPage {
    public static final TextAttributesKey BROWSEWORDATCARET = TextAttributesKey
            .createTextAttributesKey("BROWSEWORDATCARET");

    private static final AttributesDescriptor[] ATTRIBUTESDESC = {
            new AttributesDescriptor("BrowseWordAtCaret", BROWSEWORDATCARET) };

From source file com.amazon.ion.plugin.intellij.highlight.IonColorSettingsPage.java

public class IonColorSettingsPage implements ColorSettingsPage {

    private static final AttributesDescriptor[] DESCRIPTORS = new AttributesDescriptor[] {
            new AttributesDescriptor("Annotations", IonSyntaxHighlighter.annotation),
            new AttributesDescriptor("Key", IonSyntaxHighlighter.keyword),
            new AttributesDescriptor("Separator", IonSyntaxHighlighter.separator),

From source file com.android.tools.idea.logcat.AndroidLogcatColorPage.java

/**
 * An entry in the "Colors and Fonts" settings section for Android Logcat settings.
 */
public final class AndroidLogcatColorPage implements ColorSettingsPage {
    private static final Map<String, TextAttributesKey> ADDITIONAL_HIGHLIGHT_DESCRIPTORS = new HashMap<String, TextAttributesKey>();
    private static final String DEMO_TEXT = "Logcat:\n"

From source file com.ansorgit.plugins.bash.editor.highlighting.BashColorsAndFontsPage.java

public class BashColorsAndFontsPage implements ColorSettingsPage {
    @NotNull
    public String getDisplayName() {
        return "Bash";
    }

From source file com.bitbakery.clojet.config.CloJetColorSettingsPage.java

/**
 *
 */
public class CloJetColorSettingsPage implements ColorSettingsPage {

    private static final AttributesDescriptor[] ATTRS = new AttributesDescriptor[] {

From source file com.bitbakery.plugin.arc.config.ArcColorSettingsPage.java

public class ArcColorSettingsPage implements ColorSettingsPage {

    private static final AttributesDescriptor[] ATTRS = new AttributesDescriptor[] {
            new AttributesDescriptor(COMMENT_ID, COMMENT), new AttributesDescriptor(DOCSTRING_ID, DOCSTRING),
            new AttributesDescriptor(STRING_ID, STRING), new AttributesDescriptor(NUMBER_ID, NUMBER),
            new AttributesDescriptor(CHAR_ID, CHAR), new AttributesDescriptor(BOOLEAN_ID, BOOLEAN),

From source file com.chrisrm.idea.annotators.settings.BaseColorSettings.java

abstract class BaseColorSettings implements ColorSettingsPage, DisplayPrioritySortable {
    static SyntaxHighlighter getSyntaxHighlighterWithFallback(@NotNull final Language lang) {
        final SyntaxHighlighter syntaxHighlighter = SyntaxHighlighterFactory.getSyntaxHighlighter(lang, null, null);
        if (syntaxHighlighter == null) {
            return SyntaxHighlighterFactory.getSyntaxHighlighter(Language.ANY, null, null);
        }

From source file com.chrisrm.idea.config.MTFileColorsPage.java

public final class MTFileColorsPage implements ColorSettingsPage, DisplayPrioritySortable {
    private static final ColorDescriptor[] DESCRIPTORS;

    static {
        initFileColors();

From source file com.demonwav.mcdev.platform.mcp.at.AtColorSettingsPage.java

public class AtColorSettingsPage implements ColorSettingsPage {
    private static final AttributesDescriptor[] DESCRIPTORS = new AttributesDescriptor[] {
            new AttributesDescriptor("Keyword", AtSyntaxHighlighter.KEYWORD),
            new AttributesDescriptor("Class Name", AtSyntaxHighlighter.CLASS_NAME),
            new AttributesDescriptor("Class Value", AtSyntaxHighlighter.CLASS_VALUE),
            new AttributesDescriptor("Primitive Value", AtSyntaxHighlighter.PRIMITIVE),

From source file com.dropbox.djinni.ideaplugin.DjinniColorSettingsPage.java

/**
 * Created by jaetzold on 7/23/15.
 */
public class DjinniColorSettingsPage implements ColorSettingsPage {
    private static final AttributesDescriptor[] DESCRIPTORS = new AttributesDescriptor[] {
            new AttributesDescriptor("Comment", DjinniSyntaxHighlighter.COMMENT),