Statistics
| Revision:

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

History | View | Annotate | Download (7 KB)

1
/*
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
/* 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
package com.iver.cit.gvsig;
48

    
49
import com.iver.andami.PluginServices;
50
import com.iver.andami.messages.NotificationManager;
51
import com.iver.andami.plugins.Extension;
52

    
53
import com.iver.cit.gvsig.fmap.DriverException;
54
import com.iver.cit.gvsig.fmap.FMap;
55
import com.iver.cit.gvsig.fmap.MapControl;
56
import com.iver.cit.gvsig.fmap.layers.FLayer;
57
import com.iver.cit.gvsig.gui.Encuadrator;
58
import com.iver.cit.gvsig.gui.ExtentListSelectorModel;
59
import com.iver.cit.gvsig.gui.FPanelExtentSelector;
60
import com.iver.cit.gvsig.gui.FPanelLocConfig;
61
import com.iver.cit.gvsig.gui.View;
62
import com.iver.cit.gvsig.gui.project.ViewProperties;
63
import com.iver.cit.gvsig.gui.selectionByTheme.DefaultSelectionByThemeModel;
64
import com.iver.cit.gvsig.gui.selectionByTheme.MySelectionByThemeListener;
65
import com.iver.cit.gvsig.gui.selectionByTheme.SelectionByTheme;
66
import com.iver.cit.gvsig.project.Project;
67
import com.iver.cit.gvsig.project.ProjectExtent;
68
import com.iver.cit.gvsig.project.ProjectView;
69

    
70
import org.apache.log4j.Logger;
71

    
72

    
73
//import com.iver.utiles.FPanelExtentSelector;
74

    
75
/**
76
 * Extensi?n que controla las operaciones basicas realizadas sobre la vista.
77
 *
78
 * @author vcn
79
 */
80
public class ViewControls implements Extension {
81
        private static Logger logger = Logger.getLogger(ViewControls.class.getName());
82

    
83
        /**
84
         * @see com.iver.mdiApp.plugins.Extension#updateUI(java.lang.String)
85
         */
86
        public void execute(String s) {
87
                View vista = (View) PluginServices.getMDIManager().getActiveView();
88
                ProjectView model = vista.getModel();
89
                FMap mapa = model.getMapContext();
90
                MapControl mapCtrl = vista.getMapControl();
91
                logger.debug("Comand : " + s);
92

    
93
                if (s.compareTo("FULL") == 0) {
94
                        try {
95
                            // mapa.beginAtomicEvent();
96
                                mapa.getViewPort().setExtent(mapa.getLayers().getFullExtent());
97
                                vista.repaintMap();
98
                                // mapa.endAtomicEvent();
99
                        } catch (DriverException e) {
100
                                NotificationManager.addError("Error obteniendo el full extent",
101
                                        e);
102
                        }
103
                } else if (s.compareTo("SELECTIONBYSHAPE") == 0) {
104
                        SelectionByTheme dlg = new SelectionByTheme();
105
                        FLayer[] layers = mapa.getLayers().getActives();
106
                        int count = 0;
107
                        dlg.setModel(new DefaultSelectionByThemeModel());
108
                        dlg.addSelectionListener(new MySelectionByThemeListener());
109
                        PluginServices.getMDIManager().addView(dlg);
110
                } else if (s.compareTo("ENCUADRE") == 0) {
111
                        FPanelExtentSelector l = new FPanelExtentSelector();
112

    
113
                        ProjectExtension p = (ProjectExtension) PluginServices.getExtension(com.iver.cit.gvsig.ProjectExtension.class);
114
                        Project project = p.getProject();
115
                        ExtentListSelectorModel modelo = new ExtentListSelectorModel(project);
116
                        ProjectExtent[] extents = project.getExtents();
117
                        project.addPropertyChangeListener(modelo);
118
                        l.setModel(modelo);
119
                        l.addSelectionListener(new Encuadrator(project, mapa, vista));
120
                        PluginServices.getMDIManager().addView(l);
121
                } else if (s.compareTo("INFO") == 0) {
122
                        mapCtrl.setTool("info");
123
                } else if (s.compareTo("CONFIG_LOCATOR") == 0) {
124
                        //Set up the map overview
125
                        FPanelLocConfig m_panelLoc = new FPanelLocConfig(vista.getMapOverview());
126
                        PluginServices.getMDIManager().addView(m_panelLoc);
127
                        m_panelLoc.setPreferredSize(m_panelLoc.getSize());
128
                } else if (s.compareTo("PAN") == 0) {
129
                        mapCtrl.setTool("pan");
130
                } else if (s.compareTo("ZOOM_IN") == 0) {
131
                        mapCtrl.setTool("zoomIn");
132
                } else if (s.compareTo("ZOOM_OUT") == 0) {
133
                        mapCtrl.setTool("zoomOut");
134
                } else if (s.compareTo("MEDICION") == 0) {
135
                        mapCtrl.setTool("medicion");
136
                } else if (s.compareTo("AREA") == 0) {
137
                        mapCtrl.setTool("area");
138
                } else if (s.compareTo("SELRECT") == 0) {
139
                        mapCtrl.setTool("rectSelection");
140
                } else if (s.compareTo("SELPOINT") == 0) {
141
                        mapCtrl.setTool("pointSelection");
142
                } else if (s.compareTo("PROPERTIES") == 0) {
143
                        ViewProperties viewProperties = new ViewProperties(model);
144
                        PluginServices.getMDIManager().addView(viewProperties);
145
                } else if (s.compareTo("TEMAS_VISIBLES") == 0) {
146
                        setVisibles(true, mapa);
147
                } else if (s.compareTo("TEMAS_NOVISIBLES") == 0) {
148
                        setVisibles(false, mapa);
149
                } else if (s.compareTo("TEMAS_ACTIVOS") == 0) {
150
                        setActives(true, mapa);
151
                } else if (s.compareTo("TEMAS_NOACTIVOS") == 0) {
152
                        setActives(false, mapa);
153
                }else if (s.compareTo("SAVERASTER") == 0) {
154
                        mapCtrl.setTool("saveRaster");
155
                }else if (s.compareTo("SELECTIMAGE") == 0) {
156
                        mapCtrl.setTool("selectImage");
157
                }
158
        }
159

    
160
        /**
161
         * Pone todas las capas visibles o no visibles.
162
         *
163
         * @param visible true si que quieren poner a visibles.
164
         * @param mapa FMap sobre el que actuar.
165
         */
166
        private void setVisibles(boolean visible, FMap mapa) {
167
                for (int i = 0; i < mapa.getLayers().getLayersCount(); i++) {
168
                        FLayer layer = mapa.getLayers().getLayer(i);
169
                        layer.setVisible(visible);
170
                }
171
        }
172

    
173
        /**
174
         * Pone todas las capas activas o no activas.
175
         *
176
         * @param active true si que quieren poner a activas.
177
         * @param mapa FMap sobre el que actuar.
178
         */
179
        private void setActives(boolean active, FMap mapa) {
180
                for (int i = 0; i < mapa.getLayers().getLayersCount(); i++) {
181
                        FLayer layer = mapa.getLayers().getLayer(i);
182
                        layer.setActive(active);
183
                }
184
        }
185

    
186
        /**
187
         * @see com.iver.mdiApp.plugins.Extension#isVisible()
188
         */
189
        public boolean isVisible() {
190
                com.iver.andami.ui.mdiManager.View f = PluginServices.getMDIManager()
191
                                                                                                                         .getActiveView();
192

    
193
                if (f == null) {
194
                        return false;
195
                }
196

    
197
                if (f.getClass() == View.class) {
198
                        View vista = (View) f;
199
                        ProjectView model = vista.getModel();
200
                        FMap mapa = model.getMapContext();
201

    
202
                        return mapa.getLayers().getLayersCount() > 0;
203
                } else {
204
                        return false;
205
                }
206
        }
207

    
208
        /**
209
         * @see com.iver.andami.plugins.Extension#inicializar()
210
         */
211
        public void inicializar() {
212
        }
213

    
214
        /**
215
         * @see com.iver.andami.plugins.Extension#isEnabled()
216
         */
217
        public boolean isEnabled() {
218
                return true;
219
        }
220
}