Source code: jpicedt/graphic/event/PEMouseInputListener.java
1 /*
2 PEMouseListener.java - January 3, 2002 - jPicEdt 1.3.2, a picture editor for LaTeX.
3 Copyright (C) 1999-2002 Sylvain Reynal
4
5 Département de Physique
6 Ecole Nationale Supérieure de l'Electronique et de ses Applications (ENSEA)
7 6, avenue du Ponceau
8 F-95014 CERGY CEDEX
9
10 Tel : +33 130 736 245
11 Fax : +33 130 736 667
12 e-mail : reynal@ensea.fr
13 jPicEdt web page : http://www.jpicedt.org
14
15 This program is free software; you can redistribute it and/or
16 modify it under the terms of the GNU General Public License
17 as published by the Free Software Foundation; either version 2
18 of the License, or any later version.
19
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 */
29
30 package jpicedt.graphic.event;
31
32 import java.util.*;
33
34 /**
35 * The listener for receiving mouse and mouse motion events. In comparison with MouseInputListener,
36 * the benefit of using this listener is that MouseEvent's are transformed to PEMouseEvent's, which
37 * contains enhanced data e.g. scaled mouse coordinates.
38 * @since jPicEdt 1.3.2
39 * @author Sylvain Reynal
40 * @see jpicedt.graphic.event.PEMouseEvent
41 */
42 public interface PEMouseInputListener extends EventListener {
43
44 public void mousePressed(PEMouseEvent e);
45 public void mouseReleased(PEMouseEvent e);
46 public void mouseClicked(PEMouseEvent e);
47 public void mouseMoved(PEMouseEvent e);
48 public void mouseDragged(PEMouseEvent e);
49 public void mouseEntered(PEMouseEvent e);
50 public void mouseExited(PEMouseEvent e);
51
52 } // interface
53