| 91 | } |
| 92 | |
| 93 | int ScriptAPI::question(QWidget* parent, |
| 94 | const QString& title, const QString& text, |
| 95 | int buttons, |
| 96 | int defaultButton) |
| 97 | { |
| 98 | return static_cast<int>(QMessageBox::question(parent, title, text, |
| 99 | static_cast<QMessageBox::StandardButtons>(buttons), |
| 100 | static_cast<QMessageBox::StandardButton>(defaultButton))); |
| 101 | } |
| 102 | |
| 103 | int ScriptAPI::warning(QWidget* parent, |
| 104 | const QString& title, const QString& text, |