Uses of Interface
org.eclipse.swt.events.MouseListener
-
Packages that use MouseListener Package Description org.eclipse.debug.ui.actions Provides a set of actions related to running and debugging applications.org.eclipse.jface.text Provides a framework for creating and manipulating text documents.org.eclipse.jface.text.hyperlink Provides support for detecting and displaying hyperlinks inISourceViewer
s.org.eclipse.jface.text.source Provides a framework for connecting document regions with annotations and for displaying those.org.eclipse.swt.events SWT typed listener support.org.eclipse.swt.widgets SWT widget public API classes.org.eclipse.ui.console Application programming interfaces for interaction with the Eclipse console.org.eclipse.ui.texteditor Provides a framework for text editors obeying to the desktop rules. -
-
Uses of MouseListener in org.eclipse.debug.ui.actions
Classes in org.eclipse.debug.ui.actions that implement MouseListener Modifier and Type Class Description class
RulerEnableDisableBreakpointActionDelegate
Toggles enablement of a breakpoint in a vertical ruler.class
RulerRunToLineActionDelegate
A run to line action that can be contributed to a an editor or view.class
RulerToggleBreakpointActionDelegate
Toggles a breakpoint when ruler is double-clicked. -
Uses of MouseListener in org.eclipse.jface.text
Classes in org.eclipse.jface.text that implement MouseListener Modifier and Type Class Description class
PaintManager
Manages theIPainter
object registered with anITextViewer
. -
Uses of MouseListener in org.eclipse.jface.text.hyperlink
Classes in org.eclipse.jface.text.hyperlink that implement MouseListener Modifier and Type Class Description class
HyperlinkManager
Default implementation of a hyperlink manager. -
Uses of MouseListener in org.eclipse.jface.text.source
Classes in org.eclipse.jface.text.source that implement MouseListener Modifier and Type Class Description protected class
AnnotationBarHoverManager.Closer
Deprecated.As of 3.4, no longer used as closer from super class is usedMethods in org.eclipse.jface.text.source with parameters of type MouseListener Modifier and Type Method Description void
VerticalRuler. addMouseListener(MouseListener listener)
Deprecated.will be removedvoid
VerticalRuler. removeMouseListener(MouseListener listener)
Deprecated.will be removed -
Uses of MouseListener in org.eclipse.swt.events
Classes in org.eclipse.swt.events that implement MouseListener Modifier and Type Class Description class
MouseAdapter
This adapter class provides default implementations for the methods described by theMouseListener
interface.Methods in org.eclipse.swt.events that return MouseListener Modifier and Type Method Description static MouseListener
MouseListener. mouseDoubleClickAdapter(Consumer<MouseEvent> c)
Static helper method to create aMouseListener
for themouseDoubleClick(MouseEvent e)
) method with a lambda expression.static MouseListener
MouseListener. mouseDownAdapter(Consumer<MouseEvent> c)
Static helper method to create aMouseListener
for themouseDown(MouseEvent e)
) method with a lambda expression.static MouseListener
MouseListener. mouseUpAdapter(Consumer<MouseEvent> c)
Static helper method to create aMouseListener
for themouseUp(MouseEvent e)
) method with a lambda expression. -
Uses of MouseListener in org.eclipse.swt.widgets
Methods in org.eclipse.swt.widgets with parameters of type MouseListener Modifier and Type Method Description void
Control. addMouseListener(MouseListener listener)
Adds the listener to the collection of listeners who will be notified when mouse buttons are pressed and released, by sending it one of the messages defined in theMouseListener
interface.void
Control. removeMouseListener(MouseListener listener)
Removes the listener from the collection of listeners who will be notified when mouse buttons are pressed and released. -
Uses of MouseListener in org.eclipse.ui.console
Classes in org.eclipse.ui.console that implement MouseListener Modifier and Type Class Description class
TextConsoleViewer
Default viewer used to display aTextConsole
. -
Uses of MouseListener in org.eclipse.ui.texteditor
Classes in org.eclipse.ui.texteditor that implement MouseListener Modifier and Type Class Description class
AbstractRulerActionDelegate
This class serves as an adapter for actions contributed to the vertical ruler's context menu.class
BookmarkRulerAction
Adapter for the managing bookmark action.class
SelectRulerAction
Adapter for the select marker action.class
TaskRulerAction
Adapter for the marker ruler action creating/removing tasks.Methods in org.eclipse.ui.texteditor that return MouseListener Modifier and Type Method Description protected MouseListener
AbstractTextEditor. getRulerMouseListener()
Creates and returns the listener on this editor's vertical ruler.
-