blob: 54b6d061eee8c2c3d41bc8f9367300b3049dec1c [file] [log] [blame]
/*
* Copyright 2000-2014 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.
*/
/**
* @author Yura Cangea
*/
package com.intellij.openapi.editor.colors.impl;
import com.intellij.openapi.editor.colors.ColorKey;
import com.intellij.openapi.editor.colors.EditorFontType;
import com.intellij.openapi.editor.colors.TextAttributesKey;
import com.intellij.openapi.editor.colors.ex.DefaultColorSchemesManager;
import com.intellij.openapi.editor.markup.TextAttributes;
import com.intellij.openapi.util.InvalidDataException;
import org.jdom.Element;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.awt.*;
public class DefaultColorsScheme extends AbstractColorsScheme implements ReadOnlyColorsScheme {
private String myName;
public DefaultColorsScheme(DefaultColorSchemesManager defaultColorSchemesManager) {
super(null, defaultColorSchemesManager);
}
@Override
@Nullable
public TextAttributes getAttributes(TextAttributesKey key) {
if (key == null) return null;
TextAttributes attrs = myAttributesMap.get(key);
if (attrs == null) {
if (key.getFallbackAttributeKey() != null) {
attrs = getFallbackAttributes(key.getFallbackAttributeKey());
if (attrs != null && !attrs.isFallbackEnabled()) return attrs;
}
attrs = key.getDefaultAttributes();
}
return attrs;
}
@Override
public Color getColor(ColorKey key) {
if (key == null) return null;
Color color = myColorsMap.get(key);
return color != null ? color : key.getDefaultColor();
}
@Override
public void readExternal(Element parentNode) throws InvalidDataException {
super.readExternal(parentNode);
myName = parentNode.getAttributeValue(NAME_ATTR);
}
@NotNull
@Override
public String getName() {
return myName;
}
@Override
public void setAttributes(TextAttributesKey key, TextAttributes attributes) {
}
@Override
public void setColor(ColorKey key, Color color) {
}
@Override
public void setFont(EditorFontType key, Font font) {
}
@Override
public Object clone() {
EditorColorsSchemeImpl newScheme = new EditorColorsSchemeImpl(this, myDefaultColorSchemesManager);
copyTo(newScheme);
newScheme.setName(DEFAULT_SCHEME_NAME);
return newScheme;
}
}