js8call/JS8_Logbook/LogBook.h
2026-01-18 19:19:15 -06:00

44 lines
1.2 KiB
C++

/*
* 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 "ADIF.h"
#include "CountriesWorked.h"
#include "CountryDat.h"
#include "n3fjp.h"
#include <QFont>
#include <QString>
class QDir;
class LogBook {
public:
void init();
bool hasWorkedBefore(const QString &call, const QString &band);
void match(/*in*/ const QString call,
/*out*/ QString &countryName, bool &callWorkedBefore,
bool &countryWorkedBefore) const;
bool findCallDetails(/*in*/
const QString call,
/*out*/
QString &grid, QString &date, QString &name,
QString &comment) const;
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);
private:
CountryDat _countries;
CountriesWorked _worked;
ADIF _log;
void _setAlreadyWorkedFromLog();
};
#endif // LOGBOOK_H