Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.editing.app / org.gvsig.editing.app.mainplugin / src / main / java / org / gvsig / editing / project / documents / view / legend / edition / gui / CellIconOptionRenderer.java @ 40596

History | View | Annotate | Download (2.43 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24

    
25
package org.gvsig.editing.project.documents.view.legend.edition.gui;
26

    
27
import java.awt.Component;
28

    
29
import javax.swing.ImageIcon;
30
import javax.swing.JPanel;
31
import javax.swing.JTable;
32
import javax.swing.border.Border;
33
import javax.swing.table.TableCellRenderer;
34

    
35
import org.gvsig.app.project.documents.view.legend.edition.gui.PreviewIcon;
36

    
37

    
38
/**
39
 * Renderer para iconos.
40
 *
41
 * @author Vicente Caballero Navarro
42
 */
43
public class CellIconOptionRenderer extends JPanel implements TableCellRenderer {
44
    Border unselectedBorder = null;
45
    Border selectedBorder = null;
46
    boolean isBordered = true;
47
    private PreviewIcon preview = new PreviewIcon();
48

    
49
    /**
50
     * Crea un nuevo FCellRenderer.
51
     *
52
     * @param isBordered DOCUMENT ME!
53
     */
54
    public CellIconOptionRenderer(boolean isBordered) {
55
        this.isBordered = isBordered;
56
        setOpaque(true); //MUST do this for background to show up.
57
    }
58

    
59
    /**
60
     * DOCUMENT ME!
61
     *
62
     * @param table DOCUMENT ME!
63
     * @param value DOCUMENT ME!
64
     * @param isSelected DOCUMENT ME!
65
     * @param hasFocus DOCUMENT ME!
66
     * @param row DOCUMENT ME!
67
     * @param column DOCUMENT ME!
68
     *
69
     * @return DOCUMENT ME!
70
     */
71
    public Component getTableCellRendererComponent(JTable table, Object value,
72
        boolean isSelected, boolean hasFocus, int row, int column) {
73
        preview.setIcon((ImageIcon) value);
74
        if (table.getSelectedRow()==row)
75
                        preview.setSelected(true);
76
                else
77
                        preview.setSelected(false);
78
        return preview;
79
    }
80
}