disableCommand = new Command("Disable Virtual Keyboard");
addCommand(disableCommand);
enableCommand = new Command("Enable Virtual Keyboard");
cancelCommand = new Command("Cancel");
addCommand(cancelCommand);
setCommandListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (e.getCommand() == okCommand) {
saveAndExit();
} else if (e.getCommand() == disableCommand) {
removeComponent(keyboardComponent);