return JOptionPane.showOptionDialog(parent, question, title, JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, buttons,
buttons[0]);
}
public XProgressDialog createProgressDialog(String label, int length, String initialValue, boolean canCancel) {
return new ProgressDialog("Progress", label, length, initialValue, canCancel);
}