/** * Copyright (C) 2002-2012 The FreeCol Team * * This file is part of FreeCol. * * FreeCol is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * FreeCol is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with FreeCol. If not, see <http://www.gnu.org/licenses/>. */ package net.sf.freecol.client.gui.panel; import org.freecolandroid.repackaged.java.awt.Color; import org.freecolandroid.repackaged.java.awt.Component; import org.freecolandroid.repackaged.javax.swing.BorderFactory; import org.freecolandroid.repackaged.javax.swing.ImageIcon; import org.freecolandroid.repackaged.javax.swing.JLabel; import org.freecolandroid.repackaged.javax.swing.JTable; import org.freecolandroid.repackaged.javax.swing.table.TableCellRenderer; import net.sf.freecol.common.resources.ResourceManager; /** * A table cell renderer that should be used to display the chosen * color in a table. It is being used in the players table * (StartGamePanel). */ public class ColorCellRenderer extends JLabel implements TableCellRenderer { /** * The constructor to use. * @param useBorder Indicated whether or not a border should be drawn. */ public ColorCellRenderer(boolean useBorder) { if (useBorder) { ImageIcon background = ResourceManager.getImageIcon("background.ColorCellRenderer"); setBorder(BorderFactory .createCompoundBorder(BorderFactory .createMatteBorder(5, 10, 5, 10, background), BorderFactory .createLineBorder(Color.BLACK))); } // This must be done because the background displays the actual color: setOpaque(true); } /** * Returns the component used to render the cell's value. * @param table The table whose cell needs to be rendered. * @param color The value of the cell being rendered. * @param hasFocus Indicates whether or not the cell in question has focus. * @param row The row index of the cell that is being rendered. * @param column The column index of the cell that is being rendered. * @return The component used to render the cell's value. */ public Component getTableCellRendererComponent(JTable table, Object color, boolean isSelected, boolean hasFocus, int row, int column) { Color myColor = (Color)color; setBackground(myColor); setToolTipText("RGB value: " + myColor.getRed() + ", " + myColor.getGreen() + ", " + myColor.getBlue()); return this; } }