| 626 | } |
| 627 | |
| 628 | void |
| 629 | PanoramicDialog::saveConfig(void) |
| 630 | { |
| 631 | Suscan::Source::Device dev; |
| 632 | |
| 633 | this->getSelectedDevice(dev); |
| 634 | |
| 635 | this->dialogConfig->device = dev.getDesc(); |
| 636 | this->dialogConfig->lnbFreq = this->ui->lnbDoubleSpinBox->value(); |
| 637 | this->dialogConfig->palette = this->paletteGradient.toStdString(); |
| 638 | this->dialogConfig->rangeMin = this->ui->rangeStartSpin->value(); |
| 639 | this->dialogConfig->rangeMax = this->ui->rangeEndSpin->value(); |
| 640 | |
| 641 | this->dialogConfig->strategy = |
| 642 | this->ui->walkStrategyCombo->currentText().toStdString(); |
| 643 | |
| 644 | this->dialogConfig->partitioning = |
| 645 | this->ui->partitioningCombo->currentText().toStdString(); |
| 646 | |
| 647 | this->dialogConfig->fullRange = this->ui->fullRangeCheck->isChecked(); |
| 648 | } |
| 649 | |
| 650 | FrequencyBand |
| 651 | PanoramicDialog::deserializeFrequencyBand(Suscan::Object const &obj) |
no test coverage detected