jruby/docs BETA
org.eclipse.swt.events 56
C ArmEvent
I ArmListener
C ControlAdapter
C ControlEvent
I ControlListener
C DisposeEvent
I DisposeListener
C DragDetectEvent
I DragDetectListener
C ExpandAdapter
C ExpandEvent
I ExpandListener
C FocusAdapter
C FocusEvent
I FocusListener
C GestureEvent
I GestureListener
C HelpEvent
I HelpListener
C KeyAdapter
C KeyEvent
I KeyListener
C MenuAdapter
C MenuDetectEvent
I MenuDetectListener
C MenuEvent
I MenuListener
C ModifyEvent
I ModifyListener
C MouseAdapter
C MouseEvent
I MouseListener
I MouseMoveListener
C MouseTrackAdapter
I MouseTrackListener
I MouseWheelListener
C PaintEvent
I PaintListener
C SegmentEvent
I SegmentListener
C SelectionAdapter
C SelectionEvent
I SelectionListener
C ShellAdapter
C ShellEvent
I ShellListener
C TouchEvent
I TouchListener
C TraverseEvent
I TraverseListener
C TreeAdapter
C TreeEvent
I TreeListener
C TypedEvent
C VerifyEvent
I VerifyListener
MouseAdapter — members 4
C new()
C mouse_double_click(e)
C mouse_down(e)
C mouse_up(e)

org.eclipse.swt.events.MouseAdapter

class abstract implements MouseListener 4 members

This adapter class provides default implementations for the methods described by the MouseListener interface.

Classes that wish to deal with MouseEvents which occur as mouse buttons are pressed and released can extend this class and override only the methods which they are interested in.

Constructors

new

new ( )
Java: <init>()

Instance Methods

mouse_double_click

mouse_double_click ( MouseEvent e )
Java: mouseDoubleClick(org.eclipse.swt.events.MouseEvent e)

Sent when a mouse button is pressed twice within the (operating system specified) double click period. The default behavior is to do nothing.

nametypedescription
eorg.eclipse.swt.events.MouseEventan event containing information about the mouse double click

mouse_down

mouse_down ( MouseEvent e )
Java: mouseDown(org.eclipse.swt.events.MouseEvent e)

Sent when a mouse button is pressed. The default behavior is to do nothing.

nametypedescription
eorg.eclipse.swt.events.MouseEventan event containing information about the mouse button press

mouse_up

mouse_up ( MouseEvent e )
Java: mouseUp(org.eclipse.swt.events.MouseEvent e)

Sent when a mouse button is released. The default behavior is to do nothing.

nametypedescription
eorg.eclipse.swt.events.MouseEventan event containing information about the mouse button release