| 874 | } |
| 875 | |
| 876 | void |
| 877 | SourceWidget::setDelayedAnalyzerOptions() |
| 878 | { |
| 879 | if (m_sourceInfo.testPermission(SUSCAN_ANALYZER_PERM_SET_GAIN)) |
| 880 | if (this->panelConfig->gainPresetEnabled) |
| 881 | this->applyCurrentAutogain(); |
| 882 | |
| 883 | if (m_sourceInfo.testPermission(SUSCAN_ANALYZER_PERM_THROTTLE)) |
| 884 | this->onThrottleChanged(); |
| 885 | |
| 886 | if (m_sourceInfo.testPermission(SUSCAN_ANALYZER_PERM_SET_DC_REMOVE)) |
| 887 | this->onToggleDCRemove(); |
| 888 | |
| 889 | if (m_sourceInfo.testPermission(SUSCAN_ANALYZER_PERM_SET_IQ_REVERSE)) |
| 890 | this->onToggleIQReverse(); |
| 891 | |
| 892 | if (m_sourceInfo.testPermission(SUSCAN_ANALYZER_PERM_SET_AGC)) |
| 893 | this->onToggleAGCEnabled(); |
| 894 | } |
| 895 | |
| 896 | // Overriden methods |
| 897 | void |
no test coverage detected