blob: af59bc05b3cdbad37ab63e512196e627758953a9 [file] [log] [blame]
/*
* 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.
*/
package com.intellij.packaging.impl.ui;
import com.intellij.ide.projectView.PresentationData;
import com.intellij.openapi.compiler.CompilerBundle;
import com.intellij.openapi.module.ModifiableModuleModel;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.module.ModulePointer;
import com.intellij.openapi.module.ModuleType;
import com.intellij.packaging.ui.ArtifactEditorContext;
import com.intellij.packaging.ui.PackagingElementWeights;
import com.intellij.packaging.ui.TreeNodePresentation;
import com.intellij.ui.SimpleTextAttributes;
import com.intellij.util.PlatformIcons;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* @author nik
*/
public class ModuleElementPresentation extends TreeNodePresentation {
private final ModulePointer myModulePointer;
private final ArtifactEditorContext myContext;
private final boolean myTestOutput;
public ModuleElementPresentation(@Nullable ModulePointer modulePointer, @NotNull ArtifactEditorContext context, final boolean testOutput) {
myModulePointer = modulePointer;
myContext = context;
myTestOutput = testOutput;
}
public String getPresentableName() {
return myModulePointer != null ? myModulePointer.getModuleName() : "<unknown>";
}
@Override
public boolean canNavigateToSource() {
return findModule() != null;
}
@Nullable
private Module findModule() {
return myModulePointer != null ? myModulePointer.getModule() : null;
}
@Override
public void navigateToSource() {
final Module module = findModule();
if (module != null) {
myContext.selectModule(module);
}
}
public void render(@NotNull PresentationData presentationData, SimpleTextAttributes mainAttributes, SimpleTextAttributes commentAttributes) {
final Module module = findModule();
if (myTestOutput) {
presentationData.setIcon(PlatformIcons.TEST_SOURCE_FOLDER);
}
else if (module != null) {
presentationData.setIcon(ModuleType.get(module).getIcon());
}
String moduleName;
if (module != null) {
moduleName = module.getName();
final ModifiableModuleModel moduleModel = myContext.getModifiableModuleModel();
if (moduleModel != null) {
final String newName = moduleModel.getNewName(module);
if (newName != null) {
moduleName = newName;
}
}
}
else if (myModulePointer != null) {
moduleName = myModulePointer.getModuleName();
}
else {
moduleName = "<unknown>";
}
String text = myTestOutput ? CompilerBundle.message("node.text.0.test.compile.output", moduleName)
: CompilerBundle.message("node.text.0.compile.output", moduleName);
presentationData.addText(text, module != null ? mainAttributes : SimpleTextAttributes.ERROR_ATTRIBUTES);
}
@Override
public int getWeight() {
return PackagingElementWeights.MODULE;
}
}