package ij.gui;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.awt.datatransfer.*;
import java.util.*;
import ij.*;
import ij.process.*;
import ij.util.*;
import ij.text.TextWindow;
import ij.plugin.filter.Analyzer;
import ij.plugin.filter.PlugInFilterRunner;
import ij.measure.*;
import ij.io.SaveDialog;
public class PlotWindow extends ImageWindow implements ActionListener, ItemListener,
ClipboardOwner, ImageListener, RoiListener, Runnable {
public static final int CIRCLE = Plot.CIRCLE;
public static final int X = Plot.X;
public static final int BOX = Plot.BOX;
public static final int TRIANGLE = Plot.TRIANGLE;
public static final int CROSS = Plot.CROSS;
public static final int LINE = Plot.LINE;
public static boolean saveXValues = true;
public static boolean autoClose;
public static boolean listValues;
public static boolean interpolate;
private static final int WIDTH = 530;
private static final int HEIGHT = 300;
private static final int FONT_SIZE = 12;
public static int plotWidth = WIDTH;
public static int plotHeight = HEIGHT;
public static int fontSize = FONT_SIZE;
public static boolean noGridLines;
public static boolean noTicks;
private static final String PREFS_WIDTH = "pp.width";
private static final String PREFS_HEIGHT = "pp.height";
private static final String PREFS_FONT_SIZE = "pp.fontsize";
private static final String OPTIONS = "pp.options";
private static final int SAVE_X_VALUES = 1;
private static final int AUTO_CLOSE = 2;
private static final int LIST_VALUES = 4;
private static final int INTERPOLATE = 8;
private static final int NO_GRID_LINES = 16;
private static final int NO_TICKS = 32;
private static String moreButtonLabel = "More "+'\u00bb';
boolean wasActivated;
private Button list, save, more, live;
private PopupMenu popupMenu;
private MenuItem[] menuItems;
private Label coordinates;
private static String defaultDirectory = null;
private static int options;
private int defaultDigits = -1;
private int markSize = 5;
private static Plot staticPlot;
private Plot plot;
private String blankLabel = " ";
private PlotMaker plotMaker;
private ImagePlus srcImp; private Thread bgThread; private boolean doUpdate;
private Roi[] rangeArrowRois; private boolean rangeArrowsVisible;
private int activeRangeArrow = -1;
static {
options = Prefs.getInt(OPTIONS, SAVE_X_VALUES);
autoClose = (options&AUTO_CLOSE)!=0;
listValues = (options&LIST_VALUES)!=0;
plotWidth = Prefs.getInt(PREFS_WIDTH, WIDTH);
plotHeight = Prefs.getInt(PREFS_HEIGHT, HEIGHT);
fontSize = Prefs.getInt(PREFS_FONT_SIZE, FONT_SIZE);
interpolate = (options&INTERPOLATE)==0; noGridLines = (options&NO_GRID_LINES)!=0;
noTicks = (options&NO_TICKS)!=0;
}
public PlotWindow(String title, String xLabel, String yLabel, float[] xValues, float[] yValues) {
super(createImage(title, xLabel, yLabel, xValues, yValues));
plot = staticPlot;
((PlotCanvas)getCanvas()).setPlot(plot);
}
public PlotWindow(String title, String xLabel, String yLabel, double[] xValues, double[] yValues) {
this(title, xLabel, yLabel, Tools.toFloat(xValues), Tools.toFloat(yValues));
}
public PlotWindow(ImagePlus imp, Plot plot) {
super(imp);
((PlotCanvas)getCanvas()).setPlot(plot);
this.plot = plot;
draw();
}
PlotWindow(Plot plot) {
super(plot.getImagePlus());
((PlotCanvas)getCanvas()).setPlot(plot);
this.plot = plot;
draw();
}
static ImagePlus createImage(String title, String xLabel, String yLabel, float[] xValues, float[] yValues) {
staticPlot = new Plot(title, xLabel, yLabel, xValues, yValues);
return new ImagePlus(title, staticPlot.getBlankProcessor());
}
public void setLimits(double xMin, double xMax, double yMin, double yMax) {
plot.setLimits(xMin, xMax, yMin, yMax);
}
public void addPoints(float[] x, float[] y, int shape) {
plot.addPoints(x, y, shape);
}
public void addPoints(double[] x, double[] y, int shape) {
addPoints(Tools.toFloat(x), Tools.toFloat(y), shape);
}
public void addErrorBars(float[] errorBars) {
plot.addErrorBars(errorBars);
}
public void addLabel(double x, double y, String label) {
plot.addLabel(x, y, label);
}
public void setColor(Color c) {
plot.setColor(c);
}
public void setLineWidth(int lineWidth) {
plot.setLineWidth(lineWidth);
}
public void changeFont(Font font) {
plot.changeFont(font);
}
public void draw() {
Panel bottomPanel = new Panel();
int hgap = IJ.isMacOSX()?1:5;
list = new Button(" List ");
list.addActionListener(this);
bottomPanel.add(list);
bottomPanel.setLayout(new FlowLayout(FlowLayout.RIGHT,hgap,0));
save = new Button("Save...");
save.addActionListener(this);
bottomPanel.add(save);
more = new Button(moreButtonLabel);
more.addActionListener(this);
bottomPanel.add(more);
if (plot!=null && plot.getPlotMaker()!=null) {
live = new Button("Live");
live.addActionListener(this);
bottomPanel.add(live);
}
coordinates = new Label(blankLabel);
coordinates.setFont(new Font("Monospaced", Font.PLAIN, 12));
coordinates.setBackground(new Color(220, 220, 220));
bottomPanel.add(coordinates);
add(bottomPanel);
more.add(getPopupMenu());
plot.draw();
LayoutManager lm = getLayout();
if (lm instanceof ImageLayout)
((ImageLayout)lm).ignoreNonImageWidths(true); pack();
ImageProcessor ip = plot.getProcessor();
boolean ipIsColor = ip instanceof ColorProcessor;
boolean impIsColor = imp.getProcessor() instanceof ColorProcessor;
if (ipIsColor != impIsColor)
imp.setProcessor(null, ip);
else
imp.updateAndDraw();
if (listValues)
showList();
else
ic.requestFocus(); }
public void setPlot(Plot plot) {
this.plot = plot;
((PlotCanvas)getCanvas()).setPlot(plot);
}
public void dispose() {
if (plot!=null)
plot.dispose();
disableLivePlot();
plot = null;
plotMaker = null;
srcImp = null;
super.dispose();
}
public void windowActivated(WindowEvent e) {
super.windowActivated(e);
if (!wasActivated) {
new Thread(new Runnable() {
public void run() {
IJ.wait(50); wasActivated = true;
}
}).start();
}
}
void updateMinimumSize() {
if (plot == null) return;
Dimension d1 = getExtraSize();
Dimension d2 = plot.getMinimumSize();
setMinimumSize(new Dimension(d1.width + d2.width, d1.height + d2.height));
}
private static int COPY=0, COPY_ALL=1, SET_RANGE=2, PREV_RANGE=3, RESET_RANGE=4, FIT_RANGE=5,
ZOOM_SELECTION=6, AXIS_OPTIONS=7, LEGEND=8, STYLE=9, RESET_PLOT=10, FREEZE=11, HI_RESOLUTION=12,
PROFILE_PLOT_OPTIONS=13;
private static int[] DISABLED_WHEN_FROZEN = new int[]{SET_RANGE, PREV_RANGE, RESET_RANGE,
FIT_RANGE, ZOOM_SELECTION, AXIS_OPTIONS, LEGEND, STYLE, RESET_PLOT};
PopupMenu getPopupMenu() {
popupMenu = new PopupMenu();
menuItems = new MenuItem[14];
menuItems[COPY] = addPopupItem(popupMenu, "Copy 1st Data Set");
menuItems[COPY_ALL] = addPopupItem(popupMenu, "Copy All Data");
popupMenu.addSeparator();
menuItems[SET_RANGE] = addPopupItem(popupMenu, "Set Range...");
menuItems[PREV_RANGE] = addPopupItem(popupMenu, "Previous Range");
menuItems[RESET_RANGE] = addPopupItem(popupMenu, "Reset Range");
menuItems[FIT_RANGE] = addPopupItem(popupMenu, "Set Range to Fit All");
menuItems[ZOOM_SELECTION] = addPopupItem(popupMenu, "Zoom to Selection");
popupMenu.addSeparator();
menuItems[AXIS_OPTIONS] = addPopupItem(popupMenu, "Axis Options...");
menuItems[LEGEND] = addPopupItem(popupMenu, "Legend...");
menuItems[STYLE] = addPopupItem(popupMenu, "Contents Style...");
menuItems[RESET_PLOT] = addPopupItem(popupMenu, "Reset Format");
menuItems[FREEZE] = addPopupItem(popupMenu, "Freeze Plot", true);
menuItems[HI_RESOLUTION] = addPopupItem(popupMenu, "High-Resolution Plot...");
popupMenu.addSeparator();
menuItems[PROFILE_PLOT_OPTIONS] = addPopupItem(popupMenu, "Plot Options...");
return popupMenu;
}
MenuItem addPopupItem(PopupMenu popupMenu, String s) {
return addPopupItem(popupMenu, s, false);
}
MenuItem addPopupItem(PopupMenu popupMenu, String s, boolean isCheckboxItem) {
MenuItem mi = null;
if (isCheckboxItem) {
mi = new CheckboxMenuItem(s);
((CheckboxMenuItem)mi).addItemListener(this);
} else {
mi = new MenuItem(s);
mi.addActionListener(this);
}
popupMenu.add(mi);
return mi;
}
public void actionPerformed(ActionEvent e) {
try {
Object b = e.getSource();
if (b==live)
toggleLiveProfiling();
else if (b==list)
showList();
else if (b==save)
saveAsText();
else if (b==more) {
boolean frozen = plot.isFrozen(); ((CheckboxMenuItem)menuItems[FREEZE]).setState(frozen);
for (int i : DISABLED_WHEN_FROZEN)
menuItems[i].setEnabled(!frozen);
popupMenu.show((Component)b, 1, 1);
}
else if (b==menuItems[COPY])
copyToClipboard(false);
else if (b==menuItems[COPY_ALL])
copyToClipboard(true);
else if (b==menuItems[ZOOM_SELECTION]) {
if (imp!=null && imp.getRoi()!=null && imp.getRoi().isArea())
plot.zoomToRect(imp.getRoi().getBounds());
} else if (b==menuItems[SET_RANGE])
new PlotDialog(plot, PlotDialog.SET_RANGE).showDialog(this);
else if (b==menuItems[PREV_RANGE])
plot.setPreviousMinMax();
else if (b==menuItems[RESET_RANGE])
plot.setLimitsToDefaults(true);
else if (b==menuItems[FIT_RANGE])
plot.setLimitsToFit(true);
else if (b==menuItems[AXIS_OPTIONS])
new PlotDialog(plot, PlotDialog.AXIS_OPTIONS).showDialog(this);
else if (b==menuItems[LEGEND])
new PlotDialog(plot, PlotDialog.LEGEND).showDialog(this);
else if (b==menuItems[STYLE])
new PlotContentsStyleDialog(plot).showDialog(this);
else if (b==menuItems[RESET_PLOT]) {
plot.setFont(Font.PLAIN, Prefs.getInt(PREFS_FONT_SIZE, FONT_SIZE));
plot.setAxisLabelFont(Font.PLAIN, Prefs.getInt(PREFS_FONT_SIZE, FONT_SIZE));
plot.setFormatFlags(Plot.getDefaultFlags());
plot.setFrameSize(plotWidth, plotHeight); } else if (b==menuItems[HI_RESOLUTION])
new PlotDialog(plot, PlotDialog.HI_RESOLUTION).showDialog(this);
else if (b==menuItems[PROFILE_PLOT_OPTIONS])
IJ.doCommand("Plots...");
ic.requestFocus(); } catch (Exception ex) { IJ.handleException(ex); }
}
public void itemStateChanged(ItemEvent e) {
if (e.getSource()==menuItems[FREEZE]) {
boolean frozen = ((CheckboxMenuItem)menuItems[FREEZE]).getState();
plot.setFrozen(frozen);
}
}
public void mouseMoved(int x, int y) {
super.mouseMoved(x, y);
if (plot == null)
return;
if (coordinates != null) { String coords = plot.getCoordinates(x, y) + blankLabel;
coordinates.setText(coords.substring(0, blankLabel.length()));
}
if (x < plot.leftMargin || y > plot.topMargin + plot.frameHeight) {
if (!rangeArrowsVisible && !plot.isFrozen())
showRangeArrows();
if (activeRangeArrow == 8) coordinates.setText("Reset Range");
if (activeRangeArrow >= 0 && !rangeArrowRois[activeRangeArrow].contains(x, y)) {
rangeArrowRois[activeRangeArrow].setFillColor(Color.GRAY);
ic.repaint(); activeRangeArrow = -1;
}
if (activeRangeArrow < 0) { int i = getRangeArrowIndex(x, y);
if (i >= 0) {
rangeArrowRois[i].setFillColor(Color.RED);
activeRangeArrow = i;
ic.repaint();
}
}
} else if (rangeArrowsVisible)
hideRangeArrows();
}
void mouseExited(MouseEvent e) {
if (rangeArrowsVisible)
hideRangeArrows();
}
public synchronized void mouseWheelMoved(MouseWheelEvent e) {
if (plot.isFrozen() || !(ic instanceof PlotCanvas)) { super.mouseWheelMoved(e);
return;
}
int rotation = e.getWheelRotation();
int amount = e.getScrollAmount();
boolean ctrl = (e.getModifiers()&Event.CTRL_MASK)!=0;
if (amount<1) amount=1;
if (rotation==0)
return;
if (ctrl||IJ.shiftKeyDown()) {
double zoomFactor = rotation<0 ? Math.pow(2, 0.2) : Math.pow(0.5, 0.2);
Point loc = ic.getCursorLoc();
int x = ic.screenX(loc.x);
int y = ic.screenY(loc.y);
((PlotCanvas)ic).zoom(x, y, zoomFactor);
} else if (IJ.spaceBarDown())
plot.scroll(rotation*amount*Math.max(ic.imageWidth/50, 1), 0);
else
plot.scroll(0, rotation*amount*Math.max(ic.imageHeight/50, 1));
}
void showRangeArrows() {
if (imp == null)
return;
hideRangeArrows(); rangeArrowRois = new Roi[4 * 2 + 1]; int i = 0;
int height = imp.getHeight();
int arrowH = plot.topMargin < 14 ? 6 : 8; float[] yP = new float[]{height - arrowH / 2, height - 3 * arrowH / 2, height - 5 * arrowH / 2 - 0.1f};
for (float x : new float[]{plot.leftMargin, plot.leftMargin + plot.frameWidth}) { float[] x0 = new float[]{x - arrowH / 2, x - 3 * arrowH / 2 - 0.1f, x - arrowH / 2};
rangeArrowRois[i++] = new PolygonRoi(x0, yP, 3, Roi.POLYGON);
float[] x1 = new float[]{x + arrowH / 2, x + 3 * arrowH / 2 + 0.1f, x + arrowH / 2};
rangeArrowRois[i++] = new PolygonRoi(x1, yP, 3, Roi.POLYGON);
}
float[] xP = new float[]{arrowH / 2 - 0.1f, 3 * arrowH / 2, 5 * arrowH / 2 + 0.1f};
for (float y : new float[]{plot.topMargin + plot.frameHeight, plot.topMargin}) { float[] y0 = new float[]{y + arrowH / 2, y + 3 * arrowH / 2 + 0.1f, y + arrowH / 2};
rangeArrowRois[i++] = new PolygonRoi(xP, y0, 3, Roi.POLYGON);
float[] y1 = new float[]{y - arrowH / 2, y - 3 * arrowH / 2 - 0.1f, y - arrowH / 2};
rangeArrowRois[i++] = new PolygonRoi(xP, y1, 3, Roi.POLYGON);
}
Font theFont = new Font("SansSerif", Font.BOLD, 13);
TextRoi txtRoi = new TextRoi(2, height - 20, 20, 18, " R ", theFont);
rangeArrowRois[8] = txtRoi;
Overlay ovly = imp.getOverlay();
if (ovly == null)
ovly = new Overlay();
for (Roi roi : rangeArrowRois) {
if (roi instanceof TextRoi) {
txtRoi.setStrokeColor(Color.WHITE);
txtRoi.setFillColor(Color.GRAY);
} else
roi.setFillColor(Color.GRAY);
ovly.add(roi);
}
imp.setOverlay(ovly);
ic.repaint();
rangeArrowsVisible = true;
}
void hideRangeArrows() {
if (imp == null || rangeArrowRois==null) return;
Overlay ovly = imp.getOverlay();
if (ovly == null) return;
for (Roi roi : rangeArrowRois)
ovly.remove(roi);
ic.repaint();
rangeArrowsVisible = false;
activeRangeArrow = -1;
}
int getRangeArrowIndex(int x, int y) {
if (!rangeArrowsVisible) return -1;
for (int i=0; i<rangeArrowRois.length; i++)
if (rangeArrowRois[i].getBounds().contains(x,y))
return i;
return -1;
}
void showList(){
ResultsTable rt = plot.getResultsTable(saveXValues);
rt.show("Plot Values");
if (autoClose) {
imp.changes=false;
close();
}
}
public ResultsTable getResultsTable() {
return plot.getResultsTable(saveXValues);
}
private String getValuesAsString(){
ResultsTable rt = getResultsTable();
StringBuffer sb = new StringBuffer();
for (int i=0; i<rt.size(); i++) {
sb.append(rt.getRowAsString(i));
sb.append("\n");
}
return sb.toString();
}
void saveAsText() {
if (plot.getXValues() == null) {
IJ.error("Plot has no data");
return;
}
SaveDialog sd = new SaveDialog("Save as Text", "Values", Prefs.defaultResultsExtension());
String name = sd.getFileName();
if (name==null) return;
String directory = sd.getDirectory();
IJ.wait(250); IJ.showStatus("Saving plot values...");
ResultsTable rt = getResultsTable();
try {
rt.saveAs(directory+name);
} catch (IOException e) {
IJ.error("" + e);
return;
}
if (autoClose)
{imp.changes=false; close();}
}
void copyToClipboard(boolean writeAllColumns) {
float[] xValues = plot.getXValues();
float[] yValues = plot.getYValues();
if (xValues == null) return;
Clipboard systemClipboard = null;
try {systemClipboard = getToolkit().getSystemClipboard();}
catch (Exception e) {systemClipboard = null; }
if (systemClipboard==null)
{IJ.error("Unable to copy to Clipboard."); return;}
IJ.showStatus("Copying plot values...");
CharArrayWriter aw = new CharArrayWriter(10*xValues.length);
PrintWriter pw = new PrintWriter(aw);
if (writeAllColumns) {
ResultsTable rt = plot.getResultsTable(true);
if (!Prefs.dontSaveHeaders) {
String headings = rt.getColumnHeadings();
pw.println(headings);
}
for (int i=0; i<rt.size(); i++)
pw.println(rt.getRowAsString(i));
} else {
int xdigits = 0;
if (saveXValues)
xdigits = plot.getPrecision(xValues);
int ydigits = plot.getPrecision(yValues);
for (int i=0; i<Math.min(xValues.length, yValues.length); i++) {
if (saveXValues)
pw.println(IJ.d2s(xValues[i],xdigits)+"\t"+IJ.d2s(yValues[i],ydigits));
else
pw.println(IJ.d2s(yValues[i],ydigits));
}
}
String text = aw.toString();
pw.close();
StringSelection contents = new StringSelection(text);
systemClipboard.setContents(contents, this);
IJ.showStatus(text.length() + " characters copied to Clipboard");
if (autoClose)
{imp.changes=false; close();}
}
public void lostOwnership(Clipboard clipboard, Transferable contents) {}
public float[] getXValues() {
return plot.getXValues();
}
public float[] getYValues() {
return plot.getYValues();
}
public void drawPlot(Plot plot) {
this.plot = plot;
if (imp!=null) {
if (ic instanceof PlotCanvas)
((PlotCanvas)ic).setPlot(plot);
imp.setProcessor(null, plot.getProcessor());
plot.setImagePlus(imp); }
}
public static void savePreferences(Properties prefs) {
double min = ProfilePlot.getFixedMin();
double max = ProfilePlot.getFixedMax();
if (plotWidth!=WIDTH || plotHeight!=HEIGHT) {
prefs.put(PREFS_WIDTH, Integer.toString(plotWidth));
prefs.put(PREFS_HEIGHT, Integer.toString(plotHeight));
prefs.put(PREFS_FONT_SIZE, Integer.toString(fontSize));
}
int options = 0;
if (autoClose && !listValues) options |= AUTO_CLOSE;
if (listValues) options |= LIST_VALUES;
if (!interpolate) options |= INTERPOLATE; if (noGridLines) options |= NO_GRID_LINES;
if (noTicks) options |= NO_TICKS;
prefs.put(OPTIONS, Integer.toString(options));
}
private void toggleLiveProfiling() {
boolean liveMode = bgThread != null;
if (liveMode)
disableLivePlot();
else
enableLivePlot();
}
private void enableLivePlot() {
if (plotMaker==null)
plotMaker = plot!=null?plot.getPlotMaker():null;
if (plotMaker==null) return;
srcImp = plotMaker.getSourceImage();
if (srcImp==null)
return;
if (bgThread==null) {
bgThread = new Thread(this, "Live Plot");
bgThread.setPriority(Math.max(bgThread.getPriority()-3, Thread.MIN_PRIORITY));
doUpdate = true;
bgThread.start();
}
if (IJ.debugMode) IJ.log("PlotWindow.createListeners");
ImagePlus.addImageListener(this);
Roi.addRoiListener(this);
Font font = live.getFont();
live.setFont(new Font(font.getName(), Font.BOLD, font.getSize()));
live.setForeground(Color.red);
}
private void disableLivePlot() {
if (IJ.debugMode) IJ.log("PlotWindow.disableLivePlot: "+srcImp);
if (srcImp==null)
return;
if (bgThread!=null)
bgThread.interrupt();
bgThread = null;
ImagePlus.removeImageListener(this);
Roi.removeRoiListener(this);
if (live != null) {
Font font = live.getFont();
live.setFont(new Font(font.getName(), Font.PLAIN, font.getSize()));
live.setForeground(Color.black);
}
}
public synchronized void roiModified(ImagePlus img, int id) {
if (IJ.debugMode) IJ.log("PlotWindow.roiModified: "+img+" "+id);
if (img==srcImp) {
doUpdate=true;
notify();
}
}
public void imageOpened(ImagePlus imp) {
}
public synchronized void imageUpdated(ImagePlus imp) {
if (imp==srcImp) {
doUpdate = true;
notify();
}
}
public void imageClosed(ImagePlus imp) {
if (imp==srcImp || imp==this.imp) {
disableLivePlot();
srcImp = null;
plotMaker = null;
}
}
public void run() {
while (true) {
IJ.wait(50); Plot plot = plotMaker!=null?plotMaker.getPlot():null;
if (doUpdate && plot!=null) {
plot.useTemplate(this.plot, this.plot.templateFlags);
plot.setPlotMaker(plotMaker);
this.plot = plot;
((PlotCanvas)ic).setPlot(plot);
ImageProcessor ip = plot.getProcessor();
if (ip!=null && imp!=null) {
imp.setProcessor(null, ip);
plot.setImagePlus(imp);
}
}
synchronized(this) {
if (doUpdate) {
doUpdate = false; } else {
try {wait();} catch(InterruptedException e) { return;
}
}
}
}
}
public Plot getPlot() {
return plot;
}
public static void freeze() {
Window win = WindowManager.getActiveWindow();
if (win!=null && (win instanceof PlotWindow))
((PlotWindow)win).getPlot().setFrozen(true);
}
}