Statistics
| Revision:

root / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / ViewControls.java @ 12728

History | View | Annotate | Download (8.53 KB)

1 312 fernando
/*
2
 * Created on 20-feb-2004
3
 *
4
 * To change the template for this generated file go to
5
 * Window>Preferences>Java>Code Generation>Code and Comments
6
 */
7 1103 fjp
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
8
 *
9
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
10
 *
11
 * This program is free software; you can redistribute it and/or
12
 * modify it under the terms of the GNU General Public License
13
 * as published by the Free Software Foundation; either version 2
14
 * of the License, or (at your option) any later version.
15
 *
16
 * This program is distributed in the hope that it will be useful,
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 * GNU General Public License for more details.
20
 *
21
 * You should have received a copy of the GNU General Public License
22
 * along with this program; if not, write to the Free Software
23
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
24
 *
25
 * For more information, contact:
26
 *
27
 *  Generalitat Valenciana
28
 *   Conselleria d'Infraestructures i Transport
29
 *   Av. Blasco Ib??ez, 50
30
 *   46010 VALENCIA
31
 *   SPAIN
32
 *
33
 *      +34 963862235
34
 *   gvsig@gva.es
35
 *      www.gvsig.gva.es
36
 *
37
 *    or
38
 *
39
 *   IVER T.I. S.A
40
 *   Salamanca 50
41
 *   46005 Valencia
42
 *   Spain
43
 *
44
 *   +34 963163400
45
 *   dac@iver.es
46
 */
47 312 fernando
package com.iver.cit.gvsig;
48
49 2522 caballero
import org.apache.log4j.Logger;
50
51 596 fernando
import com.iver.andami.PluginServices;
52
import com.iver.andami.plugins.Extension;
53 6658 caballero
import com.iver.andami.preferences.IPreference;
54
import com.iver.andami.preferences.IPreferenceExtension;
55 6878 cesar
import com.iver.cit.gvsig.fmap.MapContext;
56 1223 fernando
import com.iver.cit.gvsig.fmap.MapControl;
57 637 fjp
import com.iver.cit.gvsig.fmap.layers.FLayer;
58 6778 jmvivo
import com.iver.cit.gvsig.fmap.layers.FLayers;
59 6658 caballero
import com.iver.cit.gvsig.gui.preferencespage.ViewPage;
60 1221 fernando
import com.iver.cit.gvsig.project.Project;
61 9532 caballero
import com.iver.cit.gvsig.project.documents.ProjectDocument;
62 7304 caballero
import com.iver.cit.gvsig.project.documents.view.Encuadrator;
63 7392 sbayarri
import com.iver.cit.gvsig.project.documents.view.IProjectView;
64 7304 caballero
import com.iver.cit.gvsig.project.documents.view.gui.ExtentListSelectorModel;
65
import com.iver.cit.gvsig.project.documents.view.gui.FPanelExtentSelector;
66
import com.iver.cit.gvsig.project.documents.view.gui.FPanelLocConfig;
67
import com.iver.cit.gvsig.project.documents.view.gui.View;
68
import com.iver.cit.gvsig.project.documents.view.toc.gui.FPopupMenu;
69 6673 jmvivo
import com.iver.utiles.extensionPoints.ExtensionPoint;
70
import com.iver.utiles.extensionPoints.ExtensionPoints;
71
import com.iver.utiles.extensionPoints.ExtensionPointsSingleton;
72 1086 vcaballero
73
74 312 fernando
//import com.iver.utiles.FPanelExtentSelector;
75
76
/**
77 6630 caballero
 * Extensi?n que controla las operaciones b?sicas realizadas sobre la vista.
78 312 fernando
 *
79
 * @author vcn
80
 */
81 6658 caballero
public class ViewControls extends Extension implements IPreferenceExtension{
82 1086 vcaballero
        private static Logger logger = Logger.getLogger(ViewControls.class.getName());
83 8516 jaume
        private static ViewPage viewPropertiesPage = new ViewPage();
84 1086 vcaballero
        /**
85 5005 jorpiell
         * @see com.iver.mdiApp.plugins.IExtension#updateUI(java.lang.String)
86 1086 vcaballero
         */
87
        public void execute(String s) {
88 6880 cesar
                com.iver.andami.ui.mdiManager.IWindow view = PluginServices.getMDIManager().getActiveWindow();
89 6658 caballero
                if (!(view instanceof View))
90
                        return;
91
                View vista=(View)view;
92 7392 sbayarri
                IProjectView model = vista.getModel();
93 6878 cesar
                MapContext mapa = model.getMapContext();
94 1223 fernando
                MapControl mapCtrl = vista.getMapControl();
95 1086 vcaballero
                logger.debug("Comand : " + s);
96 312 fernando
97 6239 caballero
                if (s.equals("FULL") ) {
98 10626 caballero
                        // mapa.beginAtomicEvent();
99
                        mapa.getViewPort().setExtent(mapa.getLayers().getFullExtent());
100 10839 caballero
                        mapa.clearAllCachingImageDrawnLayers();
101 10626 caballero
                        vista.repaintMap();
102
                        ((ProjectDocument)vista.getModel()).setModified(true);
103
                        // mapa.endAtomicEvent();
104 6239 caballero
                } else if (s.equals("ENCUADRE") ) {
105 1086 vcaballero
                        FPanelExtentSelector l = new FPanelExtentSelector();
106 312 fernando
107 1086 vcaballero
                        ProjectExtension p = (ProjectExtension) PluginServices.getExtension(com.iver.cit.gvsig.ProjectExtension.class);
108
                        Project project = p.getProject();
109
                        ExtentListSelectorModel modelo = new ExtentListSelectorModel(project);
110 2522 caballero
                        //ProjectExtent[] extents = project.getExtents();
111 1086 vcaballero
                        project.addPropertyChangeListener(modelo);
112
                        l.setModel(modelo);
113
                        l.addSelectionListener(new Encuadrator(project, mapa, vista));
114 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
115 6880 cesar
                        PluginServices.getMDIManager().addWindow(l);
116 6239 caballero
                } else if (s.equals("CONFIG_LOCATOR") ) {
117 312 fernando
                        //Set up the map overview
118 643 fjp
                        FPanelLocConfig m_panelLoc = new FPanelLocConfig(vista.getMapOverview());
119 6880 cesar
                        PluginServices.getMDIManager().addWindow(m_panelLoc);
120 1086 vcaballero
                        m_panelLoc.setPreferredSize(m_panelLoc.getSize());
121 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
122 6239 caballero
                } else if (s.equals("PAN") ) {
123 1086 vcaballero
                        mapCtrl.setTool("pan");
124 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
125 6239 caballero
                } else if (s.equals("ZOOM_IN") ) {
126 1086 vcaballero
                        mapCtrl.setTool("zoomIn");
127 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
128 6239 caballero
                } else if (s.equals("ZOOM_OUT") ) {
129 1086 vcaballero
                        mapCtrl.setTool("zoomOut");
130 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
131 6239 caballero
                } else if (s.equals("MEDICION") ) {
132 375 fjp
                        mapCtrl.setTool("medicion");
133 6239 caballero
                } else if (s.equals("AREA") ) {
134 375 fjp
                        mapCtrl.setTool("area");
135 6239 caballero
                } else if (s.equals("CAPAS_VISIBLES") ) {
136 1219 vcaballero
                        setVisibles(true, mapa);
137 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
138 6239 caballero
                } else if (s.equals("CAPAS_NOVISIBLES") ) {
139 1219 vcaballero
                        setVisibles(false, mapa);
140 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
141 6239 caballero
                } else if (s.equals("CAPAS_ACTIVAS") ) {
142 1219 vcaballero
                        setActives(true, mapa);
143 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
144 6239 caballero
                } else if (s.equals("CAPAS_NOACTIVAS") ) {
145 1219 vcaballero
                        setActives(false, mapa);
146 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
147 6239 caballero
                } else if (s.equals("SAVERASTER") ) {
148 2183 fernando
                        mapCtrl.setTool("saveRaster");
149 6239 caballero
                } else if (s.equals("SELECTIMAGE") ) {
150 2183 fernando
                        mapCtrl.setTool("selectImage");
151 6239 caballero
                } else if (s.equals("ACTION_ZOOM_IN") ) {
152
                        mapCtrl.zoomIn();
153 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
154 6239 caballero
                } else if (s.equals("ACTION_ZOOM_OUT") ) {
155
                        mapCtrl.zoomOut();
156 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
157 6630 caballero
                } else if (s.startsWith("CHANGE_SCALE_")){
158
                        String scl=s.replaceAll("CHANGE_SCALE_","");
159
                        long scale=Long.parseLong(scl);
160
                        mapa.setScaleView(scale);
161 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
162 1086 vcaballero
                }
163
        }
164 1219 vcaballero
165
        /**
166
         * Pone todas las capas visibles o no visibles.
167
         *
168
         * @param visible true si que quieren poner a visibles.
169
         * @param mapa FMap sobre el que actuar.
170
         */
171 6878 cesar
        private void setVisibles(boolean visible, MapContext mapa) {
172 1219 vcaballero
                for (int i = 0; i < mapa.getLayers().getLayersCount(); i++) {
173
                        FLayer layer = mapa.getLayers().getLayer(i);
174 1185 vcaballero
                        layer.setVisible(visible);
175
                }
176
        }
177 1219 vcaballero
178
        /**
179
         * Pone todas las capas activas o no activas.
180
         *
181
         * @param active true si que quieren poner a activas.
182
         * @param mapa FMap sobre el que actuar.
183
         */
184 6878 cesar
        private void setActives(boolean active, MapContext mapa) {
185 1219 vcaballero
                for (int i = 0; i < mapa.getLayers().getLayersCount(); i++) {
186
                        FLayer layer = mapa.getLayers().getLayer(i);
187 1185 vcaballero
                        layer.setActive(active);
188
                }
189
        }
190 1219 vcaballero
191 1086 vcaballero
        /**
192 5005 jorpiell
         * @see com.iver.mdiApp.plugins.IExtension#isVisible()
193 1086 vcaballero
         */
194
        public boolean isVisible() {
195 6877 cesar
                com.iver.andami.ui.mdiManager.IWindow f = PluginServices.getMDIManager()
196 6880 cesar
                                                                                                                         .getActiveWindow();
197 312 fernando
198 1086 vcaballero
                if (f == null) {
199
                        return false;
200
                }
201 312 fernando
202 5900 jorpiell
                if (f instanceof View) {
203 1086 vcaballero
                        View vista = (View) f;
204 7392 sbayarri
                        IProjectView model = vista.getModel();
205 6878 cesar
                        MapContext mapa = model.getMapContext();
206 1219 vcaballero
207 1086 vcaballero
                        return mapa.getLayers().getLayersCount() > 0;
208 6630 caballero
                }
209 1086 vcaballero
                        return false;
210
        }
211 596 fernando
212
        /**
213 5005 jorpiell
         * @see com.iver.andami.plugins.IExtension#initialize()
214 596 fernando
         */
215 5005 jorpiell
        public void initialize() {
216 6673 jmvivo
                ExtensionPoints extensionPoints = ExtensionPointsSingleton.getInstance();
217 6713 caballero
218
219 6673 jmvivo
                if (!extensionPoints.containsKey("View_TocActions")) {
220
                        extensionPoints.put(
221
                                new ExtensionPoint(
222
                                        "View_TocActions",
223 6713 caballero
                                        "Context menu options of the TOC " +
224
                                                " in the view window "+
225 6673 jmvivo
                                                "(register instances of " +
226
                                                "com.iver.cit.gvsig.gui.toc.AbstractTocContextMenuAction)"
227
                                )
228
                        );
229
                }
230 6713 caballero
231
                FPopupMenu.registerExtensionPoint();
232
233 596 fernando
        }
234
235
        /**
236 5005 jorpiell
         * @see com.iver.andami.plugins.IExtension#isEnabled()
237 596 fernando
         */
238
        public boolean isEnabled() {
239 6877 cesar
                com.iver.andami.ui.mdiManager.IWindow f = PluginServices.getMDIManager()
240 6880 cesar
                .getActiveWindow();
241 8516 jaume
242 6778 jmvivo
                if (f == null) {
243
                        return false;
244
                }
245 8516 jaume
246 6778 jmvivo
                if (f instanceof View) {
247
                        View vista = (View) f;
248 7392 sbayarri
                        IProjectView model = vista.getModel();
249 6878 cesar
                        MapContext mapa = model.getMapContext();
250 8516 jaume
251 6778 jmvivo
                        FLayers layers = mapa.getLayers();
252
                        for (int i=0;i<layers.getLayersCount();i++) {
253
                                if (layers.getLayer(i).isAvailable()) return true;
254
                        }
255 8516 jaume
256 6778 jmvivo
                }
257
                return false;
258 596 fernando
        }
259 6658 caballero
260 9634 caballero
        public IPreference[] getPreferencesPages() {
261
                IPreference[] preferences=new IPreference[1];
262
                preferences[0]=viewPropertiesPage;
263
                return preferences;
264 6658 caballero
        }
265 312 fernando
}