mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-15 01:05:35 +08:00
* renamed fromQVariant to convertFromQVariant, the "from" methods imply the object is changed (fromJson, fromString ..) * implemented fromQVariant - changing the object by QVariant * moved toQVariant into PQ template * free function setFromQVariant
117 lines
3.9 KiB
C++
117 lines
3.9 KiB
C++
/* Copyright (C) 2013
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKMISC_AIRPORTICAO_H
|
|
#define BLACKMISC_AIRPORTICAO_H
|
|
|
|
#include "valueobject.h"
|
|
#include "blackmiscfreefunctions.h"
|
|
|
|
namespace BlackMisc
|
|
{
|
|
namespace Aviation
|
|
{
|
|
//! Value object encapsulating information of a callsign.
|
|
class CAirportIcao : public BlackMisc::CValueObject
|
|
{
|
|
|
|
public:
|
|
//! Default constructor.
|
|
CAirportIcao() {}
|
|
|
|
//! Constructor
|
|
CAirportIcao(const QString &icaoCode) : m_icaoCode(CAirportIcao::unifyAirportCode(icaoCode))
|
|
{}
|
|
|
|
//! Constructor, needed to disambiguate implicit conversion from string literal.
|
|
CAirportIcao(const char *icaoCode)
|
|
: m_icaoCode(CAirportIcao::unifyAirportCode(icaoCode))
|
|
{}
|
|
|
|
//! \copydoc CValueObject::toQVariant()
|
|
virtual QVariant toQVariant() const override { return QVariant::fromValue(*this); }
|
|
|
|
//! \copydoc CValueObject::fromQVariant
|
|
virtual void fromQVariant(const QVariant &variant) override { BlackMisc::setFromQVariant(this, variant); }
|
|
|
|
//! Is empty?
|
|
bool isEmpty() const { return this->m_icaoCode.isEmpty(); }
|
|
|
|
//! Get code.
|
|
const QString &asString() const { return this->m_icaoCode; }
|
|
|
|
//! Get ICAO code
|
|
QString getIcaoCode() const { return m_icaoCode; }
|
|
|
|
//! Equals callsign string?
|
|
bool equalsString(const QString &icaoCode) const;
|
|
|
|
//! Equal operator ==
|
|
bool operator ==(const CAirportIcao &other) const;
|
|
|
|
//! Unequal operator !=
|
|
bool operator !=(const CAirportIcao &other) const;
|
|
|
|
//! Less than operator < for sorting
|
|
bool operator <(const CAirportIcao &other) const;
|
|
|
|
//! \copydoc CValueObject::getValueHash()
|
|
virtual uint getValueHash() const override;
|
|
|
|
//! \copydoc CValueObject::toJson
|
|
virtual QJsonObject toJson() const override;
|
|
|
|
//! \copydoc CValueObject::fromJson
|
|
virtual void fromJson(const QJsonObject &json) override;
|
|
|
|
//! Register metadata
|
|
static void registerMetadata();
|
|
|
|
//! Members
|
|
static const QStringList &jsonMembers();
|
|
|
|
//! Unify code
|
|
static QString unifyAirportCode(const QString &icaoCode);
|
|
|
|
//! Valid ICAO designator
|
|
static bool isValidIcaoDesignator(const QString &icaoCode);
|
|
|
|
protected:
|
|
//! \copydoc CValueObject::convertToQString()
|
|
virtual QString convertToQString(bool i18n = false) const override;
|
|
|
|
//! \copydoc CValueObject::getMetaTypeId
|
|
virtual int getMetaTypeId() const override;
|
|
|
|
//! \copydoc CValueObject::isA
|
|
virtual bool isA(int metaTypeId) const override;
|
|
|
|
//! \copydoc CValueObject::compareImpl
|
|
virtual int compareImpl(const CValueObject &other) const override;
|
|
|
|
//! \copydoc CValueObject::marshallToDbus()
|
|
virtual void marshallToDbus(QDBusArgument &argument) const override;
|
|
|
|
//! \copydoc CValueObject::unmarshallFromDbus()
|
|
virtual void unmarshallFromDbus(const QDBusArgument &argument) override;
|
|
|
|
private:
|
|
BLACK_ENABLE_TUPLE_CONVERSION(CAirportIcao)
|
|
QString m_icaoCode;
|
|
};
|
|
} // namespace
|
|
} // namespace
|
|
|
|
BLACK_DECLARE_TUPLE_CONVERSION(BlackMisc::Aviation::CAirportIcao, (o.m_icaoCode))
|
|
Q_DECLARE_METATYPE(BlackMisc::Aviation::CAirportIcao)
|
|
|
|
#endif // guard
|