public interface MouseListener extends SWTEventListener
After creating an instance of a class that implements
this interface it can be added to a control using the
addMouseListener
method and removed using
the removeMouseListener
method. When a
mouse button is pressed or released, the appropriate method
will be invoked.
MouseAdapter
,
MouseEvent
Modifier and Type | Method and Description |
---|---|
void |
mouseDoubleClick(MouseEvent e)
Sent when a mouse button is pressed twice within the
(operating system specified) double click period.
|
static MouseListener |
mouseDoubleClickAdapter(Consumer<MouseEvent> c)
Static helper method to create a
MouseListener for the
mouseDoubleClick(MouseEvent e) ) method with a lambda expression. |
void |
mouseDown(MouseEvent e)
Sent when a mouse button is pressed.
|
static MouseListener |
mouseDownAdapter(Consumer<MouseEvent> c)
Static helper method to create a
MouseListener for the
mouseDown(MouseEvent e) ) method with a lambda expression. |
void |
mouseUp(MouseEvent e)
Sent when a mouse button is released.
|
static MouseListener |
mouseUpAdapter(Consumer<MouseEvent> c)
Static helper method to create a
MouseListener for the
mouseUp(MouseEvent e) ) method with a lambda expression. |
void mouseDoubleClick(MouseEvent e)
e
- an event containing information about the mouse double clickDisplay.getDoubleClickTime()
void mouseDown(MouseEvent e)
e
- an event containing information about the mouse button pressvoid mouseUp(MouseEvent e)
e
- an event containing information about the mouse button releasestatic MouseListener mouseDoubleClickAdapter(Consumer<MouseEvent> c)
MouseListener
for the
mouseDoubleClick(MouseEvent e)
) method with a lambda expression.c
- the consumer of the eventstatic MouseListener mouseDownAdapter(Consumer<MouseEvent> c)
MouseListener
for the
mouseDown(MouseEvent e)
) method with a lambda expression.c
- the consumer of the eventstatic MouseListener mouseUpAdapter(Consumer<MouseEvent> c)
MouseListener
for the
mouseUp(MouseEvent e)
) method with a lambda expression.c
- the consumer of the event
Copyright (c) 2000, 2018 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.