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 / FirstLayerTocMenuEntry.java @ 40596

History | View | Annotate | Download (3.28 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 org.gvsig.andami.PluginServices;
27
import org.gvsig.app.extension.ProjectExtension;
28
import org.gvsig.app.project.Project;
29
import org.gvsig.app.project.documents.view.toc.AbstractTocContextMenuAction;
30
import org.gvsig.app.project.documents.view.toc.ITocItem;
31
import org.gvsig.app.project.documents.view.toc.TocItemBranch;
32
import org.gvsig.fmap.mapcontext.layers.FLayer;
33
import org.gvsig.fmap.mapcontext.layers.FLayers;
34

    
35

    
36
/**
37
 * Cambia la posici?n actual del layer a la primera posici?n.
38
 *
39
 * @author Vicente Caballero Navarro
40
 */
41
public class FirstLayerTocMenuEntry extends AbstractTocContextMenuAction {
42
        public String getGroup() {
43
                return "group4"; //FIXME
44
        }
45

    
46
        public int getGroupOrder() {
47
                return 40;
48
        }
49

    
50
        public int getOrder() {
51
                return 2;
52
        }
53

    
54
        public String getText() {
55
                return PluginServices.getText(this, "colocar_delante");
56
        }
57

    
58
        public boolean isEnabled(ITocItem item, FLayer[] selectedItems) {
59
                return true;
60
        }
61

    
62
        public boolean isVisible(ITocItem item, FLayer[] selectedItems) {
63
                if (isTocItemBranch(item)){
64
                        return true;
65
                }
66
                return false;
67

    
68
        }
69

    
70

    
71
        public void execute(ITocItem item, FLayer[] selectedItems) {
72
              if (isTocItemBranch(item)){
73
            if (getMapContext().getLayers().getActives().length == 1) {
74
                FLayer layer=((TocItemBranch)item).getLayer();
75
                FLayers layers=layer.getParentLayer();
76
                for (int i=0;i<layers.getLayersCount();i++){
77
                    if(layers.getLayer(i).equals(layer)){
78
                            layers.moveTo(layers.getLayersCount()-1-i, 0);
79
                    }
80
                }
81
            } else if (selectedItems.length > 1) {
82
                FLayer[] actives =selectedItems;
83
                FLayers layers=actives[0].getParentLayer();
84
                for (int i=0;i<actives.length;i++){
85
                    for (int j=0;j<layers.getLayersCount();j++){
86
                        if(layers.getLayer(j).equals(actives[i])){
87
                                layers.moveTo(layers.getLayersCount()-1-j, 0);
88
                        }
89
                    }
90
                }
91
            }
92
                }
93
                // TRUCO PARA REFRESCAR.
94
        getMapContext().invalidate();
95
        Project project=((ProjectExtension)PluginServices.getExtension(ProjectExtension.class)).getProject();
96
                project.setModified(true);
97
                PluginServices.getMainFrame().enableControls();
98
        }
99
}