(String title, String text, int type, Image icon, String okText, String cancelText)
| 289 | /// |
| 290 | /// true if the ok command was pressed or if cancelText is null. False otherwise. |
| 291 | public static boolean show(String title, String text, int type, Image icon, String okText, String cancelText) { |
| 292 | return show(title, text, type, icon, okText, cancelText, 0); |
| 293 | } |
| 294 | |
| 295 | /// Shows a modal prompt dialog with the given title and text. |
| 296 | /// |