java.lang.Object
java.awt.event.MouseAdapter
javax.swing.event.MouseInputAdapter
javax.swing.plaf.basic.BasicDesktopIconUI.MouseInputHandler
- All Implemented Interfaces:
- MouseListener,- MouseMotionListener,- MouseWheelListener,- EventListener,- MouseInputListener
- Enclosing class:
- BasicDesktopIconUI
Listens for mouse movements and acts on them.
 This class should be treated as a "protected" inner class.
 Instantiate it only within subclasses of 
BasicDesktopIconUI.- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidInvoked when a mouse button is pressed on a component and then dragged.voidInvoked when the mouse cursor has been moved onto a component but no buttons have been pushed.voidInvoked when a mouse button has been pressed on a component.voidInvoked when a mouse button has been released on a component.voidmoveAndRepaint(JComponent f, int newX, int newY, int newWidth, int newHeight) Moves and repaints a componentf.Methods declared in class java.awt.event.MouseAdaptermouseClicked, mouseDragged, mouseEntered, mouseExited, mouseMoved, mousePressed, mouseReleased, mouseWheelMovedMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface java.awt.event.MouseListenermouseClicked, mouseEntered, mouseExited
- 
Constructor Details- 
MouseInputHandlerpublic MouseInputHandler()Constructs aMouseInputHandler.
 
- 
- 
Method Details- 
mouseReleasedDescription copied from interface:MouseListenerInvoked when a mouse button has been released on a component.- Parameters:
- e- the event to be processed
 
- 
mousePressedDescription copied from interface:MouseListenerInvoked when a mouse button has been pressed on a component.- Parameters:
- e- the event to be processed
 
- 
mouseMovedDescription copied from class:MouseAdapterInvoked when the mouse cursor has been moved onto a component but no buttons have been pushed.- Specified by:
- mouseMovedin interface- MouseMotionListener
- Overrides:
- mouseMovedin class- MouseAdapter
- Parameters:
- e- the event to be processed
 
- 
mouseDraggedDescription copied from class:MouseAdapterInvoked when a mouse button is pressed on a component and then dragged.MOUSE_DRAGGEDevents will continue to be delivered to the component where the drag originated until the mouse button is released (regardless of whether the mouse position is within the bounds of the component).Due to platform-dependent Drag&Drop implementations, MOUSE_DRAGGEDevents may not be delivered during a native Drag&Drop operation.- Specified by:
- mouseDraggedin interface- MouseMotionListener
- Overrides:
- mouseDraggedin class- MouseAdapter
- Parameters:
- e- the event to be processed
 
- 
moveAndRepaintMoves and repaints a componentf.- Parameters:
- f- a component
- newX- a new X coordinate
- newY- a new Y coordinate
- newWidth- a new width
- newHeight- a new height
 
 
-