Java событие при наведении мыши

Java событие при наведении мыши

Interface MouseListener

  • All Superinterfaces: EventListener All Known Subinterfaces: MouseInputListener All Known Implementing Classes: AWTEventMulticaster , BasicButtonListener , BasicComboPopup.InvocationMouseHandler , BasicComboPopup.ListMouseHandler , BasicDesktopIconUI.MouseInputHandler , BasicFileChooserUI.DoubleClickListener , BasicInternalFrameUI.BorderListener , BasicInternalFrameUI.GlassPaneDispatcher , BasicListUI.MouseInputHandler , BasicMenuItemUI.MouseInputHandler , BasicMenuUI.MouseInputHandler , BasicScrollBarUI.ArrowButtonListener , BasicScrollBarUI.TrackListener , BasicSliderUI.TrackListener , BasicSplitPaneDivider.MouseHandler , BasicTabbedPaneUI.MouseHandler , BasicTableHeaderUI.MouseInputHandler , BasicTableUI.MouseInputHandler , BasicTextUI.BasicCaret , BasicToolBarUI.DockingListener , BasicTreeUI.MouseHandler , BasicTreeUI.MouseInputHandler , DefaultCaret , FormView.MouseEventListener , HTMLEditorKit.LinkController , MetalFileChooserUI.SingleClickListener , MetalToolBarUI.MetalDockingListener , MouseAdapter , MouseDragGestureRecognizer , MouseInputAdapter , ToolTipManager

The listener interface for receiving «interesting» mouse events (press, release, click, enter, and exit) on a component. (To track mouse moves and mouse drags, use the MouseMotionListener .) The class that is interested in processing a mouse event either implements this interface (and all the methods it contains) or extends the abstract MouseAdapter class (overriding only the methods of interest). The listener object created from that class is then registered with a component using the component’s addMouseListener method. A mouse event is generated when the mouse is pressed, released clicked (pressed and released). A mouse event is also generated when the mouse cursor enters or leaves a component. When a mouse event occurs, the relevant method in the listener object is invoked, and the MouseEvent is passed to it.

Method Summary

Method Detail

mouseClicked

mousePressed

mouseReleased

mouseEntered

mouseExited

Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2023, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.

Источник

How to Write a Mouse Listener

Mouse events notify when the user uses the mouse (or similar input device) to interact with a component. Mouse events occur when the cursor enters or exits a component’s onscreen area and when the user presses or releases one of the mouse buttons.

Tracking the cursor’s motion involves significantly more system overhead than tracking other mouse events. That is why mouse-motion events are separated into Mouse Motion listener type (see How to Write a Mouse Motion Listener).

Читайте также:  Html colours light blue

To track mouse wheel events, you can register a mouse-wheel listener. See How to Write a Mouse Wheel Listener for more information.

If an application requires the detection of both mouse events and mouse-motion events, use the MouseInputAdapter class. This class implements the MouseInputListener , a convenient interface that implements the MouseListener and MouseMotionListener interfaces. However, the MouseInputListener interface does not implement the MouseWheelListener interface.

Alternatively, use the corresponding AWT MouseAdapter class, which implements the MouseListener , MouseMotionListener , and MouseWheelListener interfaces.

The following example shows a mouse listener. At the top of the window is a blank area (implemented by a class named BlankArea ). The mouse listener listens for events both on the BlankArea and on its container, an instance of MouseEventDemo . Each time a mouse event occurs, a descriptive message is displayed under the blank area. By moving the cursor on top of the blank area and occasionally pressing mouse buttons, you can fire mouse events.

MouseEventDemo screen shot

Try this:

  1. Click the Launch button to run MouseEventDemo using Java™ Web Start (download JDK 7 or later). Alternatively, to compile and run the example yourself, consult the example index.
  2. Move the cursor into the yellow rectangle at the top of the window.
    You will see one or more mouse-entered events.
  3. Press and hold the left mouse button without moving the mouse.
    You will see a mouse-pressed event. You might see some extra mouse events, such as mouse-exited and then mouse-entered.
  4. Release the mouse button.
    You will see a mouse-released event. If you did not move the mouse, a mouse-clicked event will follow.
  5. Press and hold the mouse button again, and then drag the mouse so that the cursor ends up outside the window. Release the mouse button.
    You will see a mouse-pressed event, followed by a mouse-exited event, followed by a mouse-released event. You are not notified of the cursor’s motion. To get mouse-motion events, you need to implement a mouse-motion listener.

You can find the demo’s code in MouseEventDemo.java and BlankArea.java . Here is the demo’s mouse event handling code:

public class MouseEventDemo . implements MouseListener < //where initialization occurs: //Register for mouse events on blankArea and the panel. blankArea.addMouseListener(this); addMouseListener(this); . public void mousePressed(MouseEvent e) < saySomething("Mouse pressed; # of clicks: " + e.getClickCount(), e); >public void mouseReleased(MouseEvent e) < saySomething("Mouse released; # of clicks: " + e.getClickCount(), e); >public void mouseEntered(MouseEvent e) < saySomething("Mouse entered", e); >public void mouseExited(MouseEvent e) < saySomething("Mouse exited", e); >public void mouseClicked(MouseEvent e) < saySomething("Mouse clicked (# of clicks: " + e.getClickCount() + ")", e); >void saySomething(String eventDescription, MouseEvent e) < textArea.append(eventDescription + " detected on " + e.getComponent().getClass().getName() + "." + newline); >>

The Mouse Listener API

Method Purpose
mouseClicked(MouseEvent) Called just after the user clicks the listened-to component.
mouseEntered(MouseEvent) Called just after the cursor enters the bounds of the listened-to component.
mouseExited(MouseEvent) Called just after the cursor exits the bounds of the listened-to component.
mousePressed(MouseEvent) Called just after the user presses a mouse button while the cursor is over the listened-to component.
mouseReleased(MouseEvent) Called just after the user releases a mouse button after a mouse press over the listened-to component.
Читайте также:  Наивный байесовский классификатор python пример

The MouseAdapter class (the AWT adapter class) is abstract. All its methods have an empty body. So a developer can define methods for events specific to the application. You can also use the MouseInputAdapter class, which has all the methods available from MouseListener and MouseMotionListener .

Method Purpose
int getClickCount() Returns the number of quick, consecutive clicks the user has made (including this event). For example, returns 2 for a double click.
int getX()
int getY()
Point getPoint()
Return the (x,y) position at which the event occurred, relative to the component that fired the event.
int getXOnScreen()
int getYOnScreen()
int getLocationOnScreen()
Return the absolute (x,y) position of the event. These coordinates are relative to the virtual coordinate system for the multi-screen environment. Otherwise, these coordinates are relative to the coordinate system associated with the Component’s Graphics Configuration.
int getButton() Returns which mouse button, if any, has a changed state. One of the following constants is returned: NOBUTTON , BUTTON1 , BUTTON2 , or BUTTON3 .
boolean isPopupTrigger() Returns true if the mouse event should cause a popup menu to appear. Because popup triggers are platform dependent, if your program uses popup menus, you should call isPopupTrigger for all mouse-pressed and mouse-released events fired by components over which the popup can appear. See Bringing Up a Popup Menu for more information about popup menus.
String getMouseModifiersText(int) Returns a String describing the modifier keys and mouse buttons that were active during the event, such as «Shift», or «Ctrl+Shift». These strings can be localized using the awt.properties file.

The MouseEvent class inherits many useful methods from InputEvent and a couple handy methods from the ComponentEvent and AWTEvent classes.

(mouseEvent.getModifiers() & InputEvent.BUTTON3_MASK) == InputEvent.BUTTON3_MASK

if (event.getModifiersEx() & (BUTTON1_DOWN_MASK | BUTTON2_DOWN_MASK | BUTTON3_DOWN_MASK) == BUTTON1_DOWN_MASK)

Читайте также:  New string object in java

The MouseInfo class provides methods to obtain information about the mouse pointer location at any time while an application runs.

Method Purpose
getPointerInfo() Returns a PointerInfo instance that represents the current location of the mouse pointer.
getNumberOfButtons() Returns the number of buttons on the mouse or -1 , if a system does not support a mouse.

Examples That Use Mouse Listeners

The following table lists the examples that use mouse listeners.

Example Where Described Notes
MouseEventDemo This section Reports all mouse events that occur within a blank panel to demonstrate the circumstances under which mouse events are fired.
GlassPaneDemo How to Use Root Panes Uses a subclass of MouseInputAdapter to listen to mouse events and mouse-motion events on the root pane’s glass pane. Re-dispatches the events to underlying components.
TableSortDemo How to Use Tables Listens to mouse events on a table header. Sorts data in the selected column.
PopupMenuDemo How to Use Menus Displays a popup menu in response to mouse clicks.
TrackFocusDemo How to Use the Focus Subsystem The custom component, Picture , implements a mouse listener that requests the focus when a user clicks on the component.

Previous page: How to Write a List Selection Listener
Next page: How to Write a Mouse-Motion Listener

Источник

Java событие при наведении мыши

Interface MouseListener

  • All Superinterfaces: EventListener All Known Subinterfaces: MouseInputListener All Known Implementing Classes: AWTEventMulticaster, BasicButtonListener, BasicComboPopup.InvocationMouseHandler, BasicComboPopup.ListMouseHandler, BasicDesktopIconUI.MouseInputHandler, BasicFileChooserUI.DoubleClickListener, BasicInternalFrameUI.BorderListener, BasicInternalFrameUI.GlassPaneDispatcher, BasicListUI.MouseInputHandler, BasicMenuItemUI.MouseInputHandler, BasicMenuUI.MouseInputHandler, BasicScrollBarUI.ArrowButtonListener, BasicScrollBarUI.TrackListener, BasicSliderUI.TrackListener, BasicSplitPaneDivider.MouseHandler, BasicTabbedPaneUI.MouseHandler, BasicTableHeaderUI.MouseInputHandler, BasicTableUI.MouseInputHandler, BasicTextUI.BasicCaret, BasicToolBarUI.DockingListener, BasicTreeUI.MouseHandler, BasicTreeUI.MouseInputHandler, DefaultCaret, FormView.MouseEventListener, HTMLEditorKit.LinkController, MetalFileChooserUI.SingleClickListener, MetalToolBarUI.MetalDockingListener, MouseAdapter, MouseDragGestureRecognizer, MouseInputAdapter, ToolTipManager

The listener interface for receiving «interesting» mouse events (press, release, click, enter, and exit) on a component. (To track mouse moves and mouse drags, use the MouseMotionListener .) The class that is interested in processing a mouse event either implements this interface (and all the methods it contains) or extends the abstract MouseAdapter class (overriding only the methods of interest). The listener object created from that class is then registered with a component using the component’s addMouseListener method. A mouse event is generated when the mouse is pressed, released clicked (pressed and released). A mouse event is also generated when the mouse cursor enters or leaves a component. When a mouse event occurs, the relevant method in the listener object is invoked, and the MouseEvent is passed to it.

Method Summary

Method Detail

mouseClicked

mousePressed

mouseReleased

Источник

Оцените статью