Statistics
| Revision:

root / trunk / extensions / extWMS / src / com / iver / cit / gvsig / gui / panels / LayerList.java @ 4508

History | View | Annotate | Download (2.76 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2005 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 com.iver.cit.gvsig.gui.panels;
42

    
43
import java.awt.Component;
44
import java.awt.Dimension;
45

    
46
import javax.swing.DefaultListCellRenderer;
47
import javax.swing.JList;
48

    
49
import com.iver.cit.gvsig.fmap.layers.WMSLayerNode;
50
import com.iver.cit.gvsig.gui.beans.controls.dnd.JDnDList;
51

    
52
/**
53
 * Class implementing a JList component adapted to the WMSLayerNode
54
 * needs (use it as a JList with drag'n'drop capabilities).
55
 * 
56
 * @author jaume dominguez faus - jaume.dominguez@iver.es
57
 *
58
 */
59
public class LayerList extends JDnDList {
60
        public boolean showLayerNames = false;
61
        private int count = 0; 
62
        public LayerList() {
63
                super();
64
                setCellRenderer(new MyRenderer());
65
        }
66
        
67
        private class MyRenderer extends DefaultListCellRenderer {
68
                public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
69
                        super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
70
                        if (value instanceof WMSLayerNode){
71
                WMSLayerNode layer = (WMSLayerNode) value;
72
                
73
                if (!showLayerNames) {
74
                        if (layer.getName() != null || layer.getName() == "") {
75
                                String text = layer.toString();
76
                                text = text.substring(text.indexOf(']')+2, text.length());
77
                                setText(text);
78
                        }
79
                }
80
                
81
                Dimension sz  = getPreferredSize();
82
                sz.setSize((sz.getWidth()+50) - (50*count), sz.getHeight());
83
                setPreferredSize(sz);
84
                count++;
85
            }  
86
                        return this;
87
                }
88
        }
89
}