| 81 | } |
| 82 | |
| 83 | int ScriptAPI::information(QWidget* parent, |
| 84 | const QString& title, const QString& text, |
| 85 | int buttons, |
| 86 | int defaultButton) |
| 87 | { |
| 88 | return static_cast<int>(QMessageBox::information(parent, title, text, |
| 89 | static_cast<QMessageBox::StandardButtons>(buttons), |
| 90 | static_cast<QMessageBox::StandardButton>(defaultButton))); |
| 91 | } |
| 92 | |
| 93 | int ScriptAPI::question(QWidget* parent, |
| 94 | const QString& title, const QString& text, |