public class BasicDesktopIconUI.MouseInputHandler extends MouseInputAdapter
BasicDesktopIconUI类中BasicDesktopIconUI 。
| Constructor and Description |
|---|
MouseInputHandler() |
| Modifier and Type | Method and Description |
|---|---|
void |
mouseDragged(MouseEvent e)
在组件上按下鼠标按钮然后拖动时调用。
|
void |
mouseMoved(MouseEvent e)
当鼠标光标移动到组件上但没有按钮被按下时调用。
|
void |
mousePressed(MouseEvent e)
在组件上按下鼠标按钮时调用。
|
void |
mouseReleased(MouseEvent e)
在组件上释放鼠标按钮时调用。
|
void |
moveAndRepaint(JComponent f, int newX, int newY, int newWidth, int newHeight) |
mouseClicked, mouseEntered, mouseExited, mouseWheelMovedclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitmouseClicked, mouseEntered, mouseExitedpublic void mouseReleased(MouseEvent e)
MouseAdapter
mouseReleased在接口
MouseListener
mouseReleased在
MouseAdapter
public void mousePressed(MouseEvent e)
MouseAdapter
mousePressed在界面
MouseListener
mousePressed在
MouseAdapter
public void mouseMoved(MouseEvent e)
MouseAdapter
mouseMoved中的
MouseMotionListener
mouseMoved在
MouseAdapter
public void mouseDragged(MouseEvent e)
MouseAdapter
MOUSE_DRAGGED事件将继续传递到拖动发起的组件,直到鼠标按钮被释放(无论鼠标位置是否在组件的边界内)。
由于与平台相关的拖放实现, MOUSE_DRAGGED事件可能无法在本机拖放操作期间传递。
mouseDragged在界面
MouseMotionListener
mouseDragged在
MouseAdapter
public void moveAndRepaint(JComponent f, int newX, int newY, int newWidth, int newHeight)
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.