a984c43e34e0683cf2c08a157c24a087e9f81121
[fw/altos] / altosui / GrabNDrag.java
1 /*
2  * Copyright © 2010 Anthony Towns <aj@erisian.com.au>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 package AltosUI;
19
20 import java.awt.*;
21 import java.awt.image.*;
22 import java.awt.event.*;
23 import javax.swing.*;
24 import javax.swing.event.MouseInputAdapter;
25 import javax.imageio.ImageIO;
26 import javax.swing.table.*;
27 import java.io.*;
28 import java.util.*;
29 import java.text.*;
30 import org.altusmetrum.AltosLib.*;
31
32 class GrabNDrag extends MouseInputAdapter {
33         private JComponent scroll;
34         private Point startPt = new Point();
35
36         public GrabNDrag(JComponent scroll) {
37                 this.scroll = scroll;
38                 scroll.addMouseMotionListener(this);
39                 scroll.addMouseListener(this);
40                 scroll.setAutoscrolls(true);
41         }
42
43         public void mousePressed(MouseEvent e) {
44                 startPt.setLocation(e.getPoint());
45         }
46         public void mouseDragged(MouseEvent e) {
47                 int xd = e.getX() - startPt.x;
48                 int yd = e.getY() - startPt.y;
49
50                 Rectangle r = scroll.getVisibleRect();
51                 r.x -= xd;
52                 r.y -= yd;
53                 scroll.scrollRectToVisible(r);
54         }
55 }