Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / org.gvsig.image.extension / src / main / java / org / gvsig / arcims / image / gui / toc / ArcImsPropsTocMenuEntry.java @ 32321

History | View | Annotate | Download (2.47 KB)

1 32321 vsanjaime
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 */
22
23
/*
24
 * AUTHORS (In addition to CIT):
25
 * 2010 Prodevelop S.L. main development
26
 * http://www.prodevelop.es
27
 */
28
29
package org.gvsig.arcims.image.gui.toc;
30
31
import java.awt.event.ActionEvent;
32
33
import javax.swing.JMenuItem;
34
35
import org.gvsig.andami.PluginServices;
36
import org.gvsig.app.project.documents.view.toc.TocMenuEntry;
37
import org.gvsig.app.project.documents.view.toc.gui.FPopupMenu;
38
import org.gvsig.arcims.image.fmap.layers.FRasterLyrArcIMS;
39
import org.gvsig.arcims.image.gui.dialogs.ArcImsPropsDialog;
40
import org.gvsig.fmap.mapcontext.layers.FLayer;
41
42
/**
43
 * This class implements the layer properties menu item that is added to the
44
 * ArcIMS layer's popup menu.
45
 *
46
 * @author jldominguez
47
 */
48
public class ArcImsPropsTocMenuEntry extends TocMenuEntry {
49
        private JMenuItem propsMenuItem;
50
        FLayer lyr = null;
51
        private ArcImsPropsDialog propsDialog;
52
53
        public void initialize(FPopupMenu m) {
54
                super.initialize(m);
55
56
                if (isTocItemBranch()) {
57
                        lyr = getNodeLayer();
58
59
                        // ArcIMS layer
60
                        if ((lyr instanceof FRasterLyrArcIMS)) {
61
                                propsMenuItem = new JMenuItem(PluginServices.getText(this,
62
                                                "arcims_properties"));
63
                                getMenu().add(propsMenuItem);
64
                                propsMenuItem.setFont(FPopupMenu.theFont);
65
                                getMenu().setEnabled(true);
66
                                propsMenuItem.addActionListener(this);
67
                        }
68
                }
69
        }
70
71
        /**
72
         * Creates an ArcImsPropsDialog object and adds it to the MDIManager.
73
         */
74
        public void actionPerformed(ActionEvent e) {
75
                lyr = getNodeLayer();
76
77
                if (lyr instanceof FRasterLyrArcIMS) {
78
                        propsDialog = new ArcImsPropsDialog((FRasterLyrArcIMS) lyr);
79
                        PluginServices.getMDIManager().addWindow(propsDialog);
80
                }
81
        }
82
}