/* * This file is part of DRBD Management Console by LINBIT HA-Solutions GmbH * by Rasto Levrinc. * * Copyright (C) 2009, Rastislav Levrinc * Copyright (C) 2009, LINBIT HA-Solutions GmbH. * * DRBD Management Console 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, or (at your option) * any later version. * * DRBD Management Console 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 drbd; see the file COPYING. If not, write to * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ package lcmc.common.ui.utils; import java.awt.Color; import java.awt.Component; import java.awt.Insets; import javax.swing.AbstractButton; import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JTable; import javax.swing.SwingConstants; import javax.swing.border.Border; import javax.swing.border.EmptyBorder; import javax.swing.table.TableCellRenderer; /** * Cells with jlabels, widths and colors. */ public class MyCellRenderer extends JLabel implements TableCellRenderer { /** Border for jlabel so, that there is spacing in the table. Table spacing * cannot be used because of row colors. */ private static final Border EMPTY_BORDER = new EmptyBorder(new Insets(0, 4, 0, 4)); /** Creates a new MyCellRenderer object. */ public MyCellRenderer() { super(); setOpaque(true); } /** * Sets background color and padding in jlabels for every cell. */ @Override public final Component getTableCellRendererComponent(final JTable table, final Object value, final boolean isSelected, final boolean hasFocus, final int row, final int column) { final JComponent ret; final int al = getColumnAlignment(column); if (value instanceof JLabel) { ret = (JComponent) value; } else { if (value != null) { setText(value.toString()); } ret = this; } ((JLabel) ret).setHorizontalAlignment(al); final Object v = table.getValueAt(row, 0); if (v instanceof MyButton) { final String key = ((AbstractButton) v).getText(); final Color bg = getRowColor(key); ret.setBackground(bg); } ret.setBorder(EMPTY_BORDER); if (value != null) { if (value.toString() != null && value.toString().isEmpty()) { ret.setToolTipText(" "); } else { ret.setToolTipText(value.toString()); } } return ret; } /** Alignment for the specified column. */ protected int getColumnAlignment(final int column) { return SwingConstants.LEFT; } protected Color getRowColor(final String key) { return null; } }