Statistics
| Revision:

root / branches / v2_0_0_prep / applications / appgvSIG / src / org / gvsig / app / project / documents / layout / tools / LayoutEditGraphicsListenerImpl.java @ 31496

History | View | Annotate | Download (4.49 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.app.project.documents.layout.tools;
42

    
43
import java.awt.Image;
44

    
45
import org.gvsig.andami.PluginServices;
46
import org.gvsig.app.project.documents.layout.FLayoutUtilities;
47
import org.gvsig.app.project.documents.layout.fframes.IFFrame;
48
import org.gvsig.app.project.documents.layout.fframes.IFFrameEditableVertex;
49
import org.gvsig.app.project.documents.layout.gui.LayoutPanel;
50
import org.gvsig.app.project.documents.layout.tools.listener.LayoutMoveListener;
51
import org.gvsig.fmap.mapcontrol.tools.BehaviorException;
52
import org.gvsig.fmap.mapcontrol.tools.Events.PointEvent;
53

    
54

    
55

    
56
/**
57
 * Implementaci�n de la interfaz LayoutMoveListener como herramienta para editar
58
 * una geometr�a.
59
 *
60
 * @author Vicente Caballero Navarro
61
 */
62
public class LayoutEditGraphicsListenerImpl implements LayoutMoveListener {
63
        public static final Image icrux = PluginServices.getIconTheme()
64
                .get("crux-cursor").getImage();
65
        private LayoutPanel layout;
66
        /**
67
         * Crea un nuevo LayoutSelectionListenerImpl.
68
         *
69
         * @param l Layout.
70
         */
71
        public LayoutEditGraphicsListenerImpl(LayoutPanel l) {
72
                this.layout = l;
73
        }
74

    
75
        /**
76
         * @see org.gvsig.fmap.mapcontrol.tools.Listeners.PanListener#move(java.awt.geom.Point2D,
77
         *                 java.awt.geom.Point2D)
78
         */
79
        public void drag(PointEvent event) {
80
                IFFrame[] fframes=layout.getLayoutContext().getFFrames();
81
            for (int i=0;i<fframes.length;i++){
82
                    IFFrame frame=fframes[i];
83
                    if (frame instanceof IFFrameEditableVertex){
84
                            ((IFFrameEditableVertex)frame).pointDragged(FLayoutUtilities.toSheetPoint(event.getPoint(),layout.getLayoutControl().getAT()));
85
                            //layout.setStatus(Layout.GRAPHICS);
86

    
87
                    }
88
            }
89
        }
90

    
91
        /**
92
         * @see org.gvsig.fmap.mapcontrol.tools.Listeners.ToolListener#getCursor()
93
         */
94
        public Image getImageCursor() {
95
                return icrux;
96
        }
97

    
98
        /**
99
         * @see org.gvsig.fmap.mapcontrol.tools.Listeners.ToolListener#cancelDrawing()
100
         */
101
        public boolean cancelDrawing() {
102
                return true;
103
        }
104

    
105
        public void press(PointEvent event) throws BehaviorException {
106
                IFFrame[] fframes=layout.getLayoutContext().getFFrames();
107
            for (int i=0;i<fframes.length;i++){
108
                    IFFrame frame=fframes[i];
109
                    if (frame instanceof IFFrameEditableVertex){
110
                            ((IFFrameEditableVertex)frame).pointPressed(FLayoutUtilities.toSheetPoint(event.getPoint(),layout.getLayoutControl().getAT()));
111
                    }
112
            }
113
        }
114

    
115
        public void release(PointEvent event) throws BehaviorException {
116
                IFFrame[] fframes=layout.getLayoutContext().getFFrames();
117
            for (int i=0;i<fframes.length;i++){
118
                    IFFrame frame=fframes[i];
119
                    if (frame instanceof IFFrameEditableVertex){
120
                            if (frame.getSelected()!=IFFrame.NOSELECT && ((IFFrameEditableVertex)frame).isEditing()){
121
                                    IFFrame fframeAux=frame.cloneFFrame(layout);
122
                                    ((IFFrameEditableVertex)fframeAux).startEditing();
123
                                    ((IFFrameEditableVertex)fframeAux).pointReleased(FLayoutUtilities.toSheetPoint(event.getPoint(),layout.getLayoutControl().getAT()),((IFFrameEditableVertex)frame).getGeometry());
124
                                    layout.getLayoutContext().getFrameCommandsRecord().update(frame,fframeAux);
125
                                    fframeAux.getBoundingBox(layout.getLayoutControl().getAT());
126
                                    layout.getLayoutContext().updateFFrames();
127
                            }
128
                    }
129
            }
130
            layout.getLayoutControl().refresh();
131
        }
132

    
133
        public void click(PointEvent event) {
134
        }
135

    
136
        public void move(PointEvent event) throws BehaviorException {
137
        }
138

    
139
}