/* * Copyright 2000-2009 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. */ /* * User: anna * Date: 04-Dec-2008 */ package com.maddyhome.idea.copyright.ui; import com.intellij.openapi.fileTypes.FileType; import com.intellij.openapi.fileTypes.FileTypeManager; import com.intellij.openapi.options.Configurable; import com.intellij.openapi.options.ConfigurationException; import com.intellij.openapi.options.SearchableConfigurable; import com.intellij.openapi.project.Project; import com.intellij.util.containers.ContainerUtil; import com.maddyhome.idea.copyright.CopyrightUpdaters; import com.maddyhome.idea.copyright.psi.UpdateCopyrightsProvider; import org.jetbrains.annotations.Nls; import org.jetbrains.annotations.NotNull; import consulo.copyright.config.CopyrightFileConfigManager; import javax.swing.*; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; public class CopyrightFormattingConfigurable extends SearchableConfigurable.Parent.Abstract implements Configurable.NoScroll { private final Project myProject; private TemplateCommentPanel myPanel; CopyrightFormattingConfigurable(Project project) { myProject = project; } @Override @NotNull public String getId() { return "template.copyright.formatting"; } @Override @Nls public String getDisplayName() { return "Formatting"; } @Override public String getHelpTopic() { return getId(); } @Override public JComponent createComponent() { getOrCreateMainPanel(); return myPanel.createComponent(); } private TemplateCommentPanel getOrCreateMainPanel() { if (myPanel == null) { myPanel = new TemplateCommentPanel(CopyrightFileConfigManager.LANG_TEMPLATE, null, myProject); } return myPanel; } @Override public boolean isModified() { return myPanel.isModified(); } @Override public void apply() throws ConfigurationException { myPanel.apply(); } @Override public void reset() { myPanel.reset(); } @Override public void disposeUIResources() { myPanel.disposeUIResources(); myPanel = null; } @Override public boolean hasOwnContent() { return true; } @Override protected Configurable[] buildConfigurables() { getOrCreateMainPanel(); FileType[] registeredFileTypes = FileTypeManager.getInstance().getRegisteredFileTypes(); List<Configurable> list = new ArrayList<Configurable>(); for (FileType fileType : registeredFileTypes) { UpdateCopyrightsProvider updateCopyrightsProvider = CopyrightUpdaters.INSTANCE.forFileType(fileType); if(updateCopyrightsProvider == null) { continue; } list.add(updateCopyrightsProvider.createConfigurable(myProject, myPanel, fileType)); } Collections.sort(list, new Comparator<Configurable>() { @Override public int compare(Configurable o1, Configurable o2) { return o1.getDisplayName().compareToIgnoreCase(o2.getDisplayName()); } }); return ContainerUtil.toArray(list, Configurable.ARRAY_FACTORY); } }