Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / extEditing / src / org / gvsig / editing / UndoViewExtension.java @ 39212

History | View | Annotate | Download (4.62 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41
package org.gvsig.editing;
42

    
43
import org.gvsig.andami.PluginServices;
44
import org.gvsig.andami.messages.NotificationManager;
45
import org.gvsig.andami.plugins.Extension;
46
import org.gvsig.app.ApplicationLocator;
47
import org.gvsig.app.project.documents.view.gui.DefaultViewPanel;
48
import org.gvsig.fmap.mapcontext.layers.FLayer;
49
import org.gvsig.fmap.mapcontext.layers.FLayers;
50
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
51
import org.gvsig.fmap.mapcontrol.MapControl;
52
import org.gvsig.tools.undo.UndoException;
53

    
54

    
55

    
56
/**
57
 * Extensi?n encargada de gestionar el deshacer los comandos anteriormente
58
 * aplicados.
59
 *
60
 * @author Vicente Caballero Navarro
61
 */
62
public class UndoViewExtension extends Extension {
63
        /**
64
         * @see org.gvsig.andami.plugins.IExtension#initialize()
65
         */
66
        public void initialize() {
67
        }
68

    
69
        /**
70
         * @see org.gvsig.andami.plugins.IExtension#execute(java.lang.String)
71
         */
72
        public void execute(String s) {
73
                DefaultViewPanel vista = (DefaultViewPanel) PluginServices.getMDIManager().getActiveWindow();
74

    
75

    
76
                if (s.compareTo("edit-undo-layer") == 0) {
77
                        undo(vista);
78

    
79
                }
80
        }
81

    
82
        private void undo(DefaultViewPanel vista) {
83
                MapControl mapControl = vista.getMapControl();
84
                try {
85
                        FLayers layers=mapControl.getMapContext().getLayers();
86
                        for (int i=0;i<layers.getLayersCount();i++){
87
                                if (layers.getLayer(i) instanceof FLyrVect && layers.getLayer(i).isEditing() && layers.getLayer(i).isActive()){
88
                                        ((FLyrVect)layers.getLayer(i)).getFeatureStore().undo();
89
                                        mapControl.drawMap(false);
90
                                        ApplicationLocator.getManager().refreshMenusAndToolBars();
91
                                }
92
                        }
93
                } catch (UndoException e) {
94
                        NotificationManager.addError(e.getMessage(),e);
95
                }
96

    
97
        }
98

    
99
        /**
100
         * @see org.gvsig.andami.plugins.IExtension#isEnabled()
101
         */
102
        public boolean isEnabled() {
103
                DefaultViewPanel vista = (DefaultViewPanel) PluginServices.getMDIManager().getActiveWindow();
104
                MapControl mapControl = vista.getMapControl();
105
                FLayers layers=mapControl.getMapContext().getLayers();
106
                for (int i=0;i<layers.getLayersCount();i++){
107
//                        try {
108
                                if (layers.getLayer(i) instanceof FLyrVect && ((FLyrVect)layers.getLayer(i)).getFeatureStore().isEditing() && layers.getLayer(i).isActive()){
109
                                        return ((FLyrVect)layers.getLayer(i)).getFeatureStore().canUndo();
110
//                                VectorialEditableAdapter vea=(VectorialEditableAdapter)((FLyrVect)layers.getLayer(i)).getSource();
111
//                                if (vea==null)return false;
112
//                                return vea.getCommandRecord().moreUndoCommands();
113
                                }
114
//                        } catch (ReadException e) {
115
//                                // TODO Auto-generated catch block
116
//                                e.printStackTrace();
117
//                        } catch (DataException e) {
118
//                                // TODO Auto-generated catch block
119
//                                e.printStackTrace();
120
//                        }
121

    
122
                }
123
                return false;
124
        }
125

    
126
        /**
127
         * @see org.gvsig.andami.plugins.IExtension#isVisible()
128
         */
129
        public boolean isVisible() {
130
                org.gvsig.andami.ui.mdiManager.IWindow f = PluginServices.getMDIManager()
131
                                                                                                                         .getActiveWindow();
132

    
133
                if (f == null) {
134
                        return false;
135
                }
136

    
137
                if (f instanceof DefaultViewPanel) {
138
                        MapControl mapControl = ((DefaultViewPanel)f).getMapControl();
139
                        FLayer[] layers=mapControl.getMapContext().getLayers().getActives();
140
                        FLayer layer;
141
                        for (int i=0;i<layers.length;i++){
142
                                layer = layers[i];
143
                                if (!layer.isAvailable()){
144
                                        continue;
145
                                }
146
//                                try {
147
                                        if (layer instanceof FLyrVect && ((FLyrVect)layer).getFeatureStore().isEditing()){
148
                                                return true;
149
                                        }
150
//                                } catch (ReadException e) {
151
//                                        // TODO Auto-generated catch block
152
//                                        e.printStackTrace();
153
//                                }
154
                        }
155
                }
156
                return false;
157
        }
158
}