1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
package ij.plugin;
import ij.*;
import ij.process.*;
import ij.gui.*;
import ij.plugin.frame.ThresholdAdjuster;
import java.awt.*;
public class WindowOrganizer implements PlugIn {
private static final int XSTART=4, YSTART=80, XOFFSET=8, YOFFSET=24,MAXSTEP=200,GAP=2;
private int titlebarHeight = IJ.isMacintosh()?40:20;
public void run(String arg) {
int[] wList = WindowManager.getIDList();
if (arg.equals("show"))
{showAll(wList); return;}
if (wList==null) {
IJ.noImage();
return;
}
if (arg.equals("tile"))
tileWindows(wList);
else
cascadeWindows(wList);
}
void tileWindows(int[] wList) {
Dimension screen = IJ.getScreenSize();
int minWidth = Integer.MAX_VALUE;
int minHeight = Integer.MAX_VALUE;
boolean allSameSize = true;
int width=0, height=0;
double totalWidth = 0;
double totalHeight = 0;
for (int i=0; i<wList.length; i++) {
ImageWindow win = getWindow(wList[i]);
if (win==null)
continue;
Dimension d = win.getSize();
int w = d.width;
int h = d.height + titlebarHeight;
if (i==0) {
width = w;
height = h;
}
if (w!=width || h!=height)
allSameSize = false;
if (w<minWidth)
minWidth = w;
if (h<minHeight)
minHeight = h;
totalWidth += w;
totalHeight += h;
}
int nPics = wList.length;
double averageWidth = totalWidth/nPics;
double averageHeight = totalHeight/nPics;
int tileWidth = (int)averageWidth;
int tileHeight = (int)averageHeight;
//IJ.write("tileWidth, tileHeight: "+tileWidth+" "+tileHeight);
int hspace = screen.width - 2 * GAP;
if (tileWidth>hspace)
tileWidth = hspace;
int vspace = screen.height - YSTART;
if (tileHeight>vspace)
tileHeight = vspace;
int hloc, vloc;
boolean theyFit;
do {
hloc = XSTART;
vloc = YSTART;
theyFit = true;
int i = 0;
do {
i++;
if (hloc+tileWidth>screen.width) {
hloc = XSTART;
vloc = vloc + tileHeight;
if (vloc+tileHeight> screen.height)
theyFit = false;
}
hloc = hloc + tileWidth + GAP;
} while (theyFit && (i<nPics));
if (!theyFit) {
tileWidth = (int)(tileWidth*0.98 +0.5);
tileHeight = (int)(tileHeight*0.98+0.5);
}
} while (!theyFit);
int nColumns = (screen.width-XSTART)/(tileWidth+GAP);
int nRows = nPics/nColumns;
if ((nPics%nColumns)!=0)
nRows++;
hloc = XSTART;
vloc = YSTART;
for (int i=0; i<nPics; i++) {
if (hloc+tileWidth>screen.width) {
hloc = XSTART;
vloc = vloc + tileHeight;
}
ImageWindow win = getWindow(wList[i]);
if (win!=null) {
win.setLocation(hloc, vloc);
//IJ.write(i+" "+w+" "+tileWidth+" "+mag+" "+IJ.d2s(zoomFactor,2)+" "+zoomCount);
ImageCanvas canvas = win.getCanvas();
while (win.getSize().width*0.85>=tileWidth && canvas.getMagnification()>0.03125)
canvas.zoomOut(0, 0);
win.toFront();
}
hloc += tileWidth + GAP;
}
}
ImageWindow getWindow(int id) {
ImageWindow win = null;
ImagePlus imp = WindowManager.getImage(id);
if (imp!=null)
win = imp.getWindow();
return win;
}
void cascadeWindows(int[] wList) {
Dimension screen = IJ.getScreenSize();
int x = XSTART;
int y = YSTART;
int xstep = 0;
int xstart = XSTART;
for (int i=0; i<wList.length; i++) {
ImageWindow win = getWindow(wList[i]);
if (win==null)
continue;
Dimension d = win.getSize();
if (i==0) {
xstep = (int)(d.width*0.8);
if (xstep>MAXSTEP)
xstep = MAXSTEP;
}
if (y+d.height*0.67>screen.height) {
xstart += xstep;
if (xstart+d.width*0.67>screen.width)
xstart = XSTART+XOFFSET;
x = xstart;
y = YSTART;
}
win.setLocation(x, y);
win.toFront();
x += XOFFSET;
y += YOFFSET;
}
}
void showAll(int[] wList) {
if (wList!=null) {
for (int i=0; i<wList.length; i++) {
ImageWindow win = getWindow(wList[i]);
if (win!=null)
WindowManager.toFront(win);
}
}
Frame[] frames = WindowManager.getNonImageWindows();
if (frames!=null) {
for (int i=0; i<frames.length; i++)
WindowManager.toFront(frames[i]);
}
IJ.getInstance().toFront();
}
}
|