String strBody = "Got \"Force exit\" hotkey (Alt+F+E)";
strBody += "\n\n" + "Please confirm";
GfrAwtDialogConfirm dlg = new GfrAwtDialogConfirm(
null,
"Force exit",
strBody);
dlg.setVisible(true);
boolean blnIsCancelled = dlg.isCancelled();
if (blnIsCancelled)
return;
System.err.println("User forced an exit by using hot key");