refs #614, formatting and new functions for list/value objects

* find by aircraft family
* name completer sorting
This commit is contained in:
Klaus Basan
2016-04-04 12:45:05 +02:00
parent 4b621bcb1a
commit a07af2b781
11 changed files with 186 additions and 24 deletions

View File

@@ -151,19 +151,19 @@ namespace BlackMisc
//! Valid combined code string?
static bool isValidCombinedCode(const QString &candidate);
//! Standard livery marker
//! Standard livery marker string
static const QString &standardLiveryMarker();
//! Color livery marker
static const QString &colorLiveryMarker();
private:
CAirlineIcaoCode m_airline; //!< corresponding airline, if any
QString m_combinedCode; //!< livery code and pseudo airline ICAO code
QString m_description; //!< describes the livery
CAirlineIcaoCode m_airline; //!< corresponding airline, if any
QString m_combinedCode; //!< livery code and pseudo airline ICAO code
QString m_description; //!< describes the livery
BlackMisc::CRgbColor m_colorFuselage; //! color of fuselage
BlackMisc::CRgbColor m_colorTail; //! color of tail
bool m_military = false; //! Military livery?
bool m_military = false; //! Military livery?
BLACK_METACLASS(
CLivery,