altosui: Make flight log downloading handle 'Connecting...' dialog
[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
31 class GrabNDrag extends MouseInputAdapter {
32         private JComponent scroll;
33         private Point startPt = new Point();
34
35         public GrabNDrag(JComponent scroll) {
36                 this.scroll = scroll;
37                 scroll.addMouseMotionListener(this);
38                 scroll.addMouseListener(this);
39                 scroll.setAutoscrolls(true);
40         }
41
42         public void mousePressed(MouseEvent e) {
43                 startPt.setLocation(e.getPoint());
44         }
45         public void mouseDragged(MouseEvent e) {
46                 int xd = e.getX() - startPt.x;
47                 int yd = e.getY() - startPt.y;
48
49                 Rectangle r = scroll.getVisibleRect();
50                 r.x -= xd;
51                 r.y -= yd;
52                 scroll.scrollRectToVisible(r);
53         }
54 }