Statistics
| Revision:

root / branches / v2_0_0_prep / extensions / extEditing / src / org / gvsig / editing / project / documents / view / legend / edition / gui / BlockedCellEditor.java @ 29616

History | View | Annotate | Download (2.83 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.editing.project.documents.view.legend.edition.gui;
42

    
43
import java.awt.Component;
44
import java.awt.event.MouseEvent;
45
import java.awt.event.MouseListener;
46

    
47
import javax.swing.ImageIcon;
48
import javax.swing.JTable;
49
import javax.swing.table.TableCellEditor;
50

    
51
import org.gvsig.editing.fmap.rendering.EditionManagerLegend;
52

    
53

    
54

    
55

    
56
/**
57
 * Cell Editor de iconos. Controla los eventos de edici?n que se realicen
58
 * sobre la columna de iconos.
59
 *
60
 * @author Vicente Caballero Navarro
61
 */
62
public class BlockedCellEditor extends IconOptionCellEditor implements TableCellEditor {
63
        public BlockedCellEditor(EditionManagerLegend el,JTable tab,ImageIcon sel, ImageIcon notSel) {
64
                super(el,tab,sel,notSel);
65
                addMouseListener(new MouseListener(){
66

    
67
                        public void mouseClicked(MouseEvent e) {
68
//                                if (e.getClickCount()==2){
69
                                        int index=table.getSelectedRow();
70
                                        if (eml.isBlocked(index)) {
71
                                                setIcon(getNotSel());
72
                                                eml.setBlocked(index,false);
73

    
74
                                        }else {
75
                                                eml.setBlocked(index,true);
76
                                                setIcon(getSel());
77
                                        }
78
                                        stopCellEditing();
79
//                                }
80
                                table.repaint();
81
                        }
82

    
83
                        public void mouseEntered(MouseEvent e) {
84
                        }
85

    
86
                        public void mouseExited(MouseEvent e) {
87
                        }
88

    
89
                        public void mousePressed(MouseEvent e) {
90
                        }
91

    
92
                        public void mouseReleased(MouseEvent e) {
93
                        }
94

    
95
                });
96
        }
97

    
98
        //Implement the one method defined by TableCellEditor.
99
        public Component getTableCellEditorComponent(JTable table, Object value,
100
                boolean isSelected, int row, int column) {
101
//                if (table.getSelectedRow()==row)
102
//                setSelected(true);
103
//        else
104
                setSelected(isSelected);
105
                if (eml.isBlocked(row)) {
106
                        setIcon(getSel());
107
                }else {
108
                        setIcon(getNotSel());
109
                }
110
                return this;
111
        }
112
}