blob: f864a7420f5267aba11dd30e1cbcae840c8c5d84 [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.
*/
package com.intellij.ide.ui.laf.darcula;
import com.intellij.ide.ui.UISettings;
import com.intellij.openapi.actionSystem.impl.ActionToolbarImpl;
import com.intellij.openapi.editor.colors.EditorColorsManager;
import com.intellij.openapi.editor.colors.EditorColorsScheme;
import com.intellij.openapi.util.IconLoader;
import com.intellij.ui.JBColor;
/**
* @author Konstantin Bulenkov
*/
public class DarculaInstaller {
public static void uninstall() {
JBColor.setDark(false);
IconLoader.setUseDarkIcons(false);
if (DarculaLaf.NAME.equals(EditorColorsManager.getInstance().getGlobalScheme().getName())) {
final EditorColorsScheme scheme = EditorColorsManager.getInstance().getScheme(EditorColorsScheme.DEFAULT_SCHEME_NAME);
if (scheme != null) {
EditorColorsManager.getInstance().setGlobalScheme(scheme);
}
}
update();
}
public static void install() {
JBColor.setDark(true);
IconLoader.setUseDarkIcons(true);
if (!DarculaLaf.NAME.equals(EditorColorsManager.getInstance().getGlobalScheme().getName())) {
final EditorColorsScheme scheme = EditorColorsManager.getInstance().getScheme(DarculaLaf.NAME);
if (scheme != null) {
EditorColorsManager.getInstance().setGlobalScheme(scheme);
}
}
update();
}
protected static void update() {
UISettings.getInstance().fireUISettingsChanged();
ActionToolbarImpl.updateAllToolbarsImmediately();
}
}