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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
package ij.gui;
import ij.ImageJ;
import ij.IJ;
import ij.Prefs;
import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;
/** This class, based on Joachim Walter's Image5D package, adds "c", "z" labels
and play-pause icons (T) to the stack and hyperstacks dimension sliders.
* @author Joachim Walter
*/
public class ScrollbarWithLabel extends Panel implements Adjustable, AdjustmentListener {
Scrollbar bar;
private Icon icon;
private StackWindow stackWindow;
transient AdjustmentListener adjustmentListener;
public ScrollbarWithLabel() {
}
public ScrollbarWithLabel(StackWindow stackWindow, int value, int visible, int minimum, int maximum, char label) {
super(new BorderLayout(2, 0));
this.stackWindow = stackWindow;
bar = new Scrollbar(Scrollbar.HORIZONTAL, value, visible, minimum, maximum);
GUI.fixScrollbar(bar);
icon = new Icon(label);
add(icon, BorderLayout.WEST);
add(bar, BorderLayout.CENTER);
bar.addAdjustmentListener(this);
addKeyListener(IJ.getInstance());
}
/* (non-Javadoc)
* @see java.awt.Component#getPreferredSize()
*/
public Dimension getPreferredSize() {
Dimension dim = new Dimension(0,0);
int width = bar.getPreferredSize().width;
Dimension minSize = getMinimumSize();
if (width<minSize.width) width = minSize.width;
int height = bar.getPreferredSize().height;
int iconHeight = icon.getPreferredSize().height;
if (iconHeight>height)
height = iconHeight;
dim = new Dimension(width, (int)(height));
return dim;
}
public Dimension getMinimumSize() {
return new Dimension(80, 15);
}
/* Adds KeyListener also to all sub-components.
*/
public synchronized void addKeyListener(KeyListener l) {
super.addKeyListener(l);
bar.addKeyListener(l);
}
/* Removes KeyListener also from all sub-components.
*/
public synchronized void removeKeyListener(KeyListener l) {
super.removeKeyListener(l);
bar.removeKeyListener(l);
}
/*
* Methods of the Adjustable interface
*/
public synchronized void addAdjustmentListener(AdjustmentListener l) {
if (l == null) {
return;
}
adjustmentListener = AWTEventMulticaster.add(adjustmentListener, l);
}
public int getBlockIncrement() {
return bar.getBlockIncrement();
}
public int getMaximum() {
return bar.getMaximum();
}
public int getMinimum() {
return bar.getMinimum();
}
public int getOrientation() {
return bar.getOrientation();
}
public int getUnitIncrement() {
return bar.getUnitIncrement();
}
public int getValue() {
return bar.getValue();
}
public int getVisibleAmount() {
return bar.getVisibleAmount();
}
public synchronized void removeAdjustmentListener(AdjustmentListener l) {
if (l == null) {
return;
}
adjustmentListener = AWTEventMulticaster.remove(adjustmentListener, l);
}
public void setBlockIncrement(int b) {
bar.setBlockIncrement(b);
}
public void setMaximum(int max) {
bar.setMaximum(max);
}
public void setMinimum(int min) {
bar.setMinimum(min);
}
public void setUnitIncrement(int u) {
bar.setUnitIncrement(u);
}
public void setValue(int v) {
bar.setValue(v);
}
public void setVisibleAmount(int v) {
bar.setVisibleAmount(v);
}
public void setFocusable(boolean focusable) {
super.setFocusable(focusable);
bar.setFocusable(focusable);
}
/*
* Method of the AdjustmenListener interface.
*/
public void adjustmentValueChanged(AdjustmentEvent e) {
if (bar != null && e.getSource() == bar) {
AdjustmentEvent myE = new AdjustmentEvent(this, e.getID(), e.getAdjustmentType(),
e.getValue(), e.getValueIsAdjusting());
AdjustmentListener listener = adjustmentListener;
if (listener != null) {
listener.adjustmentValueChanged(myE);
}
}
}
public void updatePlayPauseIcon() {
icon.repaint();
}
class Icon extends Canvas implements MouseListener {
private final double SCALE = Prefs.getGuiScale();
private final int WIDTH = (int)(12*SCALE);
private final int HEIGHT= (int)(14*SCALE);
private BasicStroke stroke = new BasicStroke((float)(2*SCALE));
private char type;
private Image image;
public Icon(char type) {
addMouseListener(this);
addKeyListener(IJ.getInstance());
setSize(WIDTH, HEIGHT);
this.type = type;
}
/** Overrides Component getPreferredSize(). */
public Dimension getPreferredSize() {
return new Dimension(WIDTH, HEIGHT);
}
public void update(Graphics g) {
paint(g);
}
public void paint(Graphics g) {
g.setColor(Color.white);
g.fillRect(0, 0, WIDTH, HEIGHT);
Graphics2D g2d = (Graphics2D)g;
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
if (type=='t')
drawPlayPauseButton(g2d);
else
drawLetter(g);
}
private void drawLetter(Graphics g) {
Font font = ImageJ.SansSerif14;
if (SCALE>1.0)
font = font.deriveFont((float)(font.getSize()*SCALE));
g.setFont(font);
g.setColor(Color.black);
g.drawString(String.valueOf(type), (int)(2*SCALE), (int)(12*SCALE));
}
private void drawPlayPauseButton(Graphics2D g) {
if (stackWindow.getAnimate()) {
g.setColor(Color.black);
g.setStroke(stroke);
int s3 = (int)(3*SCALE);
int s8 = (int)(8*SCALE);
int s11 = (int)(11*SCALE);
g.drawLine(s3, s3, s3, s11);
g.drawLine(s8, s3, s8, s11);
} else {
g.setColor(Color.darkGray);
GeneralPath path = new GeneralPath();
path.moveTo(3f, 2f);
path.lineTo(10f, 7f);
path.lineTo(3f, 12f);
path.lineTo(3f, 2f);
if (SCALE>1.0) {
AffineTransform at = new AffineTransform();
at.scale(SCALE, SCALE);
path = new GeneralPath(at.createTransformedShape(path));
}
g.fill(path);
}
}
public void mousePressed(MouseEvent e) {
if (type!='t') return;
int flags = e.getModifiers();
if ((flags&(Event.ALT_MASK|Event.META_MASK|Event.CTRL_MASK))!=0)
IJ.doCommand("Animation Options...");
else
IJ.doCommand("Start Animation [\\]");
}
public void mouseReleased(MouseEvent e) {}
public void mouseExited(MouseEvent e) {}
public void mouseClicked(MouseEvent e) {}
public void mouseEntered(MouseEvent e) {}
} // Icon class
}
|