Statistics
| Revision:

root / trunk / libraries / libUIComponent / src / org / gvsig / gui / javax / swing / jLabelCellRenderer / JLabelCellRendererWithTextAsToolTipText.java @ 13136

History | View | Annotate | Download (2.97 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41
package org.gvsig.gui.javax.swing.jLabelCellRenderer;
42

    
43
import java.awt.Color;
44
import java.awt.Component;
45
import java.io.Serializable;
46

    
47
import javax.swing.JLabel;
48
import javax.swing.JList;
49
import javax.swing.ListCellRenderer;
50
/**
51
 * This class allows render a JLabel in a Cell of other graphic component (as a JList) and
52
 * if mouse is on this cell, a tool tip text with the text value will be shown
53
 * 
54
 * @author Pablo Piqueras Bartolom? (p_queras@hotmail.com)
55
 */
56
public class JLabelCellRendererWithTextAsToolTipText extends JLabelCellRenderer implements ListCellRenderer, Serializable {
57
        private static final long serialVersionUID = 4799667459274027212L;
58

    
59
        /* (non-Javadoc)
60
         * @see javax.swing.ListCellRenderer#getListCellRendererComponent(javax.swing.JList, java.lang.Object, int, boolean, boolean)
61
         */
62
        public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
63
        /* The DefaultListCellRenderer class will take care of
64
         * the JLabels text property, it's foreground and background
65
         * colors, and so on.
66
         */
67
        super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
68
                
69
                // Set the text property, background and foreground color
70
        if (value instanceof JLabel) {
71
                setText(((JLabel)value).getText());
72
                    setBackground(((JLabel)value).getBackground());
73
                    
74
                    if (isSelected)
75
                            setForeground(Color.red);
76
                    else
77
                            setForeground(((JLabel)value).getForeground());
78
        }
79
        
80
                return this;
81
        }
82
        
83
        /*
84
         *  (non-Javadoc)
85
         * @see javax.swing.JLabel#setText(java.lang.String)
86
         */
87
        public void setText(String text) {
88
                super.setText(text);
89
                
90
                // Set as tool tip text for this cell, it's text value
91
                if (text != null)
92
                        super.setToolTipText(text);
93
        }
94
}