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
| import java.awt.Color;
import java.awt.GridLayout;
import java.awt.event.*;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
class Cell extends JButton {
private static final int NUM_COLOURS = 3;
private ImageIcon[] icons;
private int type;
public Cell() {
ImageIcon[] icons;
icons = new ImageIcon[NUM_COLOURS];
for (int i=0; i<NUM_COLOURS; i++) {
icons[i] = new ImageIcon("data/ball-" + Integer.toString(type) + ".png");
}
this.type = 0;
setBackground(Color.WHITE);
setIcon();
setBorderPainted(false);
}
private void setIcon() {
setIcon(icons[type]);
}
public void update() {
type = type + 1;
setIcon();
}
}
public class App extends JFrame implements ActionListener {
private Cell myCell;
public App() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
myCell = new Cell();
myCell.addActionListener(this);
add(myCell);
pack();
setVisible(true);
}
public void actionPerformed(ActionEvent e) {
myCell.update();
}
public static void main(String[] args) {
new App();
}
} |
Partager