24#include <QStandardPaths>
26#include "FlightRoute.h"
27#include "GlobalObject.h"
28#include "navigation/FlightRoute.h"
29#include "navigation/RemainingRouteInfo.h"
79 static Navigation::
Navigator* create(QQmlEngine* , QJSEngine* )
149 [[nodiscard]]
auto wind() const -> Weather::Wind {
return m_wind; }
194 void updateAltitudeLimit();
197 void updateFlightStatus();
203 void updateRemainingRouteInfo();
218 QPointer<FlightRoute> m_flightRoute {
nullptr};
219 const QString m_flightRouteFileName {QStandardPaths::writableLocation(QStandardPaths::AppDataLocation)+
"/flight route.geojson"};
221 Weather::Wind m_wind {};
223 QString m_aircraftFileName;
226 RemainingRouteInfo m_remainingRouteInfo;
static Q_INVOKABLE Navigation::Navigator * navigator()
Pointer to appplication-wide static Navigation::Navigator instance.
GlobalObject(QObject *parent=nullptr)
Standard constructor.
This extremely simple class holds a few numbers that describe an aircraft.
auto flightStatus() const -> FlightStatus
Getter function for the property with the same name.
void remainingRouteInfoChanged()
Notifier signal.
FlightStatus flightStatus
Estimate whether the device is flying or on the ground.
void setWind(Weather::Wind newWind)
Setter function for property of the same name.
Navigator(QObject *parent=nullptr)
Standard constructor.
void flightStatusChanged()
Notifier signal.
void setAircraft(const Navigation::Aircraft &newAircraft)
Setter function for property of the same name.
FlightStatus
FlightStatus.
auto wind() const -> Weather::Wind
Getter function for the property with the same name.
void aircraftChanged()
Notifier signal.
void deferredInitialization() override
Non-constructor initialization.
Weather::Wind wind
Current wind.
auto flightRoute() -> Navigation::FlightRoute *
Getter function for the property with the same name.
auto remainingRouteInfo() const -> Navigation::RemainingRouteInfo
Getter function for the property with the same name.
Navigation::RemainingRouteInfo remainingRouteInfo
Up-to-date information about the remaining route.
Navigation::FlightRoute * flightRoute
Current flight route.
Navigation::Aircraft aircraft
Current aircraft.
void airspaceAltitudeLimitAdjusted()
Emitted when the airspaceAltitudeLimit is adjusted.
void windChanged()
Notifier signal.
Info about remaining route.
static Q_INVOKABLE constexpr Units::Speed fromKN(double speedInKT)
Constructs a speed.
This extremely simple class holds the wind speed and direction.