mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 09:15:34 +08:00
toCVariant() and convertFromCVariant() are now deprecated, use CVariant::from() and CVariant::to() instead.
126 lines
4.1 KiB
C++
126 lines
4.1 KiB
C++
/* Copyright (C) 2014
|
|
* 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_AIRCRAFTLIGHTS_H
|
|
#define BLACKMISC_AVIATION_AIRCRAFTLIGHTS_H
|
|
|
|
#include "blackmisc/blackmiscexport.h"
|
|
#include "blackmisc/valueobject.h"
|
|
#include "blackmisc/propertyindex.h"
|
|
|
|
namespace BlackMisc
|
|
{
|
|
namespace Aviation
|
|
{
|
|
//! Value object encapsulating information about aircraft's lights
|
|
class BLACKMISC_EXPORT CAircraftLights : public CValueObject<CAircraftLights>
|
|
{
|
|
public:
|
|
//! Properties by index
|
|
enum ColumnIndex
|
|
{
|
|
IndexStrobe = BlackMisc::CPropertyIndex::GlobalIndexCAircraftLights,
|
|
IndexLanding,
|
|
IndexTaxi,
|
|
IndexBeacon,
|
|
IndexNav,
|
|
IndexLogo
|
|
};
|
|
|
|
|
|
//! Default constructor
|
|
CAircraftLights() = default;
|
|
|
|
//! Constructor
|
|
CAircraftLights(bool strobeOn, bool landingOn, bool taxiOn, bool beaconOn, bool navOn, bool logoOn);
|
|
|
|
//! \copydoc CValueObject::propertyByIndex
|
|
CVariant propertyByIndex(const BlackMisc::CPropertyIndex &index) const;
|
|
|
|
//! \copydoc CValueObject::setPropertyByIndex
|
|
void setPropertyByIndex(const CVariant &variant, const BlackMisc::CPropertyIndex &index);
|
|
|
|
//! Strobes lights on?
|
|
bool isStrobeOn() const { return m_strobeOn; }
|
|
|
|
//! Set strobe lights
|
|
void setStrobeOn(bool on) { m_strobeOn = on; }
|
|
|
|
//! Landing lights on?
|
|
bool isLandingOn() const { return m_landingOn; }
|
|
|
|
//! Set landing lights
|
|
void setLandingOn(bool on) { m_landingOn = on; }
|
|
|
|
//! Taxi lights on?
|
|
bool isTaxiOn() const { return m_taxiOn; }
|
|
|
|
//! Set taxi lights
|
|
void setTaxiOn(bool on) { m_taxiOn = on; }
|
|
|
|
//! Beacon lights on?
|
|
bool isBeaconOn() const { return m_beaconOn; }
|
|
|
|
//! Set beacon lights
|
|
void setBeaconOn(bool on) { m_beaconOn = on; }
|
|
|
|
//! Nac lights on?
|
|
bool isNavOn() const { return m_navOn; }
|
|
|
|
//! Set nav lights
|
|
void setNavOn(bool on) { m_navOn = on; }
|
|
|
|
//! Logo lights on?
|
|
bool isLogoOn() const { return m_logoOn; }
|
|
|
|
//! Set logo lights
|
|
void setLogoOn(bool on) { m_logoOn = on; }
|
|
|
|
//! All on
|
|
void setAllOn();
|
|
|
|
//! All off
|
|
void setAllOff();
|
|
|
|
//! Returns object with all lights switched on
|
|
static CAircraftLights allLightsOn();
|
|
|
|
//! Returns object with all lights switched off
|
|
static CAircraftLights allLightsOff();
|
|
|
|
//! \copydoc CValueObject::convertToQString
|
|
QString convertToQString(bool i18n = false) const;
|
|
|
|
private:
|
|
BLACK_ENABLE_TUPLE_CONVERSION(CAircraftLights)
|
|
bool m_strobeOn = false;
|
|
bool m_landingOn = false;
|
|
bool m_taxiOn = false;
|
|
bool m_beaconOn = false;
|
|
bool m_navOn = false;
|
|
bool m_logoOn = false;
|
|
|
|
};
|
|
} // namespace
|
|
} // namespace
|
|
|
|
Q_DECLARE_METATYPE(BlackMisc::Aviation::CAircraftLights)
|
|
BLACK_DECLARE_TUPLE_CONVERSION(BlackMisc::Aviation::CAircraftLights, (
|
|
attr(o.m_strobeOn, "strobe_on"),
|
|
attr(o.m_landingOn, "landing_on"),
|
|
attr(o.m_taxiOn, "taxi_on"),
|
|
attr(o.m_beaconOn, "beacon_on"),
|
|
attr(o.m_navOn, "nav_on"),
|
|
attr(o.m_logoOn, "logo_on")
|
|
))
|
|
|
|
#endif // guard
|