mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
1389f8e644
2. Decoding now starts at t=50 s rather than t=52 s. 3. Label on "Auto is On/Off" button changed to "Enable Tx". 4. Three new options on the Setup menu, to help importing ADIF log into some fussy loggers: - Log HT9 without submode - Convert JT9-x to RTTY for logging - Log dB reports to Comments git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3077 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
36 lines
709 B
C++
36 lines
709 B
C++
#ifndef LogQSO_H
|
|
#define LogQSO_H
|
|
|
|
#include <QtGui>
|
|
//#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class LogQSO;
|
|
}
|
|
|
|
class LogQSO : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit LogQSO(QWidget *parent = 0);
|
|
~LogQSO();
|
|
void initLogQSO(QString hisCall, QString hisGrid, QString mode,
|
|
QString rptSent, QString rptRcvd, QString date,
|
|
QString qsoStart, QString qsoStop, double dialFreq,
|
|
QString myCall, QString myGrid, bool noSuffix,
|
|
bool toRTTY, bool dBtoComments);
|
|
|
|
double m_dialFreq;
|
|
QString m_myCall;
|
|
QString m_myGrid;
|
|
|
|
public slots:
|
|
void accept();
|
|
|
|
private:
|
|
Ui::LogQSO *ui;
|
|
};
|
|
|
|
#endif // LogQSO_H
|