blob: ef1c9cd278eac9bc7511cab0554bc649f62336f4 [file] [log] [blame]
/*
* Copyright 2000-2013 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.tasks.trello;
import com.intellij.tasks.trello.model.TrelloLabel;
import com.intellij.util.ui.UIUtil;
import icons.TasksIcons;
import javax.swing.*;
import java.awt.*;
import java.awt.geom.AffineTransform;
import java.awt.geom.Area;
import java.awt.geom.Rectangle2D;
import java.awt.geom.RoundRectangle2D;
import java.awt.image.BufferedImage;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
public class TrelloIconBuilder {
private final Map<Set<TrelloLabel.LabelColor>, Image> CACHE = new HashMap<Set<TrelloLabel.LabelColor>, Image>();
public static final double SQRT_2 = Math.sqrt(2.0);
private final int size;
public TrelloIconBuilder(int size) {
this.size = size;
}
public Icon buildIcon(Set<TrelloLabel.LabelColor> colorSet) {
if (colorSet.isEmpty()) {
return TasksIcons.Trello;
}
Image image = CACHE.get(colorSet);
if (image == null) {
BufferedImage bufferedImage = UIUtil.createImage(size, size, BufferedImage.TYPE_INT_ARGB);
int adjustedSize = size - 1;
int nStripes = colorSet.size();
Graphics2D g2d = bufferedImage.createGraphics();
double diag = adjustedSize * SQRT_2;
double stripeWidth = diag / nStripes;
RoundRectangle2D baseRectangle = new RoundRectangle2D.Double(0, 0, adjustedSize, adjustedSize, 2, 2);
ArrayList<TrelloLabel.LabelColor> colorsList = new ArrayList<TrelloLabel.LabelColor>(colorSet);
for (int i = 0; i < nStripes; i++) {
Color color = colorsList.get(i).getColor();
Area stripe = new Area(new Rectangle2D.Double(-diag / 2, (i * stripeWidth), diag, stripeWidth));
stripe.transform(AffineTransform.getRotateInstance(-Math.PI / 4, 0, 0));
stripe.intersect(new Area(baseRectangle));
g2d.setPaint(color);
g2d.fill(stripe);
}
g2d.setPaint(Color.BLACK);
g2d.draw(baseRectangle);
image = bufferedImage;
CACHE.put(colorSet, image);
}
return new ImageIcon(image);
}
}