javax.swing.plaf.basic
protected class: BasicMenuUI.MouseInputHandler [javadoc |
source]
java.lang.Object
javax.swing.plaf.basic.BasicMenuUI$MouseInputHandler
All Implemented Interfaces:
MouseInputListener
Instantiated and used by a menu item to handle the current menu selection
from mouse events. A MouseInputHandler processes and forwards all mouse events
to a shared instance of the MenuSelectionManager.
This class is protected so that it can be subclassed by other look and
feels to implement their own mouse handling behavior. All overridden
methods should call the parent methods so that the menu selection
is correct.
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.swing.plaf.basic.BasicMenuUI$MouseInputHandler Detail: |
public void mouseClicked(MouseEvent e) {
getHandler().mouseClicked(e);
}
|
public void mouseDragged(MouseEvent e) {
getHandler().mouseDragged(e);
}
Invoked when a mouse button is pressed on the menu and then dragged.
Delegates the mouse event to the MenuSelectionManager. |
public void mouseEntered(MouseEvent e) {
getHandler().mouseEntered(e);
}
Invoked when the cursor enters the menu. This method sets the selected
path for the MenuSelectionManager and handles the case
in which a menu item is used to pop up an additional menu, as in a
hierarchical menu system. |
public void mouseExited(MouseEvent e) {
getHandler().mouseExited(e);
}
|
public void mouseMoved(MouseEvent e) {
getHandler().mouseMoved(e);
}
|
public void mousePressed(MouseEvent e) {
getHandler().mousePressed(e);
}
Invoked when the mouse has been clicked on the menu. This
method clears or sets the selection path of the
MenuSelectionManager. |
public void mouseReleased(MouseEvent e) {
getHandler().mouseReleased(e);
}
Invoked when the mouse has been released on the menu. Delegates the
mouse event to the MenuSelectionManager. |