forked from blue/squawk
trying linter settings
This commit is contained in:
parent
8f5325b291
commit
93c5be412e
3640
.uncrustify.cfg
Normal file
3640
.uncrustify.cfg
Normal file
File diff suppressed because it is too large
Load Diff
475
shared/info.cpp
475
shared/info.cpp
@ -17,368 +17,359 @@
|
||||
*/
|
||||
|
||||
#include "info.h"
|
||||
|
||||
Shared::Info::Info(const QString &addr, EntryType tp):
|
||||
type(tp),
|
||||
address(addr),
|
||||
vcard(nullptr),
|
||||
activeKeys(nullptr),
|
||||
inactiveKeys(nullptr) {
|
||||
Shared::Info::Info (const QString& addr, EntryType tp):
|
||||
type(tp),
|
||||
address(addr),
|
||||
vcard(nullptr),
|
||||
activeKeys(nullptr),
|
||||
inactiveKeys(nullptr)
|
||||
{
|
||||
switch (type) {
|
||||
case EntryType::none:
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
vcard = new VCard();
|
||||
activeKeys = new std::list<KeyInfo>();
|
||||
inactiveKeys = new std::list<KeyInfo>();
|
||||
break;
|
||||
default:
|
||||
throw 352;
|
||||
case EntryType::none:
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
vcard = new VCard();
|
||||
activeKeys = new std::list<KeyInfo>();
|
||||
inactiveKeys = new std::list<KeyInfo>();
|
||||
break;
|
||||
default:
|
||||
throw 352;
|
||||
}
|
||||
}
|
||||
|
||||
Shared::Info::Info():
|
||||
type(EntryType::none),
|
||||
address(""),
|
||||
vcard(nullptr),
|
||||
activeKeys(nullptr),
|
||||
inactiveKeys(nullptr) {}
|
||||
Shared::Info::Info ():
|
||||
type(EntryType::none),
|
||||
address(""),
|
||||
vcard(nullptr),
|
||||
activeKeys(nullptr),
|
||||
inactiveKeys(nullptr) {}
|
||||
|
||||
Shared::Info::Info(const Shared::Info &other):
|
||||
type(other.type),
|
||||
address(other.address),
|
||||
vcard(nullptr),
|
||||
activeKeys(nullptr),
|
||||
inactiveKeys(nullptr) {
|
||||
Shared::Info::Info (const Shared::Info& other):
|
||||
type(other.type),
|
||||
address(other.address),
|
||||
vcard(nullptr),
|
||||
activeKeys(nullptr),
|
||||
inactiveKeys(nullptr)
|
||||
{
|
||||
switch (type) {
|
||||
case EntryType::none:
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
vcard = new VCard(other.getVCardRef());
|
||||
activeKeys = new std::list<KeyInfo>(other.getActiveKeysRef());
|
||||
inactiveKeys = new std::list<KeyInfo>(other.getInactiveKeysRef());
|
||||
break;
|
||||
default:
|
||||
throw 353;
|
||||
case EntryType::none:
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
vcard = new VCard(other.getVCardRef());
|
||||
activeKeys = new std::list<KeyInfo>(other.getActiveKeysRef());
|
||||
inactiveKeys = new std::list<KeyInfo>(other.getInactiveKeysRef());
|
||||
break;
|
||||
default:
|
||||
throw 353;
|
||||
}
|
||||
}
|
||||
|
||||
Shared::Info::Info(Info &&other):
|
||||
type(other.type),
|
||||
address(other.address),
|
||||
vcard(other.vcard),
|
||||
activeKeys(other.activeKeys),
|
||||
inactiveKeys(other.inactiveKeys) {
|
||||
Shared::Info::Info (Info&& other):
|
||||
type(other.type),
|
||||
address(other.address),
|
||||
vcard(other.vcard),
|
||||
activeKeys(other.activeKeys),
|
||||
inactiveKeys(other.inactiveKeys)
|
||||
{
|
||||
other.type = EntryType::none;
|
||||
}
|
||||
|
||||
Shared::Info &Shared::Info::operator=(Info &&other) {
|
||||
Shared::Info& Shared::Info::operator = (Info&& other) {
|
||||
type = other.type;
|
||||
address = other.address;
|
||||
vcard = other.vcard;
|
||||
activeKeys = other.activeKeys;
|
||||
inactiveKeys = other.inactiveKeys;
|
||||
|
||||
other.type = EntryType::none;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
Shared::Info &Shared::Info::operator=(const Info &other) {
|
||||
Shared::Info& Shared::Info::operator = (const Info& other) {
|
||||
type = other.type;
|
||||
address = other.address;
|
||||
|
||||
switch (type) {
|
||||
case EntryType::none:
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
vcard = new VCard(other.getVCardRef());
|
||||
activeKeys = new std::list<KeyInfo>(other.getActiveKeysRef());
|
||||
inactiveKeys = new std::list<KeyInfo>(other.getInactiveKeysRef());
|
||||
break;
|
||||
default:
|
||||
throw 351;
|
||||
case EntryType::none:
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
vcard = new VCard(other.getVCardRef());
|
||||
activeKeys = new std::list<KeyInfo>(other.getActiveKeysRef());
|
||||
inactiveKeys = new std::list<KeyInfo>(other.getInactiveKeysRef());
|
||||
break;
|
||||
default:
|
||||
throw 351;
|
||||
}
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
Shared::Info::~Info() {
|
||||
Shared::Info::~Info ()
|
||||
{
|
||||
turnIntoNone();
|
||||
}
|
||||
|
||||
void Shared::Info::turnIntoNone() {
|
||||
void Shared::Info::turnIntoNone () {
|
||||
switch (type) {
|
||||
case EntryType::none:
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
delete vcard;
|
||||
vcard = nullptr;
|
||||
delete activeKeys;
|
||||
activeKeys = nullptr;
|
||||
delete inactiveKeys;
|
||||
inactiveKeys = nullptr;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
case EntryType::none:
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
delete vcard;
|
||||
vcard = nullptr;
|
||||
delete activeKeys;
|
||||
activeKeys = nullptr;
|
||||
delete inactiveKeys;
|
||||
inactiveKeys = nullptr;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
type = EntryType::none;
|
||||
}
|
||||
|
||||
void Shared::Info::turnIntoContact(
|
||||
const Shared::VCard &crd, const std::list<KeyInfo> &aks, const std::list<KeyInfo> &iaks
|
||||
) {
|
||||
void Shared::Info::turnIntoContact (const Shared::VCard& crd, const std::list<KeyInfo>& aks, const std::list<KeyInfo>& iaks) {
|
||||
switch (type) {
|
||||
case EntryType::none:
|
||||
vcard = new VCard(crd);
|
||||
activeKeys = new std::list<KeyInfo>(aks);
|
||||
inactiveKeys = new std::list<KeyInfo>(iaks);
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
*vcard = crd;
|
||||
*activeKeys = aks;
|
||||
*inactiveKeys = iaks;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
case EntryType::none:
|
||||
vcard = new VCard(crd);
|
||||
activeKeys = new std::list<KeyInfo>(aks);
|
||||
inactiveKeys = new std::list<KeyInfo>(iaks);
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
*vcard = crd;
|
||||
*activeKeys = aks;
|
||||
*inactiveKeys = iaks;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
type = EntryType::contact;
|
||||
}
|
||||
|
||||
void Shared::Info::turnIntoContact(Shared::VCard *crd, std::list<KeyInfo> *aks, std::list<KeyInfo> *iaks) {
|
||||
void Shared::Info::turnIntoContact (Shared::VCard* crd, std::list<KeyInfo>* aks, std::list<KeyInfo>* iaks) {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
delete vcard;
|
||||
delete activeKeys;
|
||||
delete inactiveKeys;
|
||||
[[fallthrough]];
|
||||
case EntryType::none:
|
||||
vcard = crd;
|
||||
activeKeys = aks;
|
||||
inactiveKeys = iaks;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
delete vcard;
|
||||
delete activeKeys;
|
||||
delete inactiveKeys;
|
||||
[[fallthrough]];
|
||||
case EntryType::none:
|
||||
vcard = crd;
|
||||
activeKeys = aks;
|
||||
inactiveKeys = iaks;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
type = EntryType::contact;
|
||||
}
|
||||
|
||||
void Shared::Info::turnIntoOwnAccount(
|
||||
const Shared::VCard &crd, const std::list<KeyInfo> &aks, const std::list<KeyInfo> &iaks
|
||||
) {
|
||||
void Shared::Info::turnIntoOwnAccount (const Shared::VCard& crd, const std::list<KeyInfo>& aks, const std::list<KeyInfo>& iaks) {
|
||||
switch (type) {
|
||||
case EntryType::none:
|
||||
vcard = new VCard(crd);
|
||||
activeKeys = new std::list<KeyInfo>(aks);
|
||||
inactiveKeys = new std::list<KeyInfo>(iaks);
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
*vcard = crd;
|
||||
*activeKeys = aks;
|
||||
*inactiveKeys = iaks;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
case EntryType::none:
|
||||
vcard = new VCard(crd);
|
||||
activeKeys = new std::list<KeyInfo>(aks);
|
||||
inactiveKeys = new std::list<KeyInfo>(iaks);
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
*vcard = crd;
|
||||
*activeKeys = aks;
|
||||
*inactiveKeys = iaks;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
type = EntryType::ownAccount;
|
||||
}
|
||||
|
||||
void Shared::Info::turnIntoOwnAccount(Shared::VCard *crd, std::list<KeyInfo> *aks, std::list<KeyInfo> *iaks) {
|
||||
void Shared::Info::turnIntoOwnAccount (Shared::VCard* crd, std::list<KeyInfo>* aks, std::list<KeyInfo>* iaks) {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
delete vcard;
|
||||
delete activeKeys;
|
||||
delete inactiveKeys;
|
||||
[[fallthrough]];
|
||||
case EntryType::none:
|
||||
vcard = crd;
|
||||
activeKeys = aks;
|
||||
inactiveKeys = iaks;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
delete vcard;
|
||||
delete activeKeys;
|
||||
delete inactiveKeys;
|
||||
[[fallthrough]];
|
||||
case EntryType::none:
|
||||
vcard = crd;
|
||||
activeKeys = aks;
|
||||
inactiveKeys = iaks;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
type = EntryType::ownAccount;
|
||||
}
|
||||
|
||||
void Shared::Info::setAddress(const QString &addr) {
|
||||
void Shared::Info::setAddress (const QString& addr) {
|
||||
address = addr;
|
||||
}
|
||||
|
||||
QString Shared::Info::getAddress() const {
|
||||
QString Shared::Info::getAddress () const {
|
||||
return address;
|
||||
}
|
||||
|
||||
const QString &Shared::Info::getAddressRef() const {
|
||||
const QString& Shared::Info::getAddressRef () const {
|
||||
return address;
|
||||
}
|
||||
|
||||
Shared::EntryType Shared::Info::getType() const {
|
||||
Shared::EntryType Shared::Info::getType () const {
|
||||
return type;
|
||||
}
|
||||
|
||||
std::list<Shared::KeyInfo> &Shared::Info::getActiveKeysRef() {
|
||||
std::list<Shared::KeyInfo>& Shared::Info::getActiveKeysRef () {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return *activeKeys;
|
||||
break;
|
||||
default:
|
||||
throw 354;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return *activeKeys;
|
||||
break;
|
||||
default:
|
||||
throw 354;
|
||||
}
|
||||
}
|
||||
|
||||
const std::list<Shared::KeyInfo> &Shared::Info::getActiveKeysRef() const {
|
||||
const std::list<Shared::KeyInfo>& Shared::Info::getActiveKeysRef () const {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return *activeKeys;
|
||||
break;
|
||||
default:
|
||||
throw 355;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return *activeKeys;
|
||||
break;
|
||||
default:
|
||||
throw 355;
|
||||
}
|
||||
}
|
||||
|
||||
std::list<Shared::KeyInfo> *Shared::Info::getActiveKeys() {
|
||||
std::list<Shared::KeyInfo>* Shared::Info::getActiveKeys () {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return activeKeys;
|
||||
break;
|
||||
default:
|
||||
throw 356;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return activeKeys;
|
||||
break;
|
||||
default:
|
||||
throw 356;
|
||||
}
|
||||
}
|
||||
|
||||
const std::list<Shared::KeyInfo> *Shared::Info::getActiveKeys() const {
|
||||
const std::list<Shared::KeyInfo>* Shared::Info::getActiveKeys () const {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return activeKeys;
|
||||
break;
|
||||
default:
|
||||
throw 357;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return activeKeys;
|
||||
break;
|
||||
default:
|
||||
throw 357;
|
||||
}
|
||||
}
|
||||
|
||||
std::list<Shared::KeyInfo> &Shared::Info::getInactiveKeysRef() {
|
||||
std::list<Shared::KeyInfo>& Shared::Info::getInactiveKeysRef () {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return *inactiveKeys;
|
||||
break;
|
||||
default:
|
||||
throw 358;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return *inactiveKeys;
|
||||
break;
|
||||
default:
|
||||
throw 358;
|
||||
}
|
||||
}
|
||||
|
||||
const std::list<Shared::KeyInfo> &Shared::Info::getInactiveKeysRef() const {
|
||||
const std::list<Shared::KeyInfo>& Shared::Info::getInactiveKeysRef () const {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return *inactiveKeys;
|
||||
break;
|
||||
default:
|
||||
throw 359;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return *inactiveKeys;
|
||||
break;
|
||||
default:
|
||||
throw 359;
|
||||
}
|
||||
}
|
||||
|
||||
std::list<Shared::KeyInfo> *Shared::Info::getInactiveKeys() {
|
||||
std::list<Shared::KeyInfo>* Shared::Info::getInactiveKeys () {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return inactiveKeys;
|
||||
break;
|
||||
default:
|
||||
throw 360;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return inactiveKeys;
|
||||
break;
|
||||
default:
|
||||
throw 360;
|
||||
}
|
||||
}
|
||||
|
||||
const std::list<Shared::KeyInfo> *Shared::Info::getInactiveKeys() const {
|
||||
const std::list<Shared::KeyInfo>* Shared::Info::getInactiveKeys () const {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return inactiveKeys;
|
||||
break;
|
||||
default:
|
||||
throw 361;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return inactiveKeys;
|
||||
break;
|
||||
default:
|
||||
throw 361;
|
||||
}
|
||||
}
|
||||
|
||||
const Shared::VCard &Shared::Info::getVCardRef() const {
|
||||
const Shared::VCard& Shared::Info::getVCardRef () const {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return *vcard;
|
||||
break;
|
||||
default:
|
||||
throw 362;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return *vcard;
|
||||
break;
|
||||
default:
|
||||
throw 362;
|
||||
}
|
||||
}
|
||||
|
||||
Shared::VCard &Shared::Info::getVCardRef() {
|
||||
Shared::VCard& Shared::Info::getVCardRef () {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return *vcard;
|
||||
break;
|
||||
default:
|
||||
throw 363;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return *vcard;
|
||||
break;
|
||||
default:
|
||||
throw 363;
|
||||
}
|
||||
}
|
||||
|
||||
const Shared::VCard *Shared::Info::getVCard() const {
|
||||
const Shared::VCard* Shared::Info::getVCard () const {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return vcard;
|
||||
break;
|
||||
default:
|
||||
throw 364;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return vcard;
|
||||
break;
|
||||
default:
|
||||
throw 364;
|
||||
}
|
||||
}
|
||||
|
||||
Shared::VCard *Shared::Info::getVCard() {
|
||||
Shared::VCard* Shared::Info::getVCard () {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return vcard;
|
||||
break;
|
||||
default:
|
||||
throw 365;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
return vcard;
|
||||
break;
|
||||
default:
|
||||
throw 365;
|
||||
}
|
||||
}
|
||||
|
||||
void Shared::Info::setActiveKeys(std::list<KeyInfo> *keys) {
|
||||
void Shared::Info::setActiveKeys (std::list<KeyInfo>* keys) {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
activeKeys = keys;
|
||||
break;
|
||||
default:
|
||||
throw 366;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
activeKeys = keys;
|
||||
break;
|
||||
default:
|
||||
throw 366;
|
||||
}
|
||||
}
|
||||
|
||||
void Shared::Info::setVCard(Shared::VCard *card) {
|
||||
void Shared::Info::setVCard (Shared::VCard* card) {
|
||||
switch (type) {
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
vcard = card;
|
||||
break;
|
||||
default:
|
||||
throw 367;
|
||||
case EntryType::contact:
|
||||
case EntryType::ownAccount:
|
||||
vcard = card;
|
||||
break;
|
||||
default:
|
||||
throw 367;
|
||||
}
|
||||
}
|
||||
|
@ -25,71 +25,49 @@
|
||||
#include <list>
|
||||
|
||||
namespace Shared {
|
||||
|
||||
/**
|
||||
* This class should contain all nessesary data to display
|
||||
* roster element info (contact, or out of roster contact, or MUC, or MIX in the future)
|
||||
*
|
||||
* under development yet
|
||||
*/
|
||||
class Info {
|
||||
class Info : public QObject, public VCard {
|
||||
public:
|
||||
Info();
|
||||
Info(const QString& address, EntryType = EntryType::none);
|
||||
Info(const Info& other);
|
||||
Info(Info&& other);
|
||||
virtual ~Info();
|
||||
Info ();
|
||||
Info (const QString& address, EntryType = EntryType::none);
|
||||
Info (const Info& other);
|
||||
Info (Info&& other);
|
||||
virtual ~Info ();
|
||||
|
||||
Info& operator = (const Info& other);
|
||||
Info& operator = (Info&& other);
|
||||
|
||||
QString getAddress() const;
|
||||
const QString& getAddressRef() const;
|
||||
void setAddress(const QString& address);
|
||||
|
||||
EntryType getType() const;
|
||||
void turnIntoNone();
|
||||
void turnIntoContact(
|
||||
const VCard& card = VCard(),
|
||||
const std::list<KeyInfo>& activeKeys = {},
|
||||
const std::list<KeyInfo>& inactiveKeys = {}
|
||||
);
|
||||
void turnIntoContact(
|
||||
VCard* card = new VCard,
|
||||
std::list<KeyInfo>* activeKeys = new std::list<KeyInfo>,
|
||||
std::list<KeyInfo>* inactiveKeys = new std::list<KeyInfo>
|
||||
);
|
||||
void turnIntoOwnAccount(
|
||||
const VCard& card = VCard(),
|
||||
const std::list<KeyInfo>& activeKeys = {},
|
||||
const std::list<KeyInfo>& inactiveKeys = {}
|
||||
);
|
||||
void turnIntoOwnAccount(
|
||||
VCard* card = new VCard,
|
||||
std::list<KeyInfo>* activeKeys = new std::list<KeyInfo>,
|
||||
std::list<KeyInfo>* inactiveKeys = new std::list<KeyInfo>
|
||||
);
|
||||
|
||||
const VCard& getVCardRef() const;
|
||||
VCard& getVCardRef();
|
||||
const VCard* getVCard() const;
|
||||
VCard* getVCard();
|
||||
void setVCard(Shared::VCard* card);
|
||||
|
||||
const std::list<KeyInfo>& getActiveKeysRef() const;
|
||||
std::list<KeyInfo>& getActiveKeysRef();
|
||||
const std::list<KeyInfo>* getActiveKeys() const;
|
||||
std::list<KeyInfo>* getActiveKeys();
|
||||
void setActiveKeys(std::list<KeyInfo>* keys);
|
||||
|
||||
const std::list<KeyInfo>& getInactiveKeysRef() const;
|
||||
std::list<KeyInfo>& getInactiveKeysRef();
|
||||
const std::list<KeyInfo>* getInactiveKeys() const;
|
||||
std::list<KeyInfo>* getInactiveKeys();
|
||||
QString getAddress () const;
|
||||
const QString& getAddressRef () const;
|
||||
void setAddress (const QString& address);
|
||||
EntryType getType () const;
|
||||
void turnIntoNone ();
|
||||
void turnIntoContact (const VCard& card = VCard(), const std::list<KeyInfo>& activeKeys = {}, const std::list<KeyInfo>& inactiveKeys = {});
|
||||
void turnIntoContact (VCard* card = new VCard, std::list<KeyInfo>* activeKeys = new std::list<KeyInfo>, std::list<KeyInfo>* inactiveKeys = new std::list<KeyInfo>);
|
||||
void turnIntoOwnAccount (const VCard& card = VCard(), const std::list<KeyInfo>& activeKeys = {}, const std::list<KeyInfo>& inactiveKeys = {});
|
||||
void turnIntoOwnAccount (VCard* card = new VCard, std::list<KeyInfo>* activeKeys = new std::list<KeyInfo>, std::list<KeyInfo>* inactiveKeys = new std::list<KeyInfo>);
|
||||
const VCard& getVCardRef () const;
|
||||
VCard& getVCardRef ();
|
||||
const VCard* getVCard () const;
|
||||
VCard* getVCard ();
|
||||
void setVCard (Shared::VCard* card);
|
||||
const std::list<KeyInfo>& getActiveKeysRef () const;
|
||||
std::list<KeyInfo>& getActiveKeysRef ();
|
||||
const std::list<KeyInfo>* getActiveKeys () const;
|
||||
std::list<KeyInfo>* getActiveKeys ();
|
||||
void setActiveKeys (std::list<KeyInfo>* keys);
|
||||
const std::list<KeyInfo>& getInactiveKeysRef () const;
|
||||
std::list<KeyInfo>& getInactiveKeysRef ();
|
||||
const std::list<KeyInfo>* getInactiveKeys () const;
|
||||
std::list<KeyInfo>* getInactiveKeys ();
|
||||
|
||||
private:
|
||||
EntryType type;
|
||||
QString address;
|
||||
|
||||
VCard* vcard;
|
||||
std::list<KeyInfo>* activeKeys;
|
||||
std::list<KeyInfo>* inactiveKeys;
|
||||
|
Loading…
Reference in New Issue
Block a user