Starting to make it an "Active Stations" window.

This commit is contained in:
Joe Taylor 2022-03-11 14:46:58 -05:00
parent 658f23b813
commit f26b1c424f
2 changed files with 13 additions and 1 deletions

View File

@ -20,7 +20,7 @@ ARRL_Digi::ARRL_Digi(QSettings * settings, QFont const& font, QWidget *parent) :
ui->ARRL_DigiPlainTextEdit->setReadOnly (true);
changeFont (font);
read_settings ();
ui->header_label->setText("Points Call Grid Az S/N Freq Band");
ui->header_label->setText("Pts Call Grid Az S/N Dial Freq");
}
ARRL_Digi::~ARRL_Digi()

View File

@ -673,6 +673,18 @@ private:
};
QMap<QString,FixupQSO> m_fixupQSO; //Key = HoundCall, value = info for QSO in progress
struct ActiveStation
{
QString grid4;
qint32 az;
qint32 snr;
qint64 dialFreq;
qint32 audioFreq;
qint32 points;
QDateTime decodeTime;
};
QMap<QString,ActiveStation> m_activeStation;
QQueue<QString> m_houndQueue; //Selected Hounds available for starting a QSO
QQueue<QString> m_foxQSOinProgress; //QSOs in progress: Fox has sent a report
QQueue<qint64> m_foxRateQueue;