Uses of Class
com.github.kwhat.jnativehook.mouse.NativeMouseEvent
-
Packages that use NativeMouseEvent Package Description com.github.kwhat.jnativehook.example ExecutorService implementations for native event dispatch.com.github.kwhat.jnativehook.mouse Classes used for native mouse events. -
-
Uses of NativeMouseEvent in com.github.kwhat.jnativehook.example
Methods in com.github.kwhat.jnativehook.example with parameters of type NativeMouseEvent Modifier and Type Method Description void
NativeHookDemo. nativeMouseClicked(NativeMouseEvent e)
void
NativeHookDemo. nativeMouseDragged(NativeMouseEvent e)
void
NativeHookDemo. nativeMouseMoved(NativeMouseEvent e)
void
NativeHookDemo. nativeMousePressed(NativeMouseEvent e)
void
NativeHookDemo. nativeMouseReleased(NativeMouseEvent e)
-
Uses of NativeMouseEvent in com.github.kwhat.jnativehook.mouse
Subclasses of NativeMouseEvent in com.github.kwhat.jnativehook.mouse Modifier and Type Class Description class
NativeMouseWheelEvent
An event which indicates that the mouse wheel was rotated on the system.Methods in com.github.kwhat.jnativehook.mouse with parameters of type NativeMouseEvent Modifier and Type Method Description protected MouseEvent
SwingMouseAdapter. getJavaKeyEvent(NativeMouseEvent nativeEvent)
default void
NativeMouseListener. nativeMouseClicked(NativeMouseEvent nativeEvent)
Invoked when a mouse button has been clicked (pressed and released) without being moved.void
SwingMouseAdapter. nativeMouseClicked(NativeMouseEvent nativeEvent)
default void
NativeMouseMotionListener. nativeMouseDragged(NativeMouseEvent nativeEvent)
Invoked when the mouse has been moved while a button is depressed.default void
NativeMouseMotionListener. nativeMouseMoved(NativeMouseEvent nativeEvent)
Invoked when the mouse has been moved.default void
NativeMouseListener. nativeMousePressed(NativeMouseEvent nativeEvent)
Invoked when a mouse button has been pressedvoid
SwingMouseAdapter. nativeMousePressed(NativeMouseEvent nativeEvent)
default void
NativeMouseListener. nativeMouseReleased(NativeMouseEvent nativeEvent)
Invoked when a mouse button has been releasedvoid
SwingMouseAdapter. nativeMouseReleased(NativeMouseEvent nativeEvent)
-