// 6/30/10 M. Brenner public class Tictaciconset extends Touchiconset { static public final int CONNECTSTATUS = 2; static private final int responses_[][] = { {TictacGui.LOG }, {TictacGui.SETTINGS }, {TictacGui.REPLAY }, {TictacGui.CONNECT, TictacGui.DISCONNECT }, {TictacGui.HELP }, {TictacGui.EXIT } }; static private final String iconfiles_[][] = { {"log.png" }, {"settings.png" }, {"replay.png" }, {"disconn.png", "conn.png" }, {"help.png" }, {"stop.png" } }; public Tictaciconset (Touchmap touchmap) { super (touchmap, iconfiles_, responses_, false, Touchmap.BOTTOM, Touchmap.EVEN); } }