Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extCAD / src / com / iver / cit / gvsig / EditionChangeManager.java @ 6689

History | View | Annotate | Download (4.91 KB)

1 5063 jorpiell
package com.iver.cit.gvsig;
2
3
import com.iver.andami.PluginServices;
4
import com.iver.andami.ui.mdiManager.View;
5 5196 caballero
import com.iver.cit.gvsig.fmap.core.IRow;
6 6338 fjp
import com.iver.cit.gvsig.fmap.edition.AfterFieldEditEvent;
7 5063 jorpiell
import com.iver.cit.gvsig.fmap.edition.AfterRowEditEvent;
8 6338 fjp
import com.iver.cit.gvsig.fmap.edition.BeforeFieldEditEvent;
9 5063 jorpiell
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 5110 caballero
import com.iver.cit.gvsig.fmap.layers.FLayers;
14 5063 jorpiell
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$
59
 * $Log$
60 6689 caballero
 * Revision 1.8  2006-08-08 07:19:05  caballero
61
 * afterRowEditEvent con IRow
62
 *
63
 * Revision 1.7  2006/07/20 11:03:27  fjp
64 6457 fjp
 * *** empty log message ***
65
 *
66
 * Revision 1.6  2006/07/13 12:36:01  fjp
67 6338 fjp
 * Revisar bien lo de a?adir campos y gestionar un campo gris
68
 *
69
 * Revision 1.5  2006/06/21 07:22:48  fjp
70 5923 fjp
 * 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.
71
 *
72
 * Revision 1.4  2006/05/16 07:06:02  caballero
73 5196 caballero
 * Saber si se realiza una operaci?n desde la vista o desde la tabla.
74
 *
75
 * Revision 1.3  2006/05/10 06:26:24  caballero
76 5117 caballero
 * comprobar si tiene capa asociada
77
 *
78
 * Revision 1.2  2006/05/09 09:26:04  caballero
79 5110 caballero
 * refrescar las vistas y tablas
80
 *
81
 * Revision 1.1  2006/05/05 09:06:09  jorpiell
82 5063 jorpiell
 * 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.
83
 *
84
 *
85
 */
86
/**
87
 * Cuando un tema se pone en edici?n se le debe asociar
88
 * un listener de este tipo, que se dispar? cuando se produzca
89
 * un evento de edici?n (borrado, modificaci?n,... sobre la capa.
90 5110 caballero
 *
91 5063 jorpiell
 * @author Jorge Piera Llodr? (piera_jor@gva.es)
92
 */
93
public class EditionChangeManager implements IEditionListener{
94
        private FLayer fLayer = null;
95 5110 caballero
96 5063 jorpiell
        /**
97
         * Constructor
98
         * @param fLayer
99
         * Tema que se est? editando
100
         */
101
        public EditionChangeManager(FLayer fLayer){
102
                this.fLayer = fLayer;
103
        }
104
        /*
105
         *  (non-Javadoc)
106
         * @see com.iver.cit.gvsig.fmap.edition.IEditionListener#processEvent(com.iver.cit.gvsig.fmap.edition.EditionEvent)
107
         */
108
        public void processEvent(EditionEvent e) {
109
                // TODO Auto-generated method stub
110 5110 caballero
111 5063 jorpiell
        }
112
113
        /*
114
         *  (non-Javadoc)
115
         * @see com.iver.cit.gvsig.fmap.edition.IEditionListener#beforeRowEditEvent(com.iver.cit.gvsig.fmap.edition.BeforeRowEditEvent)
116
         */
117 5196 caballero
        public void beforeRowEditEvent(IRow feat,BeforeRowEditEvent e) {
118 5063 jorpiell
                // TODO Auto-generated method stub
119 5110 caballero
120 5063 jorpiell
        }
121
122
        /*
123
         *  (non-Javadoc)
124
         * @see com.iver.cit.gvsig.fmap.edition.IEditionListener#afterRowEditEvent(com.iver.cit.gvsig.fmap.edition.AfterRowEditEvent)
125
         */
126 6689 caballero
        public void afterRowEditEvent(IRow feat, AfterRowEditEvent e) {
127 5063 jorpiell
                View[] views = (View[]) PluginServices.getMDIManager().getAllViews();
128
129
                for (int i=0 ; i<views.length ; i++){
130
                        if (views[i] instanceof Table){
131 5110 caballero
                                Table table=(Table)views[i];
132 5117 caballero
                                if (table.getModel().getAssociatedTable()!=null && table.getModel().getAssociatedTable().equals(fLayer))
133 5110 caballero
                                        table.refresh();
134
                        }else if (views[i] instanceof com.iver.cit.gvsig.gui.View){
135
                                com.iver.cit.gvsig.gui.View view=(com.iver.cit.gvsig.gui.View)views[i];
136 6457 fjp
137 5923 fjp
                                fLayer.setDirty(true);
138
                                view.getMapControl().rePaintDirtyLayers();
139
                                /* FLayers layers=view.getMapControl().getMapContext().getLayers();
140 5110 caballero
                                for (int j=0;j<layers.getLayersCount();j++){
141
                                        if (layers.getLayer(j).equals(fLayer)){
142
                                                view.repaintMap();
143
                                        }
144 5923 fjp
                                } */
145 5063 jorpiell
                        }
146
                }
147 5110 caballero
148 5063 jorpiell
        }
149 6338 fjp
        public void beforeFieldEditEvent(BeforeFieldEditEvent e) {
150
                // TODO Auto-generated method stub
151
152
        }
153
        public void afterFieldEditEvent(AfterFieldEditEvent e) {
154
                // TODO Auto-generated method stub
155
156
        }
157 5063 jorpiell
158
}