Alert alert = new Alert(MessageType.QUESTION, "Please select your favorite icon:",
options, body);
alert.setTitle("Select Icon");
alert.setSelectedOption(0);
alert.getDecorators().update(0, new ReflectionDecorator());
alert.open(window);
} else {
String message = (String)userData.get("message");
Alert.alert(MessageType.valueOf(messageType.toUpperCase()), message, window);
}
}
});
promptButton.getButtonPressListeners().add(new ButtonPressListener() {
@Override
public void buttonPressed(Button button) {
Button.Group messageTypeGroup = Button.getNamedGroups().get("messageType");
Button selection = messageTypeGroup.getSelection();
Map<String, ?> userData;
try {
userData = JSONSerializer.parseMap((String)selection.getUserData().get("messageInfo"));
} catch (SerializationException exception) {
throw new RuntimeException(exception);
}
String messageType = (String)userData.get("messageType");
if (messageType == null) {
ArrayList<String> options = new ArrayList<String>();
options.add("OK");
options.add("Cancel");
Component body = null;
WTKXSerializer wtkxSerializer = new WTKXSerializer();
try {
body = (Component)wtkxSerializer.readObject(this, "alert.wtkx");
} catch(Exception exception) {
System.err.println(exception);
}
Prompt prompt = new Prompt(MessageType.QUESTION, "Please select your favorite icon:",
options, body);
prompt.setTitle("Select Icon");
prompt.setSelectedOption(0);
prompt.getDecorators().update(0, new ReflectionDecorator());
prompt.open(window);
} else {
String message = (String)userData.get("message");
Prompt.prompt(MessageType.valueOf(messageType.toUpperCase()), message, window);