Statistics
| Revision:

root / trunk / extensions / extGeoprocessingExtensions / src / com / iver / cit / gvsig / geoprocess / impl / reproject / ReprojectGeoprocessPlugin.java @ 6884

History | View | Annotate | Download (3.52 KB)

1 6166 azabala
/*
2
 * Created on 03-jul-2006
3
 *
4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 *
6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
21
 *
22
 * For more information, contact:
23
 *
24
 *  Generalitat Valenciana
25
 *   Conselleria d'Infraestructures i Transport
26
 *   Av. Blasco Ib??ez, 50
27
 *   46010 VALENCIA
28
 *   SPAIN
29
 *
30
 *      +34 963862235
31
 *   gvsig@gva.es
32
 *      www.gvsig.gva.es
33
 *
34
 *    or
35
 *
36
 *   IVER T.I. S.A
37
 *   Salamanca 50
38
 *   46005 Valencia
39
 *   Spain
40
 *
41
 *   +34 963163400
42
 *   dac@iver.es
43
 */
44
/* CVS MESSAGES:
45
 *
46
 * $Id$
47
 * $Log$
48 6884 cesar
 * Revision 1.4  2006-08-29 08:46:36  cesar
49
 * Rename the remaining method calls (extGeoprocessingExtensions was not in my workspace)
50
 *
51
 * Revision 1.3  2006/08/11 17:20:32  azabala
52 6166 azabala
 * *** empty log message ***
53
 *
54 6752 azabala
 * Revision 1.2  2006/07/04 16:43:18  azabala
55
 * *** empty log message ***
56
 *
57 6179 azabala
 * Revision 1.1  2006/07/03 20:28:29  azabala
58
 * *** empty log message ***
59 6166 azabala
 *
60 6179 azabala
 *
61 6166 azabala
 */
62
package com.iver.cit.gvsig.geoprocess.impl.reproject;
63
64
import java.net.URL;
65 6752 azabala
import java.util.Locale;
66 6166 azabala
67
import com.iver.andami.PluginServices;
68
import com.iver.cit.gvsig.fmap.layers.FLayers;
69
import com.iver.cit.gvsig.geoprocess.core.IGeoprocessController;
70
import com.iver.cit.gvsig.geoprocess.core.IGeoprocessPlugin;
71
import com.iver.cit.gvsig.geoprocess.core.gui.IGeoprocessPanel;
72
import com.iver.cit.gvsig.geoprocess.impl.reproject.gui.GeoprocessingReprojectPanel;
73
import com.iver.cit.gvsig.geoprocess.impl.xyshift.XYShiftGeoprocessPlugin;
74 6752 azabala
import com.iver.cit.gvsig.geoprocess.manager.GeoprocessManager;
75 6166 azabala
import com.iver.cit.gvsig.gui.View;
76
77
public class ReprojectGeoprocessPlugin implements IGeoprocessPlugin {
78
79 6752 azabala
        private static String dataConvertPkg;
80
        private static String geoprocessName;
81
82
        static{
83
                dataConvertPkg =
84
                        PluginServices.getText(null, "Conversion_de_datos");
85
                geoprocessName =
86
                        PluginServices.getText(null, "Reproyectar");
87
        }
88
89
90
91
92 6166 azabala
        public IGeoprocessPanel getGeoprocessPanel() {
93 6884 cesar
                com.iver.andami.ui.mdiManager.IWindow view = PluginServices.getMDIManager().getActiveWindow();
94 6179 azabala
                View vista = (View) view;
95 6166 azabala
                FLayers layers = vista.getModel().getMapContext().getLayers();
96
                return (IGeoprocessPanel) new GeoprocessingReprojectPanel(layers);
97
        }
98
99
        public URL getHtmlDescription() {
100 6752 azabala
                Locale locale = Locale.getDefault();
101
                String localeStr = locale.getLanguage();
102
                String urlStr = "resources/description_" +
103
                                                                                localeStr +
104
                                                                                        ".html";
105 6166 azabala
                URL url = ReprojectGeoprocessPlugin.class
106 6752 azabala
                                .getResource(urlStr);
107 6166 azabala
                return url;
108
        }
109
110
        public URL getImgDescription() {
111
                URL url = XYShiftGeoprocessPlugin.class
112
                                .getResource("resources/xyshiftdesc.png");
113
                return url;
114
        }
115
116
        public IGeoprocessController getGpController() {
117
                return new ReprojectGeoprocessController();
118
        }
119
120 6752 azabala
121 6166 azabala
        public String getNamespace() {
122 6752 azabala
                return dataConvertPkg + "/" + geoprocessName;
123 6166 azabala
        }
124
125
        public String toString(){
126 6752 azabala
                return geoprocessName;
127 6166 azabala
        }
128
129
}