mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-09 02:26:06 -05:00
a292b2bb58
We now display "new call on current band" as well as "new call on any band". Something similar should be done for DXCCs and grids.
41 lines
794 B
C++
41 lines
794 B
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 <QString>
|
|
#include <QFont>
|
|
|
|
#include "countrydat.h"
|
|
#include "countriesworked.h"
|
|
#include "adif.h"
|
|
|
|
class QDir;
|
|
|
|
class LogBook
|
|
{
|
|
public:
|
|
void init();
|
|
void match(/*in*/ const QString call,
|
|
/*out*/ QString &countryName,
|
|
bool &callWorkedBefore,
|
|
bool &countryWorkedBefore,
|
|
QString currentBand="") const;
|
|
void addAsWorked(const QString call, const QString band, const QString mode, const QString date);
|
|
|
|
private:
|
|
CountryDat _countries;
|
|
CountriesWorked _worked;
|
|
ADIF _log;
|
|
|
|
void _setAlreadyWorkedFromLog();
|
|
|
|
};
|
|
|
|
#endif // LOGBOOK_H
|
|
|