01: /* SwingML
02: * Copyright (C) 1995-2003 Sun Microsystems.
03: *
04: * This library is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2 of the License, or (at your option) any later version.
08: *
09: * This library is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the
16: * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17: * Boston, MA 02111-1307, USA.
18: *
19: * Authors:
20: * Sun Microsystems <www.sun.com>
21: *
22: */
23:
24: package org.swingml.component;
25:
26: import java.awt.Color;
27: import java.awt.Component;
28:
29: import javax.swing.BorderFactory;
30: import javax.swing.JLabel;
31: import javax.swing.JTable;
32: import javax.swing.border.Border;
33: import javax.swing.table.TableCellRenderer;
34:
35: public class TableCellColorRenderer extends JLabel implements
36: TableCellRenderer {
37:
38: Border unselectedBorder = null;
39: Border selectedBorder = null;
40: boolean isBordered = true;
41:
42: public Component getTableCellRendererComponent(JTable aTable,
43: Object aColor, boolean isSelected, boolean hasFocus,
44: int aRow, int aColumn) {
45: setOpaque(true); //MUST do this for background to show up.
46: setBackground((Color) aColor);
47: if (isSelected) {
48: if (this .selectedBorder == null) {
49: this .selectedBorder = BorderFactory.createMatteBorder(
50: 2, 5, 2, 5, aTable.getSelectionBackground());
51: }
52: setBorder(selectedBorder);
53: } else {
54: if (this .unselectedBorder == null) {
55: this .unselectedBorder = BorderFactory
56: .createMatteBorder(2, 5, 2, 5, aTable
57: .getBackground());
58: }
59: setBorder(this.unselectedBorder);
60: }
61: return this;
62: }
63: }
|