2018-02-08 21:28:33 -05:00
|
|
|
/*
|
|
|
|
* From an ADIF file and cty.dat, get a call's DXCC entity and its worked before status
|
|
|
|
* VK3ACF July 2013
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LOGBOOK_H
|
|
|
|
#define LOGBOOK_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QFont>
|
|
|
|
|
|
|
|
#include "countrydat.h"
|
|
|
|
#include "countriesworked.h"
|
|
|
|
#include "adif.h"
|
2019-06-05 11:33:21 -04:00
|
|
|
#include "n3fjp.h"
|
2018-02-08 21:28:33 -05:00
|
|
|
|
|
|
|
class QDir;
|
|
|
|
|
|
|
|
class LogBook
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void init();
|
2018-11-30 17:02:14 -05:00
|
|
|
bool hasWorkedBefore(const QString &call, const QString &band);
|
2018-02-08 21:28:33 -05:00
|
|
|
void match(/*in*/ const QString call,
|
|
|
|
/*out*/ QString &countryName,
|
|
|
|
bool &callWorkedBefore,
|
|
|
|
bool &countryWorkedBefore) const;
|
2019-06-13 09:35:53 -04:00
|
|
|
bool findCallDetails(/*in*/
|
2019-03-10 23:48:56 -04:00
|
|
|
const QString call,
|
|
|
|
/*out*/
|
2019-06-13 09:35:53 -04:00
|
|
|
QString &grid,
|
2019-03-10 23:48:56 -04:00
|
|
|
QString &date,
|
|
|
|
QString &name,
|
|
|
|
QString &comment) const;
|
2019-06-13 09:35:53 -04:00
|
|
|
void addAsWorked(const QString call, const QString band, const QString mode, const QString submode, const QString grid, const QString date, const QString name, const QString comment);
|
2018-02-08 21:28:33 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
CountryDat _countries;
|
|
|
|
CountriesWorked _worked;
|
|
|
|
ADIF _log;
|
|
|
|
|
|
|
|
void _setAlreadyWorkedFromLog();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LOGBOOK_H
|
|
|
|
|