| 777 | } |
| 778 | |
| 779 | void |
| 780 | Application::onPanSpectrumStrategyChanged(QString strategy) |
| 781 | { |
| 782 | if (this->scanner != nullptr) { |
| 783 | if (strategy.toStdString() == "Stochastic") |
| 784 | this->scanner->setStrategy(Suscan::Analyzer::STOCHASTIC); |
| 785 | else if (strategy.toStdString() == "Progressive") |
| 786 | this->scanner->setStrategy(Suscan::Analyzer::PROGRESSIVE); |
| 787 | } |
| 788 | } |
| 789 | |
| 790 | void |
| 791 | Application::onPanSpectrumPartitioningChanged(QString partitioning) |
no test coverage detected