Beispiel #1
0
 @Override
 public void doAction(String o) {
   Global.notewindow(this, "boardquestion");
   if (Global.resourceString("Accept").equals(o)) {
     PF.doboard(BoardSize, ColorChoice, Handicap, TotalTime, ExtraTime, ExtraMoves);
     setVisible(false);
     dispose();
   } else if (Global.resourceString("Decline").equals(o)) {
     PF.declineboard();
     setVisible(false);
     dispose();
   } else super.doAction(o);
 }
Beispiel #2
0
 public BoardQuestion(PartnerFrame pf, int s, String c, int h, int tt, int et, int em) {
   super(pf, Global.resourceString("Game_Setup"), true);
   PF = pf;
   BoardSize = s;
   Handicap = h;
   TotalTime = tt;
   ExtraTime = et;
   ExtraMoves = em;
   ColorChoice = c;
   JPanel pa = new MyPanel();
   add("Center", new Panel3D(pa));
   JTextField t;
   pa.setLayout(new GridLayout(0, 2));
   pa.add(new MyLabel(Global.resourceString("Board_size")));
   pa.add(t = new FormTextField("" + s));
   t.setEditable(false);
   pa.add(new MyLabel(Global.resourceString("Partners_color")));
   pa.add(t = new FormTextField(c));
   t.setEditable(false);
   pa.add(new MyLabel(Global.resourceString("Handicap")));
   pa.add(t = new FormTextField("" + h));
   t.setEditable(false);
   pa.add(new MyLabel(Global.resourceString("Total_Time__min_")));
   pa.add(t = new FormTextField("" + tt));
   t.setEditable(false);
   pa.add(new MyLabel(Global.resourceString("Extra_Time__min_")));
   pa.add(t = new FormTextField("" + et));
   t.setEditable(false);
   pa.add(new MyLabel(Global.resourceString("Moves_per_Extra_Time")));
   pa.add(t = new FormTextField("" + em));
   t.setEditable(false);
   JPanel pb = new MyPanel();
   pb.add(new ButtonAction(this, Global.resourceString("Accept")));
   pb.add(new ButtonAction(this, Global.resourceString("Decline")));
   add("South", new Panel3D(pb));
   Global.setpacked(this, "boardquestion", 300, 400, pf);
   validate();
   show();
 }
Beispiel #3
0
 public void run() {
   EmptyPaint.createwood(
       this,
       F,
       Global.getParameter("sboardwidth", 0),
       Global.getParameter("sboardheight", 0),
       Global.getColor("boardcolor", 170, 120, 70),
       Global.getParameter("shadows", true),
       Global.getParameter("sboardox", 5),
       Global.getParameter("sboardoy", 5),
       Global.getParameter("sboardd", 10));
 }