package javaforce.webui;
import javaforce.webui.event.*;
/** KeyPad for TextComponent
*
* @author pquiring
*/
public class KeyPad extends PopupPanel implements Click {
private TextComponent field;
private Table table;
private static String[][] cols = {
{"<", "/", "*", "-"},
{"7", "8", "9", "+"},
{"4", "5", "6",null},
{"1", "2", "3","Ent"},
{"0",null, ".",null},
};
public KeyPad(String title, int px) {
super(title);
table = new Table(px, px, 4, 5);
setTitleBarSize(px);
add(table);
for(int col=0;col