Add "Apply" button to calibration solution message box

Make calibration  solution application iterative so  that calibrations
can be applied sequentially if desired.

Tidy up calibration solution messages boxes and make i18n friendly.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8153 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville
2017-10-01 21:44:15 +00:00
parent e2771c0cd7
commit a3bdea0a21
4 changed files with 37 additions and 7 deletions
+6
View File
@@ -673,6 +673,12 @@ QString Configuration::rig_name () const {return m_->rig_params_.rig_name;}
bool Configuration::pwrBandTxMemory () const {return m_->pwrBandTxMemory_;}
bool Configuration::pwrBandTuneMemory () const {return m_->pwrBandTuneMemory_;}
void Configuration::adjust_calibration_parameters (double intercept, double slope_ppm)
{
m_->frequency_calibration_intercept_ += intercept;
m_->frequency_calibration_slope_ppm_ += slope_ppm;
}
bool Configuration::is_transceiver_online () const
{
return m_->rig_active_;