Statistics
| Revision:

svn-gvsig-desktop / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / ThemeControls.java @ 28407

History | View | Annotate | Download (7.78 KB)

1 312 fernando
/*
2
 * Created on 31-may-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 5005 jorpiell
import java.awt.Component;
50
import java.awt.geom.Rectangle2D;
51
import java.io.File;
52
import java.util.BitSet;
53
54
import javax.swing.JFileChooser;
55
56
import org.apache.log4j.Logger;
57
58 10626 caballero
import com.hardcode.gdbms.driver.exceptions.ReadDriverException;
59 596 fernando
import com.iver.andami.PluginServices;
60 1294 fernando
import com.iver.andami.messages.NotificationManager;
61 596 fernando
import com.iver.andami.plugins.Extension;
62 10626 caballero
import com.iver.cit.gvsig.exceptions.visitors.VisitorException;
63 6878 cesar
import com.iver.cit.gvsig.fmap.MapContext;
64 1223 fernando
import com.iver.cit.gvsig.fmap.MapControl;
65 1270 vcaballero
import com.iver.cit.gvsig.fmap.core.IGeometry;
66 3186 jmorell
import com.iver.cit.gvsig.fmap.drivers.dxf.write.DxfGisWriter;
67 1169 vcaballero
import com.iver.cit.gvsig.fmap.drivers.shp.SHP;
68 312 fernando
import com.iver.cit.gvsig.fmap.layers.FLayer;
69 2421 caballero
import com.iver.cit.gvsig.fmap.layers.FLyrVect;
70 1270 vcaballero
import com.iver.cit.gvsig.fmap.layers.SelectableDataSource;
71
import com.iver.cit.gvsig.fmap.operations.strategies.SelectedShapeVisitor;
72 9532 caballero
import com.iver.cit.gvsig.project.documents.ProjectDocument;
73 7392 sbayarri
import com.iver.cit.gvsig.project.documents.view.IProjectView;
74 7304 caballero
import com.iver.cit.gvsig.project.documents.view.gui.View;
75 1169 vcaballero
import com.iver.utiles.GenericFileFilter;
76 312 fernando
77
78
/**
79 1219 vcaballero
 * Extensi?n de operaciones sobre el tema.
80 312 fernando
 *
81
 * @author Vicente Caballero Navarro
82
 */
83 5005 jorpiell
public class ThemeControls extends Extension {
84 1219 vcaballero
        private static Logger logger = Logger.getLogger(ThemeControls.class.getName());
85 312 fernando
86 1219 vcaballero
        /**
87 5005 jorpiell
         * @see com.iver.mdiApp.plugins.IExtension#updateUI(java.lang.String)
88 1219 vcaballero
         */
89
        public void execute(String s) {
90 6880 cesar
                View vista = (View) PluginServices.getMDIManager().getActiveWindow();
91 7392 sbayarri
                IProjectView model = vista.getModel();
92 6878 cesar
                MapContext mapa = model.getMapContext();
93 1223 fernando
                MapControl mapCtrl = vista.getMapControl();
94 1169 vcaballero
                logger.debug("Comand : " + s);
95 1219 vcaballero
96 6599 caballero
        if (s.equals("SHAPE_SELECTED")) {
97 1169 vcaballero
                        createShape(mapa);
98 9532 caballero
                         ((ProjectDocument)vista.getModel()).setModified(true);
99 6599 caballero
                } else if (s.equals("DXF_SELECTED")) {
100 1668 jmorell
                        createDxf(mapa);
101 9532 caballero
                        ((ProjectDocument)vista.getModel()).setModified(true);
102 6599 caballero
                } else if (s.equals("ZOOM_SELECT")) {
103 1169 vcaballero
                        Rectangle2D selectedExtent = mapa.getSelectionBounds();
104
105
                        if (selectedExtent != null) {
106
                                mapa.getViewPort().setExtent(selectedExtent);
107 9532 caballero
                                ((ProjectDocument)vista.getModel()).setModified(true);
108 1169 vcaballero
                        }
109
                }
110 1219 vcaballero
        }
111
112
        /**
113
         * Crea un nuevo shape.
114
         *
115
         * @param map FMap de donde coger las capas a copiar.
116
         */
117 6878 cesar
        private void createShape(MapContext map) {
118 1169 vcaballero
                if (map.getSelectionBounds() != null) {
119
                        JFileChooser jfc = new JFileChooser();
120 1219 vcaballero
                        jfc.addChoosableFileFilter(new GenericFileFilter("shp",
121 5503 cesar
                                        PluginServices.getText(this, "Shapefile")));
122 1219 vcaballero
123
                        if (jfc.showSaveDialog((Component) PluginServices.getMainFrame()) == JFileChooser.APPROVE_OPTION) {
124
                                File file=jfc.getSelectedFile();
125
                                if (!(file.getPath().endsWith(".shp") || file.getPath().endsWith(".SHP"))){
126
                                        file=new File(file.getPath()+".shp");
127
                                }
128 1270 vcaballero
                                //SHP.SHPFileFromSelected(map, file);
129
                                SelectedShapeVisitor ssv=new SelectedShapeVisitor();
130
                                try {
131
                                        map.getLayers().process(ssv);
132 10626 caballero
                                        }  catch (ReadDriverException e1) {
133 1270 vcaballero
                                                throw new RuntimeException("No se espera que SelectByPointVisitor lance esta excepci?n",
134
                                                                e1);
135 10626 caballero
                                        } catch (VisitorException e1) {
136 1270 vcaballero
                                                throw new RuntimeException("No se espera que SelectByPointVisitor lance esta excepci?n",
137 10626 caballero
                                                                e1);
138 1270 vcaballero
                                        }
139
                                IGeometry[] fgs=ssv.getSelectedGeometries();
140
                                SelectableDataSource sds=ssv.getSelectableDataSource();
141
                                BitSet bitset=ssv.getBitSet();
142 1294 fernando
                                try {
143
                                        sds.start();
144
                                        SHP.SHPFileFromGeometries(fgs,bitset,sds,file);
145
                                        sds.stop();
146 10626 caballero
                                } catch (ReadDriverException e2) {
147 1294 fernando
                                        NotificationManager.addError("No se pudo escribir la capa", e2);
148
                                }
149 1169 vcaballero
                        }
150 1219 vcaballero
                } // else {
151
152 1169 vcaballero
                //}
153 1219 vcaballero
        }
154 6599 caballero
155 1668 jmorell
        /**
156
         * Crea un DXF partiendo de los objetos seleccionados. Desarrollado en el
157
         * piloto de CAD. Lo de aqu? no sirve.
158
         * @param map
159
         */
160 6878 cesar
        private void createDxf(MapContext map) {
161 1668 jmorell
                if (map.getSelectionBounds() != null) {
162
                        JFileChooser jfc = new JFileChooser();
163
                        jfc.addChoosableFileFilter(new GenericFileFilter("dxf",
164 5503 cesar
                                        PluginServices.getText(this, "Dxffiles")));
165 1219 vcaballero
166 1668 jmorell
                        if (jfc.showSaveDialog((Component) PluginServices.getMainFrame()) == JFileChooser.APPROVE_OPTION) {
167
                                File file=jfc.getSelectedFile();
168
                                if (!(file.getPath().endsWith(".dxf") || file.getPath().endsWith(".DXF"))){
169
                                        file=new File(file.getPath()+".dxf");
170
                                }
171
                                //SHP.SHPFileFromSelected(map, file);
172
                                SelectedShapeVisitor ssv=new SelectedShapeVisitor();
173
                                try {
174
                                        map.getLayers().process(ssv);
175 10626 caballero
                                        } catch (ReadDriverException e1) {
176 1668 jmorell
                                                throw new RuntimeException("No se espera que SelectByPointVisitor lance esta excepci?n",
177
                                                                e1);
178 10626 caballero
                                        } catch (VisitorException e) {
179 1668 jmorell
                                                throw new RuntimeException("No se espera que SelectByPointVisitor lance esta excepci?n",
180
                                                                e);
181
                                        }
182 3186 jmorell
                                IGeometry[] fgs=ssv.getSelectedGeometries();
183
                                DxfGisWriter dxfGisWriter = new DxfGisWriter();
184 1668 jmorell
                                try {
185 3436 jmorell
                                        // map.getLayers() devuelve solo una capa porque la
186
                    // herramienta est? inhabilitada cuando hay varias capas
187
                    // seleccionadas.
188
                    FLayer layer = map.getLayers().getActives()[0];
189 3442 jmorell
                    //dxfGisWriter.write(fgs, layer, file);
190 1668 jmorell
                                } catch (Exception e2) {
191
                                        // TODO Auto-generated catch block
192
                                        e2.printStackTrace();
193 3186 jmorell
                                }
194 1668 jmorell
                                /*SelectableDataSource sds=ssv.getSelectableDataSource();
195
                                BitSet bitset=ssv.getBitSet();
196
                                try {
197
                                        sds.start();
198
                                        SHP.SHPFileFromGeometries(fgs,bitset,sds,file);
199
                                        sds.stop();
200
                                } catch (com.hardcode.gdbms.engine.data.DriverException e2) {
201
                                        NotificationManager.addError("No se pudo escribir la capa", e2);
202
                                }*/
203
                        }
204
                }
205
        }
206
207 1219 vcaballero
        /**
208 5005 jorpiell
         * @see com.iver.mdiApp.plugins.IExtension#isVisible()
209 1219 vcaballero
         */
210
        public boolean isVisible() {
211 6877 cesar
                com.iver.andami.ui.mdiManager.IWindow f = PluginServices.getMDIManager()
212 6880 cesar
                                                                                                                         .getActiveWindow();
213 1219 vcaballero
214
                if (f == null) {
215
                        return false;
216 1169 vcaballero
                }
217 312 fernando
218 5900 jorpiell
                if (f instanceof View) {
219 6878 cesar
                        MapContext mapa = ((View) f).getModel().getMapContext();
220 312 fernando
221 2421 caballero
                        //View v = (View) f;
222 312 fernando
223 1219 vcaballero
                        return mapa.getLayers().getLayersCount() > 0;
224
                } else {
225
                        return false;
226
                }
227
        }
228 312 fernando
229 1219 vcaballero
        /**
230 5005 jorpiell
         * @see com.iver.andami.plugins.IExtension#isEnabled()
231 1219 vcaballero
         */
232
        public boolean isEnabled() {
233 6880 cesar
                View f = (View) PluginServices.getMDIManager().getActiveWindow();
234 312 fernando
235 1219 vcaballero
                if (f == null) {
236
                        return false;
237
                }
238 312 fernando
239 1219 vcaballero
                FLayer[] selected = f.getModel().getMapContext().getLayers().getActives();
240 6778 jmvivo
                if (selected.length == 1 && selected[0] instanceof FLyrVect && selected[0].isAvailable()){
241 2421 caballero
                        return true;
242
                }
243
                return false;
244 1219 vcaballero
        }
245 596 fernando
246
        /**
247 5005 jorpiell
         * @see com.iver.andami.plugins.IExtension#initialize()
248 596 fernando
         */
249 5005 jorpiell
        public void initialize() {
250 596 fernando
        }
251 312 fernando
}