Revision 4508

View differences:

trunk/extensions/extWMS/config/text.properties
74 74
settings=Ajustes
75 75
settings_editor=Editor de ajustes
76 76
show_layer_names=Mostrar nombres
77
disagregate_layers= Conservar estructura de capas
77
disagregate_layers=Conservar estructura de capas
78 78
siguiente=Siguiente
79 79
sin_realce=Sin Realce
80 80
single_value=Valor simple
trunk/extensions/extWMS/config/text_en.properties
74 74
settings=Settings
75 75
settings_editor=Settings Editor
76 76
show_layer_names=Show names
77
disagregate_layers= Maintain layer structure
77
disagregate_layers=Maintain layer structure
78 78
siguiente=Next
79 79
sin_realce=No enhance
80 80
single_value=Single value
trunk/extensions/extWMS/src/com/iver/cit/gvsig/gui/panels/LayerList.java
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
 */
1 41
package com.iver.cit.gvsig.gui.panels;
2 42

  
3 43
import java.awt.Component;
......
9 49
import com.iver.cit.gvsig.fmap.layers.WMSLayerNode;
10 50
import com.iver.cit.gvsig.gui.beans.controls.dnd.JDnDList;
11 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
 */
12 59
public class LayerList extends JDnDList {
13 60
	public boolean showLayerNames = false;
14 61
	private int count = 0; 
trunk/extensions/extWMS/src/com/iver/cit/gvsig/gui/panels/LayerTree.java
43 43
*
44 44
* $Id$
45 45
* $Log$
46
* Revision 1.4  2006-02-28 15:25:14  jaume
46
* Revision 1.5  2006-03-21 17:49:04  jaume
47 47
* *** empty log message ***
48 48
*
49
* Revision 1.4  2006/02/28 15:25:14  jaume
50
* *** empty log message ***
51
*
49 52
* Revision 1.2.2.4  2006/02/17 12:57:34  jaume
50 53
* oculta/eXconde los nombres de las capas y adem?s corrige el error de selecci?n de varios styles si hay alguna capa seleccionada repetida
51 54
*
......
190 193
    }
191 194
    
192 195
    public JToolTip createToolTip() {
193
        MultiLineToolTip tip = new MultiLineToolTip();
194
        tip.setComponent(this);
195
        return tip;
196
      }
196
    	MultiLineToolTip tip = new MultiLineToolTip();
197
    	tip.setComponent(this);
198
    	return tip;
199
    }
197 200
}

Also available in: Unified diff