blob: 77d29bacf01fdc94b5a68d1719b876208e97f2e8 [file] [log] [blame]
/*
* Copyright 2000-2010 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.roots.ui.configuration.projectRoot.daemon;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.roots.ui.configuration.ConfigurationError;
import com.intellij.openapi.ui.popup.JBPopupFactory;
import com.intellij.openapi.ui.popup.PopupStep;
import com.intellij.openapi.ui.popup.util.BaseListPopupStep;
import com.intellij.openapi.util.text.StringUtil;
import com.intellij.ui.awt.RelativePoint;
import org.jetbrains.annotations.NotNull;
import javax.swing.*;
/**
* @author nik
*/
class ProjectConfigurationProblem extends ConfigurationError {
private final ProjectStructureProblemDescription myDescription;
private final Project myProject;
public ProjectConfigurationProblem(ProjectStructureProblemDescription description, Project project) {
super(StringUtil.unescapeXml(description.getMessage(true)), computeDescription(description),
getSettings(project, description.getProblemLevel()).isIgnored(description));
myDescription = description;
myProject = project;
}
private static ProjectStructureProblemsSettings getSettings(Project project, ProjectStructureProblemDescription.ProblemLevel problemLevel) {
if (problemLevel == ProjectStructureProblemDescription.ProblemLevel.PROJECT) {
return ProjectStructureProblemsSettings.getProjectInstance(project);
}
else {
return ProjectStructureProblemsSettings.getGlobalInstance();
}
}
private static String computeDescription(ProjectStructureProblemDescription description) {
final String descriptionString = description.getDescription();
return descriptionString != null ? descriptionString : description.getMessage(true);
}
@Override
public void ignore(boolean ignored) {
super.ignore(ignored);
getSettings(myProject, myDescription.getProblemLevel()).setIgnored(myDescription, ignored);
}
@Override
public void navigate() {
myDescription.getPlace().navigate();
}
@Override
public boolean canBeFixed() {
return !myDescription.getFixes().isEmpty();
}
@Override
public void fix(final JComponent contextComponent, RelativePoint relativePoint) {
JBPopupFactory.getInstance().createListPopup(new BaseListPopupStep<ConfigurationErrorQuickFix>(null, myDescription.getFixes()) {
@NotNull
@Override
public String getTextFor(ConfigurationErrorQuickFix value) {
return value.getActionName();
}
@Override
public PopupStep onChosen(final ConfigurationErrorQuickFix selectedValue, boolean finalChoice) {
return doFinalStep(new Runnable() {
@Override
public void run() {
selectedValue.performFix();
}
});
}
}).show(relativePoint);
}
}