import java.applet.*; import java.awt.*; public class Alus02 extends Panel{ Tah04 tahvel31=new Tah04(200,100 ); Tah04 tahvel3=new Tah04(200,100 ); Button nupp1=new Button("Pildi sisu"); Button nupp2=new Button("Valge"); Button nupp3=new Button("Must"); Button nupp4=new Button("Tagasi"); Button nupp5=new Button("Joon"); Button nupp6=new Button("Sodi"); TextArea kiri=new TextArea(10, 10); public void Alus02(){ this.add(tahvel31); this.add(tahvel3); this.add(nupp1); this.add(kiri); this.add(nupp2); this.add(nupp3); this.add(nupp4); this.add(nupp5);} public boolean action(Event e, Object arg){ if(e.target==nupp1){ String s=tahvel3.pildistring(); kiri.appendText(s+"\n"); tahvel31.stringipilt(s); } if (e.target==nupp2){ tahvel3.seaVarv(Color.white); } if(e.target==nupp3){ tahvel3.seaVarv(Color.black);} if(e.target==nupp4){ tahvel3.tagasi();} if(e.target==nupp5){ tahvel3.joon();} if(e.target==nupp6){ tahvel3.sodi();} return super.action(e, arg); } }