| 624 | } |
| 625 | |
| 626 | void |
| 627 | FFTWidget::applySourceInfo(Suscan::AnalyzerSourceInfo const &info) |
| 628 | { |
| 629 | this->ui->fftSizeCombo->setEnabled( |
| 630 | info.testPermission(SUSCAN_ANALYZER_PERM_SET_FFT_SIZE)); |
| 631 | |
| 632 | this->ui->rateCombo->setEnabled( |
| 633 | info.testPermission(SUSCAN_ANALYZER_PERM_SET_FFT_FPS)); |
| 634 | |
| 635 | this->ui->windowCombo->setEnabled( |
| 636 | info.testPermission(SUSCAN_ANALYZER_PERM_SET_FFT_WINDOW)); |
| 637 | } |
| 638 | |
| 639 | QString |
| 640 | FFTWidget::getUnitName(void) const |
no test coverage detected