Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.app / org.gvsig.app.mainplugin / src / main / java / org / gvsig / app / project / documents / view / toc / actions / FLyrVectEditPropertiesTocMenuEntry.java @ 40596

History | View | Annotate | Download (3.4 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
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 3
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
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.app.project.documents.view.toc.actions;
25

    
26
import javax.swing.JDialog;
27

    
28
import org.gvsig.andami.PluginServices;
29
import org.gvsig.app.extension.ProjectExtension;
30
import org.gvsig.app.project.Project;
31
import org.gvsig.app.project.documents.view.legend.gui.ThemeManagerWindow;
32
import org.gvsig.app.project.documents.view.toc.AbstractTocContextMenuAction;
33
import org.gvsig.app.project.documents.view.toc.ITocItem;
34
import org.gvsig.fmap.mapcontext.layers.FLayer;
35
import org.gvsig.fmap.mapcontext.layers.operations.ClassifiableVectorial;
36
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
37

    
38
/**
39
 * Muestra el men? de propiedades del tema.
40
 *
41
 * @author jmorell
42
 */
43

    
44

    
45
public class FLyrVectEditPropertiesTocMenuEntry extends AbstractTocContextMenuAction {
46
        public String getGroup() {
47
                return "group2"; //FIXME
48
        }
49

    
50
        public int getGroupOrder() {
51
                return 20;
52
        }
53

    
54
        public int getOrder() {
55
                return 0;
56
        }
57

    
58
        public String getText() {
59
                return PluginServices.getText(this, "propiedades");
60
        }
61

    
62
        public boolean isEnabled(ITocItem item, FLayer[] selectedItems) {
63
                return selectedItems.length == 1;
64
        }
65

    
66
        public boolean isVisible(ITocItem item, FLayer[] selectedItems) {
67
                if (isTocItemBranch(item)) {
68
                        FLayer lyr = getNodeLayer(item);
69
            if ((lyr instanceof ClassifiableVectorial)) {
70
                    if (!((lyr instanceof FLyrVect) &&
71
                                    !((FLyrVect)lyr).isPropertiesMenuVisible())){
72
                            return true;
73
//                            if (!(lyr instanceof FLyrAnnotation))
74
//                                    return true;
75
                    }
76

    
77
            }
78
                }
79
                return false;
80

    
81
        }
82

    
83

    
84
        public void execute(ITocItem item, FLayer[] selectedItems) {
85
//                long t1 = System.currentTimeMillis();
86

    
87
                FLayer lyr = getNodeLayer(item);
88
                ThemeManagerWindow fThemeManagerWindow = null;
89

    
90
                if (lyr.isAvailable()) {
91
                        fThemeManagerWindow = new ThemeManagerWindow(lyr);
92
                }
93

    
94
                if (PluginServices.getMainFrame() == null) {
95
                        JDialog dlg = new JDialog();
96
                        fThemeManagerWindow.setPreferredSize(fThemeManagerWindow.getSize());
97
                        dlg.getContentPane().add(fThemeManagerWindow);
98
                        dlg.setModal(false);
99
                        dlg.pack();
100
                        dlg.setVisible(true);
101
//                        System.err.println("open properties dialog time: "+(System.currentTimeMillis()-t1));
102
                } else {
103
//                        System.err.println("open properties dialog time: "+(System.currentTimeMillis()-t1));
104
                        PluginServices.getMDIManager().addWindow(fThemeManagerWindow);
105
                }
106

    
107
                Project project=((ProjectExtension)PluginServices.getExtension(ProjectExtension.class)).getProject();
108
                project.setModified(true);
109
        }
110

    
111
}