Statistics
| Revision:

svn-document-layout / tags / 2059 / org.gvsig.app.document.layout.app.mainplugin / src / main / java / org / gvsig / app / project / documents / layout / tools / LayoutZoomInListenerImpl.java @ 46

History | View | Annotate | Download (2.98 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
import java.awt.event.MouseEvent;
27

    
28
import org.gvsig.andami.PluginServices;
29
import org.gvsig.app.project.documents.layout.gui.LayoutPanel;
30
import org.gvsig.app.project.documents.layout.tools.listener.LayoutRectangleListener;
31
import org.gvsig.fmap.mapcontrol.tools.Events.EnvelopeEvent;
32

    
33
/**
34
 * Implementaci�n de la interfaz LayoutRectangleListener como herramienta para
35
 * realizar un zoom m�s.
36
 * 
37
 * @author Vicente Caballero Navarro
38
 */
39
public class LayoutZoomInListenerImpl extends AbstractLayoutToolListener
40
    implements LayoutRectangleListener {
41

    
42
    private static final Image iLayoutzoomin = PluginServices.getIconTheme()
43
        .get("cursor-layout-navigation-zoom-in-topoint").getImage();
44

    
45
    /**
46
     * Crea un nuevo LayoutRectangleListenerImpl.
47
     * 
48
     * @param s
49
     *            Layout.
50
     */
51
    public LayoutZoomInListenerImpl(LayoutPanel layoutPanel) {
52
        super(layoutPanel);
53
    }
54

    
55
    /**
56
     * @see org.gvsig.fmap.mapcontrol.tools.Listeners.RectangleListener#rectangle(org.gvsig.fmap.mapcontrol.tools.Events.EnvelopeEvent)
57
     */
58
    public void rectangle(EnvelopeEvent event) {
59
        if (event.getEvent().getButton() != MouseEvent.BUTTON3) {
60
            layoutPanel.getLayoutControl().setLastPoint();
61
        }
62

    
63
        if (event.getEvent().getButton() == MouseEvent.BUTTON1) {
64
            Point p1 = layoutPanel.getLayoutControl().getFirstPoint();
65
            Point p2 =
66
                new Point(event.getEvent().getX(), event.getEvent().getY());
67

    
68
            layoutPanel.getLayoutControl().getLayoutZooms().setZoomIn(p1, p2);
69
            layoutPanel.getLayoutControl().refresh();
70
        }
71
    }
72

    
73
    /**
74
     * @see org.gvsig.fmap.mapcontrol.tools.Listeners.ToolListener#getCursor()
75
     */
76
    public Image getImageCursor() {
77
        return iLayoutzoomin;
78
    }
79

    
80
    /**
81
     * @see org.gvsig.fmap.mapcontrol.tools.Listeners.ToolListener#cancelDrawing()
82
     */
83
    public boolean cancelDrawing() {
84
        System.out.println("cancelDrawing del ZoomOutListenerImpl");
85
        return true;
86
    }
87
}