/* * UFO Saved Game Editor * Copyright (C) 2010 Chris Davoren <chris@rubikscomplex.net> * * This program 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 3 of the License, or * (at your option) any later version. * * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */ package net.rubikscomplex.ufosge.gui.table; import java.awt.Color; import java.awt.Component; import javax.swing.JTable; import javax.swing.table.DefaultTableCellRenderer; /** * * @author Chris Davoren <chris@rubikscomplex.net> */ public class GreyingCellRenderer extends DefaultTableCellRenderer { protected Color editableColor; protected Color uneditableColor; protected Color normalBackgroundColor; protected Color selectedBackgroundColor; public GreyingCellRenderer() { super(); editableColor = Color.BLACK; uneditableColor = new Color(0x48, 0x48, 0x48); normalBackgroundColor = Color.WHITE; selectedBackgroundColor = Color.BLUE; } @Override public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) { super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column); setForeground(table.isCellEditable(row, column) ? editableColor : uneditableColor); // setBackground(isSelected || hasFocus ? selectedBackgroundColor : normalBackgroundColor); return this; } }