2 * Copyright © 2010 Anthony Towns <aj@erisian.com.au>
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.
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.
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.
21 import java.awt.image.*;
22 import java.awt.event.*;
24 import javax.swing.event.MouseInputAdapter;
25 import javax.imageio.ImageIO;
26 import javax.swing.table.*;
30 import org.altusmetrum.AltosLib.*;
32 class GrabNDrag extends MouseInputAdapter {
33 private JComponent scroll;
34 private Point startPt = new Point();
36 public GrabNDrag(JComponent scroll) {
38 scroll.addMouseMotionListener(this);
39 scroll.addMouseListener(this);
40 scroll.setAutoscrolls(true);
43 public void mousePressed(MouseEvent e) {
44 startPt.setLocation(e.getPoint());
46 public void mouseDragged(MouseEvent e) {
47 int xd = e.getX() - startPt.x;
48 int yd = e.getY() - startPt.y;
50 Rectangle r = scroll.getVisibleRect();
53 scroll.scrollRectToVisible(r);