Statistics
| Revision:

svn-document-layout / trunk / org.gvsig.app.document.layout2.app / org.gvsig.app.document.layout2.app.mainplugin / src / main / java / org / gvsig / app / project / documents / layout / tools / LayoutViewPanListenerImpl.java @ 772

History | View | Annotate | Download (3.22 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
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 2
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
 */
22
package org.gvsig.app.project.documents.layout.tools;
23

    
24
import java.awt.Image;
25
import java.awt.Point;
26

    
27
import org.gvsig.andami.PluginServices;
28
import org.gvsig.andami.PluginsLocator;
29
import org.gvsig.app.project.documents.layout.gui.LayoutPanel;
30
import org.gvsig.app.project.documents.layout.tools.listener.LayoutMoveListener;
31
import org.gvsig.fmap.mapcontrol.tools.BehaviorException;
32
import org.gvsig.fmap.mapcontrol.tools.Events.PointEvent;
33

    
34
/**
35
 * Implementaci�n de la interfaz LayoutPanListener como herramienta para
36
 * realizar el
37
 * Pan.
38
 * 
39
 * @author Vicente Caballero Navarro
40
 */
41
public class LayoutViewPanListenerImpl extends AbstractLayoutToolListener
42
    implements LayoutMoveListener {
43

    
44
    private final Image ipan = PluginServices.getIconTheme().get("view-pan-icon")
45
        .getImage();
46

    
47
    /**
48
     * Crea un nuevo RectangleListenerImpl.
49
     * 
50
     * @param mapControl
51
     *            MapControl.
52
     */
53
    public LayoutViewPanListenerImpl(LayoutPanel layoutPanel) {
54
        super(layoutPanel);
55
    }
56

    
57
    /**
58
     * @see org.gvsig.fmap.mapcontrol.tools.Listeners.PanListener#move(java.awt.geom.Point2D,
59
     *      java.awt.geom.Point2D)
60
     */
61
    public void drag(PointEvent event) {
62

    
63
    }
64

    
65
    /**
66
     * @see org.gvsig.fmap.mapcontrol.tools.Listeners.ToolListener#getCursor()
67
     */
68
    public Image getImageCursor() {
69
        return ipan;
70
    }
71

    
72
    /**
73
     * @see org.gvsig.fmap.mapcontrol.tools.Listeners.ToolListener#cancelDrawing()
74
     */
75
    public boolean cancelDrawing() {
76
        return true;
77
    }
78

    
79
    public void press(PointEvent event) throws BehaviorException {
80
        // TODO Auto-generated method stub
81

    
82
    }
83

    
84
    public void release(PointEvent event) throws BehaviorException {
85
        Point p1 = layoutPanel.getLayoutControl().getFirstPoint();
86
        layoutPanel.getLayoutControl().setLastPoint();
87
        layoutPanel.getLayoutControl().setPointAnt();
88
        Point p2 = event.getEvent().getPoint();
89
        layoutPanel.getLayoutControl().getLayoutFunctions().setViewPan(p1, p2);
90
        layoutPanel.getLayoutControl().refresh();
91
        PluginsLocator.getMainFrame().refreshControls();
92
    }
93

    
94
    public void move(PointEvent event) throws BehaviorException {
95
        // TODO Auto-generated method stub
96

    
97
    }
98

    
99
    public void click(PointEvent event) throws BehaviorException {
100
        // TODO Auto-generated method stub
101

    
102
    }
103

    
104
}