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 / ViewSimpleSelectionControl.java @ 41066

History | View | Annotate | Download (5.56 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.app.project.documents.view.gui.IView;
88
import org.gvsig.fmap.mapcontext.MapContext;
89
import org.gvsig.fmap.mapcontext.layers.FLayer;
90
import org.gvsig.fmap.mapcontext.layers.FLayers;
91
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
92
import org.gvsig.fmap.mapcontrol.MapControl;
93
import org.slf4j.Logger;
94
import org.slf4j.LoggerFactory;
95

    
96

    
97
/**
98
 * Extension that handles the simple selection tool
99
 *
100
 */
101
public class ViewSimpleSelectionControl extends Extension {
102
    
103
    private static final Logger logger = LoggerFactory
104
            .getLogger(ViewSimpleSelectionControl.class);
105
    
106
        public void initialize() {
107
                registerIcons();
108
        }
109

    
110
        private void registerIcons(){
111
                IconThemeHelper.registerIcon("action", "selection-simple-select", this);
112
        }
113

    
114
        public void execute(String actionCommand) {
115
            
116
            IView view = this.getView();
117
            if (view == null) {
118
                logger.info("Didn't find the view.", new Exception("Didn't find the view"));
119
                return;
120
            }
121
            
122
                MapControl mapCtrl = view.getMapControl();
123
                logger.debug("Comand : " + actionCommand);
124
                if (actionCommand.equalsIgnoreCase("selection-simple-select-view")) {
125
                        mapCtrl.setTool("pointSelection");
126
                        view.getViewDocument().setModified(true);
127
                } 
128
        }
129
        
130
        public boolean isEnabled() {
131
            return isVisible();
132
        }
133

    
134
        public boolean isVisible() {
135
            
136
            IView view = getView();
137
            if (view != null) {
138
                MapContext mapa = view.getMapControl().getMapContext();
139
                if (hasVectorLayers(mapa.getLayers())) {
140
                    if (singleActiveInEditing(mapa)) {
141
                        return false;
142
                    } else {
143
                        return true;
144
                    }
145
                } else {
146
                    return false;
147
                }
148
            } else {
149
                return false;
150
            }
151
        }
152

    
153
        private boolean singleActiveInEditing(MapContext mapa) {
154
            
155
            FLayer[] lyrs = mapa.getLayers().getActives();
156
            if (lyrs != null && lyrs.length == 1) {
157
                return lyrs[0].isEditing();
158
            } else {
159
                return false;
160
            }
161
    }
162

    
163
    private boolean hasVectorLayers(FLayers layers) {
164
                for (int i = 0; i < layers.getLayersCount(); i++) {
165
                        FLayer lyr =layers.getLayer(i);
166
                        if (lyr instanceof FLayers){
167
                                if (hasVectorLayers((FLayers) lyr)){
168
                                        return true;
169
                                }
170
                        } else if (lyr instanceof FLyrVect) {
171
                                return true;
172
                        }
173
                }
174
                return false;
175
        }
176
        
177
        private IView getView() {
178
            
179
            IView resp = null;
180
            IWindow f = PluginServices.getMDIManager().getActiveWindow();
181

    
182
        if (f != null && f instanceof IView) {
183
            resp = (IView) f;
184
        }
185
        return resp;
186
        }
187
        
188
}