mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 18:25:37 +08:00
76 lines
2.5 KiB
C++
76 lines
2.5 KiB
C++
/* Copyright (C) 2015
|
|
* 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_AVIATION_LIVERYLIST_H
|
|
#define BLACKMISC_AVIATION_LIVERYLIST_H
|
|
|
|
#include "blackmisc/aviation/airlineicaocode.h"
|
|
#include "blackmisc/aviation/livery.h"
|
|
#include "blackmisc/blackmiscexport.h"
|
|
#include "blackmisc/collection.h"
|
|
#include "blackmisc/db/datastoreobjectlist.h"
|
|
#include "blackmisc/sequence.h"
|
|
#include "blackmisc/variant.h"
|
|
|
|
#include <QMetaType>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
namespace BlackMisc
|
|
{
|
|
namespace Aviation
|
|
{
|
|
//! Value object for a list of airports.
|
|
class BLACKMISC_EXPORT CLiveryList :
|
|
public CSequence<CLivery>,
|
|
public BlackMisc::Db::IDatastoreObjectList<CLivery, CLiveryList, int>,
|
|
public BlackMisc::Mixin::MetaType<CLiveryList>
|
|
{
|
|
public:
|
|
BLACKMISC_DECLARE_USING_MIXIN_METATYPE(CLiveryList)
|
|
|
|
//! Default constructor.
|
|
CLiveryList();
|
|
|
|
//! Construct from a base class object.
|
|
CLiveryList(const CSequence<CLivery> &other);
|
|
|
|
//! Find livery by airline
|
|
CLiveryList findByAirlineIcaoDesignator(const QString &icao) const;
|
|
|
|
//! Find livery by airline
|
|
CLivery findStdLiveryByAirlineIcaoDesignator(const QString &icao) const;
|
|
|
|
//! Find livery by airline
|
|
CLivery findStdLiveryByAirlineIcaoDesignator(const CAirlineIcaoCode &icao) const;
|
|
|
|
//! Find livery by combined code
|
|
CLivery findByCombinedCode(const QString &combinedCode) const;
|
|
|
|
//! All combined codes
|
|
QStringList getCombinedCodes(bool sort = false) const;
|
|
|
|
//! All combined codes plus more info
|
|
QStringList getCombinedCodesPlusInfo(bool sort = false) const;
|
|
|
|
//! Find
|
|
CLivery smartLiverySelector(const CLivery &liveryPattern) const;
|
|
|
|
};
|
|
} //namespace
|
|
} // namespace
|
|
|
|
Q_DECLARE_METATYPE(BlackMisc::Aviation::CLiveryList)
|
|
Q_DECLARE_METATYPE(BlackMisc::CCollection<BlackMisc::Aviation::CLivery>)
|
|
Q_DECLARE_METATYPE(BlackMisc::CSequence<BlackMisc::Aviation::CLivery>)
|
|
|
|
#endif //guard
|