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 / ViewInvertSelection.java @ 40558

History | View | Annotate | Download (6.12 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 26282 2009-01-29 09:58:42Z vcaballero $
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.messages.NotificationManager;
83
import org.gvsig.andami.plugins.Extension;
84
import org.gvsig.andami.ui.mdiManager.IWindow;
85
import org.gvsig.app.project.documents.AbstractDocument;
86
import org.gvsig.app.project.documents.view.ViewDocument;
87
import org.gvsig.app.project.documents.view.gui.DefaultViewPanel;
88
import org.gvsig.fmap.dal.DataStore;
89
import org.gvsig.fmap.dal.exception.DataException;
90
import org.gvsig.fmap.dal.feature.FeatureStore;
91
import org.gvsig.fmap.mapcontext.MapContext;
92
import org.gvsig.fmap.mapcontext.layers.FLayer;
93
import org.gvsig.fmap.mapcontext.layers.FLayers;
94
import org.gvsig.fmap.mapcontext.layers.operations.SingleLayer;
95
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
96
import org.slf4j.Logger;
97
import org.slf4j.LoggerFactory;
98

    
99

    
100
/**
101
 * Extension that handles the selection tools, selection tools have sense on
102
 * vectorial layers only.
103
 *
104
 * @author Vicente Caballero Navarro
105
 *
106
 */
107
public class ViewInvertSelection extends Extension {
108
    private static final Logger logger = LoggerFactory
109
            .getLogger(ViewInvertSelection.class);
110
        private DefaultViewPanel vista;
111
        
112
        public void initialize() {
113
                IconThemeHelper.registerIcon("action", "selection-reverse", this);
114
        }
115

    
116
        public void postInitialize() {
117
        }
118
        
119
        public void execute(String actionCommand) {
120
                ViewDocument model = vista.getModel();
121
                MapContext mapa = model.getMapContext();
122
                logger.debug("Comand : " + actionCommand);
123
                if (actionCommand.equalsIgnoreCase("selection-reverse-view")) {
124
                        FLayer[] actives = mapa.getLayers().getActives();
125
                        for (int i = 0; i < actives.length; i++) {
126
                                FLayer lyr = actives[i];
127
                                if (lyr.isAvailable() && lyr instanceof SingleLayer) {
128
                                        SingleLayer lyrSingle = (SingleLayer) lyr;
129
                                        DataStore ds = lyrSingle.getDataStore();
130
                                        if (ds instanceof FeatureStore) {
131
                                                try {
132
                                                        ((FeatureStore) ds).getFeatureSelection().reverse();
133
                                                        ((AbstractDocument) vista.getModel())
134
                                                                        .setModified(true);
135
                                                } catch (DataException e) {
136
                                                        e.printStackTrace();
137
                                                        NotificationManager.addError(e);
138
                                                }
139
                                        } else {
140
                                                // TODO Not supported yet
141
                                        }
142

    
143

    
144
                                }
145
                        }
146
                        ((AbstractDocument)vista.getModel()).setModified(true);
147
                }
148
        }
149

    
150
        public boolean isEnabled() {
151
                ViewDocument model = vista.getModel();
152
                MapContext mapa = model.getMapContext();
153

    
154
                for (int i = 0; i < mapa.getLayers().getActives().length; i++) {
155
                        FLayer lyr = mapa.getLayers().getActives()[i];
156
                        if (lyr.isAvailable() && lyr instanceof FLyrVect){// && !lyr.isEditing()) {
157
                                return true;
158
                        }
159
                }
160
                return false;
161
        }
162

    
163
        public boolean isVisible() {
164
                IWindow f = PluginServices.getMDIManager().getActiveWindow();
165

    
166
                if (f != null && f instanceof DefaultViewPanel) {
167
                        vista = (DefaultViewPanel) f;
168
                        ViewDocument model = vista.getModel();
169
                        MapContext mapa = model.getMapContext();
170

    
171
                        return hasVectorLayers(mapa.getLayers());
172

    
173
                }
174
                return false;
175
        }
176

    
177
        private boolean hasVectorLayers(FLayers layers) {
178
                for (int i = 0; i < layers.getLayersCount(); i++) {
179
                        FLayer lyr =layers.getLayer(i);
180
                        if (lyr instanceof FLayers){
181
                                if (hasVectorLayers((FLayers) lyr)){
182
                                        return true;
183
                                }
184
                        } else if (lyr instanceof FLyrVect) {
185
                                return true;
186
                        }
187
                }
188
                return false;
189
        }
190
}