1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/***************************************************************************
dxspot.cpp - description
-------------------
begin : apr 2024
copyright : (C) 2024 by Jaime Robles
email : jaime@robles.es
***************************************************************************/
/*****************************************************************************
* This file is part of KLog. *
* *
* KLog is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* KLog is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with KLog. If not, see <https://www.gnu.org/licenses/>. *
* *
*****************************************************************************/
#include "dxspot.h"
#include "../callsign.h"
DXSpot::DXSpot()
{
clear();
}
DXSpot::~DXSpot(){}
DXSpot::DXSpot(const DXSpot& other)
{
dxcall = other.dxcall;
freq = other.freq;
spotter = other.spotter;
comment = other.comment;
dateTime = other.dateTime;
clickStatus = other.clickStatus;
shdx = other.shdx;
}
void DXSpot::clear()
{
dxcall.clear();
freq.clear();
spotter.clear();
dateTime.currentDateTimeUtc();
clickStatus = NoClick;
shdx = false;
}
void DXSpot::operator=(DXSpot const &_other)
{
dxcall = _other.dxcall;
freq = _other.freq; // Might need a copy constructor for Frequency as well
spotter = _other.spotter;
comment = _other.comment;
if (_other.dateTime.isValid())
dateTime = _other.dateTime;
clickStatus = _other.clickStatus;
shdx = _other.shdx;
}
bool DXSpot::isValid()
{
//qDebug() << Q_FUNC_INFO << " - 010";
Callsign dxc(dxcall);
if (!dxc.isValid())
return false;
//qDebug() << Q_FUNC_INFO << " - 020";
Callsign spo(spotter);
if (!spo.isValid())
return false;
//qDebug() << Q_FUNC_INFO << " - 030";
if (!freq.isValid())
return false;
//qDebug() << Q_FUNC_INFO << " - 040";
if (!dateTime.isValid())
return false;
//qDebug() << Q_FUNC_INFO << " - 050";
return true;
}
void DXSpot::setDXCall(const QString &_c)
{
Callsign callsing(_c);
if (callsing.isValid())
dxcall = _c;
}
QString DXSpot::getDxCall() {return dxcall;}
void DXSpot::setSpotter(const QString &_c){
Callsign callsing(_c);
if (callsing.isValid())
spotter = _c;
}
QString DXSpot::getSpotter(){return spotter;}
void DXSpot::setComment(const QString &c){comment = c;}
QString DXSpot::getComment(){return comment;}
void DXSpot::setDateTime(const QDateTime &d){if (d.isValid()) dateTime = d; }
QDateTime DXSpot::getDateTime(){ return dateTime;}
void DXSpot::setClickStatus(const MouseClicks &_s ){clickStatus = _s;}
MouseClicks DXSpot::getClickStatus(){return clickStatus;}
void DXSpot::setFrequency(Frequency f)
{
if (f.isValid())
freq = f;
//qDebug() << Q_FUNC_INFO << ": " << freq.toQString(MHz);
}
Frequency DXSpot::getFrequency()
{
// Return the frequency stored in the object
return freq;
}
void DXSpot::setSHDX(bool _shdx)
{
shdx = _shdx;
}
bool DXSpot::getSHDX(){return shdx;}
|