org/homelinux/largo/checkers/Checkers.java
changeset 7 93fe1f21e0d8
parent 5 42da09368d71
child 13 f83884cc7d2f
equal deleted inserted replaced
6:ad18534e08fd 7:93fe1f21e0d8
    23 
    23 
    24 public class Checkers extends JFrame implements Runnable {
    24 public class Checkers extends JFrame implements Runnable {
    25 	static final long serialVersionUID = 250408;
    25 	static final long serialVersionUID = 250408;
    26 	static final String helpURL = "http://largo.homelinux.org/cgi-bin/gitweb.cgi?p=games/Schach.git;a=summary";
    26 	static final String helpURL = "http://largo.homelinux.org/cgi-bin/gitweb.cgi?p=games/Schach.git;a=summary";
    27 
    27 
    28 	MouseListener listener = null;
    28 	MouseListener listener;
    29 	KIBoard board = null;
    29 	KIBoard board;
    30 	Point p = null;
    30 	Point p;
    31 	JLabel    human = new JLabel("<html><font size='5' color='#FFFFFF'>Human</font></html>");
    31 	JLabel    human = new JLabel("<html><font size='5' color='#FFFFFF'>Human</font></html>");
    32 	JLabel computer = new JLabel("<html><font size='5' color='#FFFFFF'>Computer</font></html>");
    32 	JLabel computer = new JLabel("<html><font size='5' color='#FFFFFF'>Computer</font></html>");
    33 	JButton     neu = new JButton("Play");
    33 	JButton     neu = new JButton("Play");
    34 	JButton  pconly = new JButton("PC-PC");
    34 	JButton  pconly = new JButton("PC-PC");
    35 	JButton    back = new JButton("Back");
    35 	JButton    back = new JButton("Back");