MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / mouseExited

Method mouseExited

ij/src/main/java/ij/gui/ImageCanvas.java:1381–1392  ·  view source on GitHub ↗
(MouseEvent e)

Source from the content-addressed store, hash-verified

1379 }
1380
1381 public void mouseExited(MouseEvent e) {
1382 PlugInTool tool = Toolbar.getPlugInTool();
1383 if (tool!=null) {
1384 tool.mouseExited(imp, e);
1385 if (e.isConsumed()) return;
1386 }
1387 ImageWindow win = imp.getWindow();
1388 if (win!=null)
1389 setCursor(defaultCursor);
1390 IJ.showStatus("");
1391 mouseExited = true;
1392 }
1393
1394 public void mouseDragged(MouseEvent e) {
1395 int x = e.getX();

Callers 1

mouseExitedMethod · 0.95

Calls 5

getPlugInToolMethod · 0.95
mouseExitedMethod · 0.95
setCursorMethod · 0.95
showStatusMethod · 0.95
getWindowMethod · 0.45

Tested by

no test coverage detected