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 / LayoutViewZoomInListenerImpl.java @ 280

History | View | Annotate | Download (3.29 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
 * zoom m�s sobre una vista seleccionada.
38
 * 
39
 * @author Vicente Caballero Navarro
40
 */
41
public class LayoutViewZoomInListenerImpl extends AbstractLayoutToolListener
42
    implements LayoutMoveListener {
43

    
44
    public static final Image izoomin = PluginServices.getIconTheme()
45
        .get("cursor-layout-view-navigation-zoom-in-topoint").getImage();
46

    
47
    /**
48
     * Crea un nuevo LayoutViewZoomInListenerImpl.
49
     * 
50
     * @param l
51
     *            Layout.
52
     */
53
    public LayoutViewZoomInListenerImpl(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 izoomin;
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
    public void release(PointEvent event) throws BehaviorException {
84
        Point p1 = layoutPanel.getLayoutControl().getFirstPoint();
85
        layoutPanel.getLayoutControl().setLastPoint();
86
        layoutPanel.getLayoutControl().setPointAnt();
87
        Point p2 = event.getEvent().getPoint();
88
        layoutPanel.getLayoutControl().getLayoutZooms().setViewZoomIn(p1, p2);
89
        layoutPanel.getLayoutControl().refresh();
90
        PluginsLocator.getMainFrame().refreshControls();
91
    }
92

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

    
96
    }
97

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

    
101
    }
102

    
103
}