mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-10 06:22:15 -05:00
Starting to make it an "Active Stations" window.
This commit is contained in:
parent
658f23b813
commit
f26b1c424f
@ -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()
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user