mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-07-29 21:44:12 -04:00
Enable "Save synced" and "Save Decoded".
Clean up handling of DialFreq. Put Date into wsjtx_rx.log. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@2768 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
+7
-6
@@ -39,7 +39,7 @@ WideGraph::WideGraph(QWidget *parent) :
|
||||
ui->widePlot->setBinsPerPixel(1);
|
||||
m_waterfallAvg = settings.value("WaterfallAvg",5).toInt();
|
||||
ui->waterfallAvgSpinBox->setValue(m_waterfallAvg);
|
||||
m_dialFreq=settings.value("DialFreqMHz",474.000).toDouble();
|
||||
m_dialFreq=settings.value("DialFreqkHz",474.000).toDouble();
|
||||
ui->fDialLineEdit->setText(QString::number(m_dialFreq));
|
||||
ui->widePlot->m_bCurrent=settings.value("Current",true).toBool();
|
||||
ui->widePlot->m_bCumulative=settings.value("Cumulative",false).toBool();
|
||||
@@ -73,7 +73,7 @@ void WideGraph::saveSettings()
|
||||
settings.setValue("PlotWidth",ui->widePlot->plotWidth());
|
||||
settings.setValue("FreqSpan",ui->freqSpanSpinBox->value());
|
||||
settings.setValue("WaterfallAvg",ui->waterfallAvgSpinBox->value());
|
||||
settings.setValue("DialFreqMHz",m_dialFreq);
|
||||
settings.setValue("DialFreqkHz",m_dialFreq);
|
||||
settings.setValue("Current",ui->widePlot->m_bCurrent);
|
||||
settings.setValue("Cumulative",ui->widePlot->m_bCumulative);
|
||||
settings.setValue("JT9Sync",ui->widePlot->m_bJT9Sync);
|
||||
@@ -237,15 +237,16 @@ void WideGraph::on_fDialLineEdit_editingFinished()
|
||||
m_dialFreq=ui->fDialLineEdit->text().toDouble();
|
||||
}
|
||||
|
||||
void WideGraph::initIQplus()
|
||||
{
|
||||
}
|
||||
|
||||
double WideGraph::fGreen()
|
||||
{
|
||||
return ui->widePlot->fGreen();
|
||||
}
|
||||
|
||||
double WideGraph::dialFreq()
|
||||
{
|
||||
return m_dialFreq;
|
||||
}
|
||||
|
||||
void WideGraph::setPeriod(int ntrperiod, int nsps)
|
||||
{
|
||||
m_TRperiod=ntrperiod;
|
||||
|
||||
Reference in New Issue
Block a user