Reintegrate merge from wsjtx_exp branch.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6122 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville
2015-11-18 01:28:12 +00:00
parent 09ef0cccd8
commit 97704efba8
148 changed files with 10084 additions and 1574 deletions
+11
View File
@@ -27,6 +27,7 @@ Astro::Astro(QSettings * settings, Configuration const * configuration, QWidget
, ui_ {new Ui::Astro}
, m_bRxAudioTrack {false}
, m_bTxAudioTrack {false}
, m_bTrackVFO {true}
, m_DopplerMethod {0}
, m_kHz {0}
, m_Hz {0}
@@ -228,3 +229,13 @@ bool Astro::doppler_tracking () const
{
return ui_->cbDopplerTracking->isChecked ();
}
bool Astro::trackVFO()
{
return m_bTrackVFO;
}
void Astro::on_cbTrackVFO_toggled(bool b)
{
m_bTrackVFO=b;
}