| 61 | |
| 62 | |
| 63 | void SettingsWindow::showEvent(QShowEvent *) |
| 64 | { |
| 65 | // display the current settings |
| 66 | ui->txtDefaultImagePath->setText(_mainWindow->defaultImagePath()); |
| 67 | ui->txtPluginDevPath->setText(_mainWindow->pluginDevPath()); |
| 68 | ui->txtPluginPath->setText(_mainWindow->pluginPath()); |
| 69 | ui->chkAutosave->setChecked(_mainWindow->autosaveEnabled()); |
| 70 | ui->chkOpenCV->setChecked(_mainWindow->useOpenCV()); |
| 71 | ui->chkLogFile->setChecked(_mainWindow->logFileEnabled()); |
| 72 | |
| 73 | updatePluginList(); |
| 74 | } |
| 75 | |
| 76 | void SettingsWindow::on_btnReloadPlugins_clicked() |
| 77 | { |
nothing calls this directly
no test coverage detected