| 65 | } |
| 66 | |
| 67 | void PluginInstaller::showMessage(const QString& title, const QString& message, bool isWarning) { |
| 68 | QMessageBox msgBox; |
| 69 | msgBox.setWindowTitle(title); |
| 70 | msgBox.setText(message); |
| 71 | msgBox.setIcon(isWarning ? QMessageBox::Warning : QMessageBox::Information); |
| 72 | msgBox.setStandardButtons(QMessageBox::Ok); |
| 73 | msgBox.exec(); |
| 74 | } |
| 75 | |
| 76 | QStringList PluginInstaller::getAeInstallPaths() { |
| 77 | QStringList paths; |