blob: 6de20a76f98a4a5f7425efacdcb439406dbea5ab (
plain)
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
|
package gjt;
import java.awt.Image;
/**
* An ImageButton that cycles through a series of images. The
* image advances to the next image in the series every time
* the button is activated.<p>
*
* Note that the cycling is actually performed by the buttons'
* controller - a StateButtonController.<p>
*
* @version 1.0, Apr 1 1996
* @author David Geary
* @see ImageButton
* @see StateButtonController
* @see gjt.test.StateButtonTest
*/
public class StateButton extends ImageButton {
private Image[] images;
private int state = 0;
private int numStates;
public StateButton(Image[] images) {
super(images[0]);
this.images = images;
numStates = images.length;
setController(new StateButtonController(this));
waitForImages();
}
public Image nextImage() {
if(state + 1 < numStates) state++;
else state = 0;
return images[state];
}
public int state() {
return state;
}
private void waitForImages() {
for(int i=0; i < images.length; ++i)
Util.waitForImage(this, images[i]);
}
}
|