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

Method updateStatusbarValue

ij/src/main/java/ij/ImagePlus.java:2910–2915  ·  view source on GitHub ↗

Redisplays the (x,y) coordinates and pixel value (which may have changed) in the status bar. Called by the Next Slice and Previous Slice commands to update the z-coordinate and pixel value.

()

Source from the content-addressed store, hash-verified

2908 * Previous Slice commands to update the z-coordinate and pixel value.
2909 */
2910 public void updateStatusbarValue() {
2911 ImageCanvas ic = getCanvas();
2912 Point loc = ic!=null?ic.getCursorLoc():null;
2913 if (loc!=null)
2914 mouseMoved(loc.x,loc.y);
2915 }
2916
2917 String getFFTLocation(int x, int y, Calibration cal) {
2918 double center = width/2.0;

Callers 6

runMethod · 0.80
startAnimationMethod · 0.80
nextSliceMethod · 0.80
previousSliceMethod · 0.80
changeSliceMethod · 0.80
mouseWheelMovedMethod · 0.80

Calls 3

getCanvasMethod · 0.95
getCursorLocMethod · 0.95
mouseMovedMethod · 0.95

Tested by

no test coverage detected