/* * Copyright 2000-2016 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.openapi.diff.impl.settings; import com.intellij.application.options.colors.*; import com.intellij.diff.util.TextDiffTypeFactory; import com.intellij.openapi.application.ApplicationBundle; import com.intellij.openapi.options.colors.AttributesDescriptor; import com.intellij.openapi.options.colors.ColorAndFontDescriptorsProvider; import com.intellij.openapi.options.colors.ColorDescriptor; import com.intellij.psi.codeStyle.DisplayPriority; import com.intellij.psi.codeStyle.DisplayPrioritySortable; import com.intellij.util.ArrayUtil; import com.intellij.util.containers.ContainerUtil; import org.jetbrains.annotations.NotNull; import java.util.List; public class DiffColorsPageFactory implements ColorAndFontPanelFactory, ColorAndFontDescriptorsProvider, DisplayPrioritySortable { public static final String DIFF_GROUP = ApplicationBundle.message("title.diff"); @Override @NotNull public NewColorAndFontPanel createPanel(@NotNull ColorAndFontOptions options) { final SchemesPanel schemesPanel = new SchemesPanel(options); final DiffColorDescriptionPanel descriptionPanel = new DiffColorDescriptionPanel(options); final OptionsPanelImpl optionsPanel = new OptionsPanelImpl(options, schemesPanel, DIFF_GROUP, descriptionPanel); final DiffPreviewPanel previewPanel = new DiffPreviewPanel(); schemesPanel.addListener(new ColorAndFontSettingsListener.Abstract() { @Override public void schemeChanged(final Object source) { previewPanel.setColorScheme(options.getSelectedScheme()); optionsPanel.updateOptionsList(); } }); return new NewColorAndFontPanel(schemesPanel, optionsPanel, previewPanel, DIFF_GROUP, null, null); } @NotNull @Override public AttributesDescriptor[] getAttributeDescriptors() { TextDiffTypeFactory.TextDiffTypeImpl[] diffTypes = TextDiffTypeFactory.getInstance().getAllDiffTypes(); List<AttributesDescriptor> attributes = ContainerUtil.map(diffTypes, (type) -> new AttributesDescriptor(type.getName(), type.getKey())); return ArrayUtil.toObjectArray(attributes, AttributesDescriptor.class); } @NotNull @Override public ColorDescriptor[] getColorDescriptors() { return ColorDescriptor.EMPTY_ARRAY; } @Override @NotNull public String getPanelDisplayName() { return DIFF_GROUP; } @NotNull @Override public String getDisplayName() { return DIFF_GROUP; } @Override public DisplayPriority getPriority() { return DisplayPriority.COMMON_SETTINGS; } }