Enroute Flight Navigation
A navigation app for VFR pilots
Traffic::TrafficFactor_WithPosition Class Reference

Traffic factor whose precise position is known. More...

#include <TrafficFactor_WithPosition.h>

Inheritance diagram for Traffic::TrafficFactor_WithPosition:
Traffic::TrafficFactor_Abstract

Signals

void iconChanged ()
 Notifier signal.
 
void positionInfoChanged ()
 Notifier signal.
 
- Signals inherited from Traffic::TrafficFactor_Abstract
void alarmLevelChanged ()
 Notifier signal.
 
void animateChanged ()
 Notifier signal.
 
void callSignChanged ()
 Notifier signal.
 
void colorChanged ()
 Notifier signal.
 
void descriptionChanged ()
 Notifier signal.
 
void hDistChanged ()
 Notifier signal.
 
void IDChanged ()
 Notifier signal.
 
void typeChanged ()
 Notifier signal.
 
void vDistChanged ()
 Notifier signal.
 
void validChanged ()
 Notifier signal.
 

Public Member Functions

 TrafficFactor_WithPosition (QObject *parent=nullptr)
 Default constructor.
 
void copyFrom (const TrafficFactor_WithPosition &other)
 Copy data from other object.
 
auto icon () const -> QString
 Getter method for property with the same name.
 
auto positionInfo () const -> Positioning::PositionInfo
 Getter method for property with the same name.
 
void setPositionInfo (const Positioning::PositionInfo &newPositionInfo)
 Setter function for property with the same name.
 
- Public Member Functions inherited from Traffic::TrafficFactor_Abstract
 TrafficFactor_Abstract (QObject *parent=nullptr)
 Default constructor.
 
void copyFrom (const TrafficFactor_Abstract &other)
 Copy data from other object.
 
auto hasHigherPriorityThan (const TrafficFactor_Abstract &rhs) const -> bool
 Estimates if this traffic object has higher priority than other traffic object.
 
void startLiveTime ()
 Starts or extends the lifetime of this object.
 
int alarmLevel () const
 Getter method for property with the same name.
 
QBindable< int > bindableAlarmLevel ()
 Getter method for property with the same name.
 
auto animate () const -> bool
 Getter method for property with the same name.
 
auto callSign () const -> QString
 Getter method for property with the same name.
 
auto color () const -> QString
 Getter method for property with the same name.
 
auto description () const -> QString
 Getter method for property with the same name.
 
Units::Distance hDist () const
 Getter method for property with the same name.
 
QBindable< Units::DistancebindableHDist ()
 Getter method for property with the same name.
 
auto ID () const -> QString
 Getter method for property with the same name.
 
bool relevant () const
 Getter method for property with the same name.
 
QBindable< bool > bindableRelevant ()
 Getter method for property with the same name.
 
QString relevantString () const
 Getter method for property with the same name.
 
QBindable< bool > bindableRelevantString ()
 Getter method for property with the same name.
 
Traffic::TrafficFactor_Abstract::AircraftType type () const
 Getter method for property with the same name.
 
QBindable< Traffic::TrafficFactor_Abstract::AircraftTypebindableType ()
 Getter method for property with the same name.
 
QString typeString () const
 Getter method for property with the same name.
 
QBindable< QString > bindableTypeString ()
 Getter method for property with the same name.
 
bool valid () const
 Getter method for property with the same name.
 
QBindable< bool > bindableValid ()
 Getter method for property with the same name.
 
Units::Distance vDist () const
 Getter method for property with the same name.
 
QBindable< Units::DistancebindableVDist ()
 Getter method for property with the same name.
 
void setAlarmLevel (int newAlarmLevel)
 Setter function for property with the same name.
 
void setAnimate (bool newAnimate)
 Setter function for property with the same name.
 
void setCallSign (const QString &newCallSign)
 Setter function for property with the same name.
 
void setHDist (Units::Distance newHDist)
 Setter function for property with the same name.
 
void setID (const QString &newID)
 Setter function for property with the same name.
 
void setType (Traffic::TrafficFactor_Abstract::AircraftType newType)
 Setter function for property with the same name.
 
void setVDist (Units::Distance newVDist)
 Setter function for property with the same name.
 

Properties

QString icon
 Suggested icon.
 
Positioning::PositionInfo positionInfo
 PositionInfo of the traffic.
 
- Properties inherited from Traffic::TrafficFactor_Abstract
int alarmLevel
 Alarm Level.
 
bool animate
 Indicates if changes in properties should be animated in the GUI.
 
QString callSign
 Call sign.
 
QString color
 Suggested color for GUI representation of the traffic.
 
QString description
 Description of the traffic, for use in GUI.
 
Units::Distance hDist
 Horizontal distance from own position to the traffic, at the time of report.
 
QString ID
 Identifier string of the traffic.
 
bool relevant
 Indicates relevant traffic.
 
QString relevantString
 Translated string containing the 'relevant' property.
 
AircraftType type
 Type of aircraft, as reported by the traffic receiver.
 
QString typeString
 Type of aircraft, as reported by the traffic receiver.
 
bool valid
 Validity.
 
Units::Distance vDist
 Vertical distance from own position to the traffic, at the time of report.
 

Additional Inherited Members

- Public Types inherited from Traffic::TrafficFactor_Abstract
enum  AircraftType : quint8 {
  unknown , Aircraft , Airship , Balloon ,
  Copter , Drone , Glider , HangGlider ,
  Jet , Paraglider , Skydiver , StaticObstacle ,
  TowPlane
}
 Aircraft type. More...
 
- Static Public Attributes inherited from Traffic::TrafficFactor_Abstract
static constexpr auto lifeTime = 10s
 Length of lifetime for objects of this class.
 
static constexpr Units::Distance maxVerticalDistance = Units::Distance::fromM(1500.0)
 Maximal vertical distance for relevant traffic.
 
static constexpr Units::Distance maxHorizontalDistance = Units::Distance::fromNM(20.0)
 Maximal horizontal distance for relevant traffic.
 

Detailed Description

Traffic factor whose precise position is known.

Objects of this class represent traffic factors whose precise position is known. Other properties of the traffic, such as heading and ground speed, mifght also be known. Compared to TrafficFactor_Abstract, instances of this class hold important additional property, namely the positionInfo for the traffic.

Definition at line 38 of file TrafficFactor_WithPosition.h.

Constructor & Destructor Documentation

◆ TrafficFactor_WithPosition()

Traffic::TrafficFactor_WithPosition::TrafficFactor_WithPosition ( QObject * parent = nullptr)
explicit

Default constructor.

Parameters
parentThe standard QObject parent pointer

Member Function Documentation

◆ copyFrom()

void Traffic::TrafficFactor_WithPosition::copyFrom ( const TrafficFactor_WithPosition & other)
inline

Copy data from other object.

This method copies all properties from the other object, with two notable exceptions.

  • The property "animate" is not copied, the property "animate" of this class is not touched.
  • The lifeTime of this object is not changed.
Parameters
otherInstance whose properties are copied

Definition at line 65 of file TrafficFactor_WithPosition.h.

◆ icon()

auto Traffic::TrafficFactor_WithPosition::icon ( ) const -> QString
inlinenodiscard

Getter method for property with the same name.

Returns
Property icon

Definition at line 87 of file TrafficFactor_WithPosition.h.

◆ positionInfo()

auto Traffic::TrafficFactor_WithPosition::positionInfo ( ) const -> Positioning::PositionInfo
inlinenodiscard

Getter method for property with the same name.

Returns
Property positionInfo

Definition at line 99 of file TrafficFactor_WithPosition.h.

◆ setPositionInfo()

void Traffic::TrafficFactor_WithPosition::setPositionInfo ( const Positioning::PositionInfo & newPositionInfo)

Setter function for property with the same name.

Note
Setting a new position info does not update the hDist or vDist properties.
Parameters
newPositionInfoProperty positionInfo

Property Documentation

◆ icon

QString Traffic::TrafficFactor_WithPosition::icon
read

Suggested icon.

Depending on alarm level and movement of the traffic opponent, this property suggests an icon for GUI representation of the traffic.

Definition at line 81 of file TrafficFactor_WithPosition.h.


The documentation for this class was generated from the following file: