Statistics
| Revision:

root / trunk / extensions / extCAD / src / com / iver / cit / gvsig / EditionChangeManager.java @ 6457

History | View | Annotate | Download (4.82 KB)

1
package com.iver.cit.gvsig;
2

    
3
import com.iver.andami.PluginServices;
4
import com.iver.andami.ui.mdiManager.View;
5
import com.iver.cit.gvsig.fmap.core.IRow;
6
import com.iver.cit.gvsig.fmap.edition.AfterFieldEditEvent;
7
import com.iver.cit.gvsig.fmap.edition.AfterRowEditEvent;
8
import com.iver.cit.gvsig.fmap.edition.BeforeFieldEditEvent;
9
import com.iver.cit.gvsig.fmap.edition.BeforeRowEditEvent;
10
import com.iver.cit.gvsig.fmap.edition.EditionEvent;
11
import com.iver.cit.gvsig.fmap.edition.IEditionListener;
12
import com.iver.cit.gvsig.fmap.layers.FLayer;
13
import com.iver.cit.gvsig.fmap.layers.FLayers;
14
import com.iver.cit.gvsig.gui.Table;
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: EditionChangeManager.java 6457 2006-07-20 11:03:27Z fjp $
59
 * $Log$
60
 * Revision 1.7  2006-07-20 11:03:27  fjp
61
 * *** empty log message ***
62
 *
63
 * Revision 1.6  2006/07/13 12:36:01  fjp
64
 * Revisar bien lo de a?adir campos y gestionar un campo gris
65
 *
66
 * Revision 1.5  2006/06/21 07:22:48  fjp
67
 * Posibilidad de marcar capas como "dirty" y tener una que guarde lo que se ha dibujado antes que ella. Al hacer un MapControl.rePaintDirtyLayers(), eso se tiene en cuenta en el redibujado.
68
 *
69
 * Revision 1.4  2006/05/16 07:06:02  caballero
70
 * Saber si se realiza una operaci?n desde la vista o desde la tabla.
71
 *
72
 * Revision 1.3  2006/05/10 06:26:24  caballero
73
 * comprobar si tiene capa asociada
74
 *
75
 * Revision 1.2  2006/05/09 09:26:04  caballero
76
 * refrescar las vistas y tablas
77
 *
78
 * Revision 1.1  2006/05/05 09:06:09  jorpiell
79
 * Se a a?adido la clase EditionChangeManager, que no es m?s que un listener que se ejecuta cuando se produce un evento de edici?n.
80
 *
81
 *
82
 */
83
/**
84
 * Cuando un tema se pone en edici?n se le debe asociar
85
 * un listener de este tipo, que se dispar? cuando se produzca
86
 * un evento de edici?n (borrado, modificaci?n,... sobre la capa.
87
 *
88
 * @author Jorge Piera Llodr? (piera_jor@gva.es)
89
 */
90
public class EditionChangeManager implements IEditionListener{
91
        private FLayer fLayer = null;
92

    
93
        /**
94
         * Constructor
95
         * @param fLayer
96
         * Tema que se est? editando
97
         */
98
        public EditionChangeManager(FLayer fLayer){
99
                this.fLayer = fLayer;
100
        }
101
        /*
102
         *  (non-Javadoc)
103
         * @see com.iver.cit.gvsig.fmap.edition.IEditionListener#processEvent(com.iver.cit.gvsig.fmap.edition.EditionEvent)
104
         */
105
        public void processEvent(EditionEvent e) {
106
                // TODO Auto-generated method stub
107

    
108
        }
109

    
110
        /*
111
         *  (non-Javadoc)
112
         * @see com.iver.cit.gvsig.fmap.edition.IEditionListener#beforeRowEditEvent(com.iver.cit.gvsig.fmap.edition.BeforeRowEditEvent)
113
         */
114
        public void beforeRowEditEvent(IRow feat,BeforeRowEditEvent e) {
115
                // TODO Auto-generated method stub
116

    
117
        }
118

    
119
        /*
120
         *  (non-Javadoc)
121
         * @see com.iver.cit.gvsig.fmap.edition.IEditionListener#afterRowEditEvent(com.iver.cit.gvsig.fmap.edition.AfterRowEditEvent)
122
         */
123
        public void afterRowEditEvent(AfterRowEditEvent e) {
124
                View[] views = (View[]) PluginServices.getMDIManager().getAllViews();
125

    
126
                for (int i=0 ; i<views.length ; i++){
127
                        if (views[i] instanceof Table){
128
                                Table table=(Table)views[i];
129
                                if (table.getModel().getAssociatedTable()!=null && table.getModel().getAssociatedTable().equals(fLayer))
130
                                        table.refresh();
131
                        }else if (views[i] instanceof com.iver.cit.gvsig.gui.View){
132
                                com.iver.cit.gvsig.gui.View view=(com.iver.cit.gvsig.gui.View)views[i];
133
                                 
134
                                fLayer.setDirty(true);
135
                                view.getMapControl().rePaintDirtyLayers();
136
                                /* FLayers layers=view.getMapControl().getMapContext().getLayers();
137
                                for (int j=0;j<layers.getLayersCount();j++){
138
                                        if (layers.getLayer(j).equals(fLayer)){
139
                                                view.repaintMap();
140
                                        }
141
                                } */
142
                        }
143
                }
144

    
145
        }
146
        public void beforeFieldEditEvent(BeforeFieldEditEvent e) {
147
                // TODO Auto-generated method stub
148
                
149
        }
150
        public void afterFieldEditEvent(AfterFieldEditEvent e) {
151
                // TODO Auto-generated method stub
152
                
153
        }
154

    
155
}