Statistics
| Revision:

svn-gvsig-desktop / branches / v10 / applications / appgvSIG / src / com / iver / cit / gvsig / project / documents / view / toc / actions / SaveRasterTocMenuEntry.java @ 8767

History | View | Annotate | Download (2.96 KB)

1
package com.iver.cit.gvsig.project.documents.view.toc.actions;
2

    
3
import java.awt.event.ActionEvent;
4

    
5
import javax.swing.JMenuItem;
6

    
7
import com.iver.andami.PluginServices;
8
import com.iver.cit.gvsig.fmap.MapControl;
9
import com.iver.cit.gvsig.fmap.layers.FLayer;
10
import com.iver.cit.gvsig.fmap.layers.FLyrRaster;
11
import com.iver.cit.gvsig.project.documents.view.gui.View;
12
import com.iver.cit.gvsig.project.documents.view.toc.TocMenuEntry;
13
import com.iver.cit.gvsig.project.documents.view.toc.gui.FPopupMenu;
14

    
15

    
16
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
17
 *
18
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
19
 *
20
 * This program is free software; you can redistribute it and/or
21
 * modify it under the terms of the GNU General Public License
22
 * as published by the Free Software Foundation; either version 2
23
 * of the License, or (at your option) any later version.
24
 *
25
 * This program is distributed in the hope that it will be useful,
26
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28
 * GNU General Public License for more details.
29
 *
30
 * You should have received a copy of the GNU General Public License
31
 * along with this program; if not, write to the Free Software
32
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
33
 *
34
 * For more information, contact:
35
 *
36
 *  Generalitat Valenciana
37
 *   Conselleria d'Infraestructures i Transport
38
 *   Av. Blasco Ib??ez, 50
39
 *   46010 VALENCIA
40
 *   SPAIN
41
 *
42
 *      +34 963862235
43
 *   gvsig@gva.es
44
 *      www.gvsig.gva.es
45
 *
46
 *    or
47
 *
48
 *   IVER T.I. S.A
49
 *   Salamanca 50
50
 *   46005 Valencia
51
 *   Spain
52
 *
53
 *   +34 963163400
54
 *   dac@iver.es
55
 */
56
/* CVS MESSAGES:
57
 *
58
 * $Id: SaveRasterTocMenuEntry.java 8767 2006-11-15 04:11:32Z jjdelcerro $
59
 * $Log$
60
 * Revision 1.1.2.1  2006-11-15 04:10:44  jjdelcerro
61
 * *** empty log message ***
62
 *
63
 * Revision 1.1  2006/09/15 10:41:30  caballero
64
 * extensibilidad de documentos
65
 *
66
 * Revision 1.1  2006/09/12 15:58:14  jorpiell
67
 * "Sacadas" las opcines del men? de FPopupMenu
68
 *
69
 *
70
 */
71
/**
72
*
73
* @author Nacho Brodin <brodin_ign@gva.es>
74
*
75
* Entrada de men? para la activaci?n de la funcionalidad de salvar
76
* a raster una parte de la vista.
77
*/
78
public class SaveRasterTocMenuEntry extends TocMenuEntry{
79
        private JMenuItem properties;
80
        FLayer lyr = null;
81

    
82
        public void initialize(FPopupMenu m) {
83
                super.initialize(m);
84

    
85
                if (isTocItemBranch()) {
86
                        lyr = getNodeLayer();
87
                   // Opcciones para capas raster
88
                   if ((lyr instanceof FLyrRaster)) {
89
                           properties = new JMenuItem(PluginServices.getText(this, "salvar_raster"));
90
                           getMenu().add( properties );
91
                           properties.setFont(FPopupMenu.theFont);
92
                           getMenu().setEnabled(true);
93
                           //getMenu().addSeparator();
94
                   //Cambio color
95
                           properties.addActionListener(this);
96
                    }
97
                }
98
        }
99

    
100
        public void actionPerformed(ActionEvent e) {
101
                lyr = getNodeLayer();
102
                View vista = (View) PluginServices.getMDIManager().getActiveWindow();
103
                MapControl mapCtrl = vista.getMapControl();
104
                mapCtrl.setTool("saveRaster");
105
        }
106
}
107