public class FoldingPopupManager extends java.lang.Object implements EditorMouseListener, EditorMouseMotionListener
Modifier and Type | Method and Description |
---|---|
static void |
disableForEditor(Editor editor) |
static void |
enableForEditor(Editor editor) |
void |
mouseClicked(EditorMouseEvent e)
Called when a mouse button is clicked over the editor.
|
void |
mouseDragged(EditorMouseEvent e)
Called when the mouse is moved over the editor and a mouse button is pressed.
|
void |
mouseEntered(EditorMouseEvent e)
Called when the mouse enters the editor.
|
void |
mouseExited(EditorMouseEvent e)
Called when the mouse exits the editor.
|
void |
mouseMoved(EditorMouseEvent e)
Called when the mouse is moved over the editor and no mouse buttons are pressed.
|
void |
mousePressed(EditorMouseEvent e)
Called when a mouse button is pressed over the editor.
|
void |
mouseReleased(EditorMouseEvent e)
Called when a mouse button is released over the editor.
|
public static void disableForEditor(Editor editor)
public static void enableForEditor(Editor editor)
public void mouseMoved(EditorMouseEvent e)
EditorMouseMotionListener
mouseMoved
in interface EditorMouseMotionListener
e
- the event containing information about the mouse movement.public void mouseExited(EditorMouseEvent e)
EditorMouseListener
mouseExited
in interface EditorMouseListener
e
- the event containing information about the mouse movement.public void mouseDragged(EditorMouseEvent e)
EditorMouseMotionListener
mouseDragged
in interface EditorMouseMotionListener
e
- the event containing information about the mouse movement.public void mousePressed(EditorMouseEvent e)
EditorMouseListener
mousePressed
in interface EditorMouseListener
e
- the event containing information about the mouse press.public void mouseClicked(EditorMouseEvent e)
EditorMouseListener
mouseClicked
in interface EditorMouseListener
e
- the event containing information about the mouse click.public void mouseReleased(EditorMouseEvent e)
EditorMouseListener
mouseReleased
in interface EditorMouseListener
e
- the event containing information about the mouse release.public void mouseEntered(EditorMouseEvent e)
EditorMouseListener
mouseEntered
in interface EditorMouseListener
e
- the event containing information about the mouse movement.