Imported GNU Classpath 0.90
[official-gcc.git] / libjava / classpath / javax / swing / table / DefaultTableCellRenderer.java
bloba9bbe9a7848ea27a2cd92dc6553d4c63e251ac24
1 /* DefaultTableCellRenderer.java --
2 Copyright (C) 2002, 2004, 2005, 2006, Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package javax.swing.table;
41 import java.awt.Color;
42 import java.awt.Component;
43 import java.awt.Rectangle;
44 import java.io.Serializable;
46 import javax.swing.BorderFactory;
47 import javax.swing.JLabel;
48 import javax.swing.JTable;
49 import javax.swing.UIManager;
50 import javax.swing.border.Border;
51 import javax.swing.border.EmptyBorder;
53 /**
54 * Class to display every cells.
56 public class DefaultTableCellRenderer extends JLabel
57 implements TableCellRenderer, Serializable
59 static final long serialVersionUID = 7878911414715528324L;
61 protected static Border noFocusBorder = new EmptyBorder(1, 1, 1, 1);
63 public static class UIResource extends DefaultTableCellRenderer
64 implements javax.swing.plaf.UIResource
66 public UIResource()
68 super();
72 /**
73 * Stores the color set by setForeground().
75 Color foreground;
77 /**
78 * Stores the color set by setBackground().
80 Color background;
82 /**
83 * Creates a default table cell renderer with an empty border.
85 public DefaultTableCellRenderer()
87 super();
90 /**
91 * Assign the unselected-foreground.
93 * @param c the color to assign
95 public void setForeground(Color c)
97 super.setForeground(c);
98 foreground = c;
102 * Assign the unselected-background.
104 * @param c the color to assign
106 public void setBackground(Color c)
108 super.setBackground(c);
109 background = c;
113 * Look and feel has changed.
115 * <p>Replaces the current UI object with the latest version from
116 * the UIManager.</p>
118 public void updateUI()
120 super.updateUI();
121 background = null;
122 foreground = null;
126 * Get the string value of the object and pass it to setText().
128 * @param table the JTable
129 * @param value the value of the object. For the text content,
130 * null is rendered as an empty cell.
131 * @param isSelected is the cell selected?
132 * @param hasFocus has the cell the focus?
133 * @param row the row to render
134 * @param column the cell to render
136 * @return this component (the default table cell renderer)
138 public Component getTableCellRendererComponent(JTable table, Object value,
139 boolean isSelected,
140 boolean hasFocus,
141 int row, int column)
143 setValue(value);
144 setOpaque(true);
146 if (table == null)
147 return this;
149 if (isSelected)
151 super.setBackground(table.getSelectionBackground());
152 super.setForeground(table.getSelectionForeground());
154 else
156 if (background != null)
157 super.setBackground(background);
158 else
159 super.setBackground(table.getBackground());
160 if (foreground != null)
161 super.setForeground(foreground);
162 else
163 super.setForeground(table.getForeground());
166 Border b = null;
167 if (hasFocus)
169 if (isSelected)
170 b = UIManager.getBorder("Table.focusSelectedCellHighlightBorder");
171 if (b == null)
172 b = UIManager.getBorder("Table.focusCellHighlightBorder");
174 else
175 b = noFocusBorder;
176 setBorder(b);
178 setFont(table.getFont());
180 // If the current background is equal to the table's background, then we
181 // can avoid filling the background by setting the renderer opaque.
182 Color back = getBackground();
183 setOpaque(back != null && back.equals(table.getBackground()));
185 return this;
189 * Overriden for performance.
191 * <p>This method needs to be overridden in a subclass to actually
192 * do something.</p>
194 * @return always true
196 public boolean isOpaque()
198 return true;
202 * Overriden for performance.
204 * <p>This method needs to be overridden in a subclass to actually
205 * do something.</p>
207 public void validate()
209 // Does nothing.
212 public void revalidate()
214 // Does nothing.
218 * Overriden for performance.
220 * <p>This method needs to be overridden in a subclass to actually
221 * do something.</p>
223 public void repaint(long tm, int x, int y, int width, int height)
225 // Does nothing.
229 * Overriden for performance.
231 * <p>This method needs to be overridden in a subclass to actually
232 * do something.</p>
234 public void repaint(Rectangle r)
236 // Does nothing.
240 * Overriden for performance.
242 * <p>This method needs to be overridden in a subclass to actually
243 * do something.</p>
245 protected void firePropertyChange(String propertyName, Object oldValue,
246 Object newValue)
248 // Does nothing.
252 * Overriden for performance.
254 * <p>This method needs to be overridden in a subclass to actually
255 * do something.</p>
257 public void firePropertyChange(String propertyName, boolean oldValue,
258 boolean newValue)
260 // Does nothing.
264 * Sets the String for this cell.
266 * @param value the string value for this cell; if value is null it
267 * sets the text value to an empty string
269 protected void setValue(Object value)
271 if (value != null)
272 setText(value.toString());
273 else
274 // null is rendered as an empty cell.
275 setText("");