update copyright
[fedora-idea.git] / plugins / ui-designer / src / com / intellij / uiDesigner / propertyInspector / renderers / IconRenderer.java
blobc963f5cdf0425c24fc2a0dc8900d8207253b8e86
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package com.intellij.uiDesigner.propertyInspector.renderers;
19 import com.intellij.uiDesigner.lw.IconDescriptor;
20 import com.intellij.uiDesigner.propertyInspector.properties.IntroIconProperty;
21 import com.intellij.uiDesigner.radComponents.RadRootContainer;
22 import org.jetbrains.annotations.NotNull;
24 import javax.swing.*;
25 import java.awt.*;
27 /**
28 * @author yole
30 public class IconRenderer extends LabelPropertyRenderer<IconDescriptor> {
31 @Override
32 public JLabel getComponent(final RadRootContainer rootContainer, final IconDescriptor iconDescriptor,
33 final boolean selected, final boolean hasFocus) {
34 if (iconDescriptor != null) {
35 IntroIconProperty.ensureIconLoaded(rootContainer.getModule(), iconDescriptor);
37 final JLabel component = super.getComponent(rootContainer, iconDescriptor, selected, hasFocus);
38 if (!selected && iconDescriptor != null && iconDescriptor.getIcon() == null) {
39 setForeground(Color.RED);
41 return component;
44 protected void customize(@NotNull IconDescriptor value) {
45 setIcon(value.getIcon());
46 setText(value.getIconPath());