9bccb808d8e9743222f677a1046b885483bd6072
[fw/altos] / altosuilib / 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 org.altusmetrum.altosuilib_3;
19
20 import java.awt.*;
21 import java.awt.event.*;
22 import javax.swing.*;
23 import javax.swing.event.MouseInputAdapter;
24
25 class GrabNDrag extends MouseInputAdapter {
26         private JComponent scroll;
27         private Point startPt = new Point();
28
29         public GrabNDrag(JComponent scroll) {
30                 this.scroll = scroll;
31                 scroll.addMouseMotionListener(this);
32                 scroll.addMouseListener(this);
33                 scroll.setAutoscrolls(true);
34         }
35
36         public static boolean grab_n_drag(MouseEvent e) {
37                 return e.getModifiers() == InputEvent.BUTTON1_MASK;
38         }
39
40         public void mousePressed(MouseEvent e) {
41                 if (grab_n_drag(e))
42                         startPt.setLocation(e.getPoint());
43         }
44         public void mouseDragged(MouseEvent e) {
45                 if (grab_n_drag(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         }
55 }