Using MouseListener, MouseMoveListener, and MouseTrackListener : MouseEvent « SWT « Java Tutorial






  1. SWT divides mouse-related activity into three separate listener interfaces.
  2. MouseListener interface receives notification of mouse click events.
  3. MouseTrackListener receives notification when the mouse enters, exits, or hovers over the associated widget.
  4. MouseMoveListener receives notification each time the mouse moves.








17.91.MouseEvent
17.91.1.Using MouseListener, MouseMoveListener, and MouseTrackListener
17.91.2.Using MouseListenerUsing MouseListener
17.91.3.Using MouseMoveListenerUsing MouseMoveListener
17.91.4.extends MouseTrackAdapter
17.91.5.Using MouseTrackListenerUsing MouseTrackListener
17.91.6.Detect mouse enter, exit and hover eventsDetect mouse enter, exit and hover events
17.91.7.Print mouse state and button (down, move, up)Print mouse state and button (down, move, up)
17.91.8.Add Mouse Down, Up and Move eventAdd Mouse Down, Up and Move event
17.91.9.Composite: intercept mouse events (drag a button with the mouse)Composite: intercept mouse events (drag a button with the mouse)