Enroute Flight Navigation
A navigation app for VFR pilots
|
Abstract base class for all classes that provide geographic position information. More...
#include <PositionInfoSource_Abstract.h>
Public Member Functions | |
PositionInfoSource_Abstract (QObject *parent=nullptr) | |
Default constructor. | |
Positioning::PositionInfo | positionInfo () const |
Getter method for property with the same name. | |
QBindable< Positioning::PositionInfo > | bindablePositionInfo () const |
Getter method for property with the same name. | |
bool | receivingPositionInfo () const |
Getter method for property with the same name. | |
QBindable< bool > | bindableReceivingPositionInfo () |
Getter method for property with the same name. | |
QString | sourceName () const |
Getter method for property with the same name. | |
QBindable< QString > | bindableSourceName () const |
Getter method for property with the same name. | |
QString | statusString () const |
Getter method for property with the same name. | |
QBindable< QString > | bindableStatusString () const |
Getter method for property with the same name. | |
Properties | |
Positioning::PositionInfo | positionInfo |
Position information. | |
bool | receivingPositionInfo |
Indicator that position information is being received. | |
QString | sourceName |
Source name. | |
QString | statusString |
Source status. | |
Abstract base class for all classes that provide geographic position information.
This is the base class for all classes that provide geographic position information.
Definition at line 40 of file PositionInfoSource_Abstract.h.
|
explicit |
Default constructor.
parent | The standard QObject parent pointer |
|
inlinenodiscard |
Getter method for property with the same name.
Definition at line 106 of file PositionInfoSource_Abstract.h.
|
inlinenodiscard |
Getter method for property with the same name.
Definition at line 121 of file PositionInfoSource_Abstract.h.
|
inlinenodiscard |
Getter method for property with the same name.
Definition at line 136 of file PositionInfoSource_Abstract.h.
|
inlinenodiscard |
Getter method for property with the same name.
Definition at line 154 of file PositionInfoSource_Abstract.h.
|
inlinenodiscard |
Getter method for property with the same name.
Definition at line 97 of file PositionInfoSource_Abstract.h.
|
inlinenodiscard |
Getter method for property with the same name.
Definition at line 115 of file PositionInfoSource_Abstract.h.
|
inlinenodiscard |
Getter method for property with the same name.
Definition at line 127 of file PositionInfoSource_Abstract.h.
|
inlinenodiscard |
Getter method for property with the same name.
Definition at line 145 of file PositionInfoSource_Abstract.h.
|
read |
Position information.
This property holds information about the device position. To ensure that the data is up-to-date, the position information will be set to an invalid positionInfo when no data has arrived for more than the time specified in PositionInfo::lifetime.
Definition at line 62 of file PositionInfoSource_Abstract.h.
|
read |
Indicator that position information is being received.
This is a shortcut for positionInfo().isValid. This property exists because it does not change so often, and can thus be more efficient to use.
Definition at line 70 of file PositionInfoSource_Abstract.h.
|
read |
Source name.
This property holds a translated, human-readable string that describes the source. This could typically be a string of the form "Traffic Receiver" or "Built-in satellite receiver".
Definition at line 78 of file PositionInfoSource_Abstract.h.
|
read |
Source status.
This property holds a translated, human-readable string that describes the status of the positionInfo source. This could typically be a string of the form "OK" or "Insufficient permission to access position info"
Definition at line 86 of file PositionInfoSource_Abstract.h.