Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.app / org.gvsig.app.mainplugin / src / main / java / org / gvsig / app / extension / ViewSelectionControls.java @ 40558

History | View | Annotate | Download (5.72 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
/* CVS MESSAGES:
25
 *
26
 * $Id: ViewSelectionControls.java 38702 2012-08-09 18:40:20Z jjdelcerro $
27
 * $Log$
28
 * Revision 1.16  2007-03-06 16:34:02  caballero
29
 * Exceptions
30
 *
31
 * Revision 1.15  2007/01/04 07:24:32  caballero
32
 * isModified
33
 *
34
 * Revision 1.14  2006/12/27 11:08:56  fdiaz
35
 * Arreglado el metodo hasVectorLayers para que no se pare en los grupos de capas cuando estos no tienen capas vectoriales.
36
 *
37
 * Revision 1.13  2006/09/25 16:54:12  caballero
38
 * invert selection
39
 *
40
 * Revision 1.12  2006/09/20 13:17:40  jaume
41
 * *** empty log message ***
42
 *
43
 * Revision 1.11  2006/09/20 10:56:56  sbayarri
44
 * Refactorizaci�n clases View y ProjectView
45
 *
46
 * Revision 1.10  2006/09/15 10:40:03  caballero
47
 * extensibilidad de documentos
48
 *
49
 * Revision 1.9  2006/09/11 16:14:15  fjp
50
 * Invertir seleccion. Falta subirlo al branch de la 1.0
51
 *
52
 * Revision 1.8  2006/09/11 06:53:13  fjp
53
 * Antes del parto
54
 *
55
 * Revision 1.7  2006/09/04 16:26:54  fjp
56
 * Seleccionar por pol�gono
57
 *
58
 * Revision 1.6  2006/08/29 07:56:27  cesar
59
 * Rename the *View* family of classes to *Window* (ie: SingletonView to SingletonWindow, ViewInfo to WindowInfo, etc)
60
 *
61
 * Revision 1.5  2006/08/29 07:21:08  cesar
62
 * Rename com.iver.cit.gvsig.fmap.Fmap class to com.iver.cit.gvsig.fmap.MapContext
63
 *
64
 * Revision 1.4  2006/08/29 07:13:53  cesar
65
 * Rename class com.iver.andami.ui.mdiManager.View to com.iver.andami.ui.mdiManager.IWindow
66
 *
67
 * Revision 1.3  2006/08/18 08:40:04  jmvivo
68
 * Actualizado para que el isEnabled tenga en cuenta que las capas esten 'avialable'
69
 *
70
 * Revision 1.2  2006/07/27 06:20:28  jaume
71
 * *** empty log message ***
72
 *
73
 * Revision 1.1  2006/07/26 09:53:05  jaume
74
 * separadas las herramientas de selecci�n del viewControls al ViewSelectionControls
75
 *
76
 *
77
 */
78
package org.gvsig.app.extension;
79

    
80
import org.gvsig.andami.IconThemeHelper;
81
import org.gvsig.andami.PluginServices;
82
import org.gvsig.andami.plugins.Extension;
83
import org.gvsig.andami.ui.mdiManager.IWindow;
84
import org.gvsig.app.project.documents.AbstractDocument;
85
import org.gvsig.app.project.documents.view.ViewDocument;
86
import org.gvsig.app.project.documents.view.gui.DefaultViewPanel;
87
import org.gvsig.fmap.mapcontext.MapContext;
88
import org.gvsig.fmap.mapcontext.layers.FLayer;
89
import org.gvsig.fmap.mapcontext.layers.FLayers;
90
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
91
import org.gvsig.fmap.mapcontrol.MapControl;
92
import org.slf4j.Logger;
93
import org.slf4j.LoggerFactory;
94

    
95

    
96
/**
97
 * Extension that handles the selection tools, selection tools have sense on
98
 * vectorial layers only.
99
 *
100
 */
101
public class ViewSelectionControls extends Extension {
102
    private static final Logger logger = LoggerFactory
103
            .getLogger(ViewSelectionControls.class);
104
        private DefaultViewPanel vista;
105
        public void initialize() {
106
                // TODO Auto-generated method stub
107
                registerIcons();
108
        }
109

    
110
        private void registerIcons(){
111
                IconThemeHelper.registerIcon("action", "selection-simple-select", this);
112
                IconThemeHelper.registerIcon("action", "selection-select-by-rectangle", this);
113
                IconThemeHelper.registerIcon("action", "selection-select-by-polygon", this);
114
                IconThemeHelper.registerIcon("action", "selection-clear", this);
115
        }
116

    
117
        public void execute(String actionCommand) {
118
                MapControl mapCtrl = vista.getMapControl();
119
                logger.debug("Comand : " + actionCommand);
120
                if (actionCommand.equalsIgnoreCase("selection-select-by-rectangle-view")) {
121
                        mapCtrl.setTool("rectSelection");
122
                        ((AbstractDocument)vista.getModel()).setModified(true);
123
                        
124
                } else if (actionCommand.equalsIgnoreCase("selection-simple-select-view")) {
125
                        mapCtrl.setTool("pointSelection");
126
                        ((AbstractDocument)vista.getModel()).setModified(true);
127
                        
128
                } else if (actionCommand.equalsIgnoreCase("selection-select-by-polygon")) {
129
                        mapCtrl.setTool("polSelection");
130
                        ((AbstractDocument)vista.getModel()).setModified(true);
131
                        
132
                }
133
        }
134
        
135
        public boolean isEnabled() {
136
                ViewDocument model = vista.getModel();
137
                MapContext mapa = model.getMapContext();
138

    
139
                for (int i = 0; i < mapa.getLayers().getActives().length; i++) {
140
                        FLayer lyr = mapa.getLayers().getActives()[i];
141
                        if (lyr.isAvailable() && lyr instanceof FLyrVect) { // && !lyr.isEditing()) {
142
                                return true;
143
                        }
144
                }
145
                return false;
146
        }
147

    
148
        public boolean isVisible() {
149
                IWindow f = PluginServices.getMDIManager().getActiveWindow();
150

    
151
                if (f != null && f instanceof DefaultViewPanel) {
152
                        vista = (DefaultViewPanel) f;
153
                        ViewDocument model = vista.getModel();
154
                        MapContext mapa = model.getMapContext();
155

    
156
                        return hasVectorLayers(mapa.getLayers());
157

    
158
                }
159
                return false;
160
        }
161

    
162
        private boolean hasVectorLayers(FLayers layers) {
163
                for (int i = 0; i < layers.getLayersCount(); i++) {
164
                        FLayer lyr =layers.getLayer(i);
165
                        if (lyr instanceof FLayers){
166
                                if (hasVectorLayers((FLayers) lyr)){
167
                                        return true;
168
                                }
169
                        } else if (lyr instanceof FLyrVect) {
170
                                return true;
171
                        }
172
                }
173
                return false;
174
        }
175
}