Add frequency span query to wide graph class

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6587 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville 2016-04-06 17:11:34 +00:00
parent 85c13ead2e
commit 56b7cf9c16
2 changed files with 6 additions and 0 deletions

View File

@ -252,6 +252,11 @@ int WideGraph::Fmax() //Fmax
return n;
}
int WideGraph::fSpan()
{
return ui->widePlot->fSpan ();
}
void WideGraph::setPeriod(int ntrperiod, int nsps) //SetPeriod
{
m_TRperiod=ntrperiod;

View File

@ -29,6 +29,7 @@ public:
int nStartFreq();
int Fmin();
int Fmax();
int fSpan();
void saveSettings();
void setRxRange(int fMin);
void setFsample(int n);