|
Day 13: Handling Mouse ClicksEVENT HANDLINGLike all of the applets in the book, the Spots and Lines projects use Java 1.0 techniques so they can run on the widest possible audience of browsers. When you compile these programs, "deprecation warning" messages will be displayed because better techniques are available in Java 2 to handle user events such as mouse clicks. The programs in the book will compile and run successfully, but for those who want an early introduction to Java 2 event-handling, this tutorial describes how the Spots and Lines examples can be rewritten using the new techniques.
The preferred way to handle mouse events in Java is to use an event listener, a technique introduced fully in Day 21, "Handling User Events with Swing." Event listeners are interfaces, groups of related methods that indicate a class has a certain kind of behavior. (You worked with interfaces on Day 10, "Adding Images, Animation, and Sound."). All of the listener interfaces are part of java.awt.event, the event-handling package. Mouse input is received by two listener interfaces: MouseListener, which handles mouse clicks and two kinds of mouse movement, and MouseMotionListener, which handles all other kinds of mouse movement. HANDLING MOUSE CLICKSThe MouseListener interface includes six methods for receiving mouse input:
Each of these methods has a single argument: MouseEvent, another class in the java.awt.event package. This class includes several methods that are used to find out more about what the user did with the mouse:
As you may recall from Day 10, a Java class makes use of an interface by using the implements keyword in the class declaration, as in the following example:
When a class implements an interface, it must include all methods of that interface, even if you don't need some of them. If you are rewriting the Spots applet, the only mouse event you are interested in is mouseClicked(MouseEvent), because the applet waits for a mouse click and draws a spot at the position of that click. The following mouseClicked() method draws a spot at the position of a mouse click until the number of spots equals the value of the MAXSPOTS variable:
As you can see, this method isn't much different from the mouseDown() method in the Spots example. You receive all information about the mouse-click in the MouseEvent argument, and then call getX() and getY() to get the (x,y) position of the click. The other methods of the MouseListener interface can be added as do-nothing methods such as the following:
When you are handling user events by using a listener class like MouseListener, the user interface component that receives the events must be registered as a listener by calling the component's addMouseListener(Object) method. The Object used as an argument is the component that implements the MouseListener interface. If you use the this keyword as this argument, it refers to the current class. For example, the Spots applet is a component that receives mouse events. To register it as a listener, the following statement can be used in the applet's init() method:
The NewSpots.java file contains the source code for an applet that uses these techniques in place of the ones described in the book. NewSpots.html is a simple Web page that contains the applet. Load this page into appletviewer to see that it functions exactly like the Spots applet. HANDLING MOUSE MOTIONThe MouseListener interface handles two kinds of mouse motion: the moment a mouse is first moved over a user interface component and the moment it is first moved off that component. These events are handled by the mouseEntered() and mouseExited() methods, respectively. In the NewSpots example, the mouseEntered() method is called when you first move the mouse cursor over the applet window. When you move the cursor off the applet window, the mouseExited() method is called. (Neither of these methods does anything in NewSpots, so nothing happens as a result of these events.) The MouseMotionListener interface includes two methods for other kinds of mouse movement:
The NewLines.java file contains the source code for an applet that implements both the MouseListener and MouseMotionListener interfaces to recreate the Lines example from the book. NewLines.html is a simple Web page that contains the applet. Load this page into appletviewer to see that it functions exactly like the Lines applet. Use the following links to see Sun's official documentation for these classes and interfaces: |