mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 16:31:17 -05:00
52 lines
1.7 KiB
C++
52 lines
1.7 KiB
C++
// -*- Mode: C++ -*-
|
|
/*
|
|
* From an ADIF file and cty.dat, get a call's DXCC entity and its worked before status
|
|
*/
|
|
|
|
#ifndef LOG_BOOK_H_
|
|
#define LOG_BOOK_H_
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
|
|
#include "WorkedBefore.hpp"
|
|
|
|
class Configuration;
|
|
class QByteArray;
|
|
class QDateTime;
|
|
|
|
class LogBook final
|
|
: public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
LogBook (Configuration const *);
|
|
QString const& path () const {return worked_before_.path ();}
|
|
bool add (QString const& call
|
|
, QString const& grid
|
|
, QString const& band
|
|
, QString const& mode
|
|
, QByteArray const& ADIF_record);
|
|
AD1CCty const& countries () const {return worked_before_.countries ();}
|
|
void rescan ();
|
|
void match (QString const& call, QString const& mode, QString const& grid,
|
|
AD1CCty::Record const&, bool& callB4, bool& countryB4,
|
|
bool &gridB4, bool &continentB4, bool& CQZoneB4, bool& ITUZoneB4,
|
|
QString const& currentBand = QString {}) const;
|
|
static QByteArray QSOToADIF (QString const& hisCall, QString const& hisGrid, QString const& mode,
|
|
QString const& rptSent, QString const& rptRcvd, QDateTime const& dateTimeOn,
|
|
QDateTime const& dateTimeOff, QString const& band, QString const& comments,
|
|
QString const& name, QString const& strDialFreq, QString const& myCall,
|
|
QString const& m_myGrid, QString const& m_txPower, QString const& operator_call,
|
|
QString const& xSent, QString const& xRcvd);
|
|
|
|
Q_SIGNAL void finished_loading (int worked_before_record_count, QString const& error) const;
|
|
|
|
private:
|
|
Configuration const * config_;
|
|
WorkedBefore worked_before_;
|
|
};
|
|
|
|
#endif
|